/*
Theme Name: Germandic Art
Theme URI: https://germandicart.com
Author: Germandic Art
Author URI: https://germandicart.com
Description: Custom theme for Germandic Art — a digital art portfolio with emotional gallery filtering, blog, and print request system.
Version: 1.0
License: Private
Text Domain: germandicart
*/

/* ─── CSS Variables ─── */
:root {
  --bg:          #071820;
  --deep-teal:   #0a3040;
  --teal:        #0d4a42;
  --emerald:     #0d5c3a;
  --peacock:     #083548;
  --deep-blue:   #062030;
  --copper:      #c07020;
  --gold:        #d4a040;
  --gold-light:  #ecc870;
  --cream:       #f0e8d8;
  --text:        #d4c9b8;
  --muted:       #7a7060;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: linear-gradient(160deg, #062030 0%, #0a3040 35%, #0c4535 65%, #0d5c3a 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* WordPress forces */
body.custom-background { background: linear-gradient(160deg, #062030 0%, #0a3040 35%, #0c4535 65%, #0d5c3a 100%) !important; background-attachment: fixed !important; }
#page, #content, .site, .site-content { background: transparent !important; max-width: 100% !important; width: 100% !important; margin: 0 !important; padding: 0 !important; }
.entry-content, .post-content { max-width: 100% !important; }

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

/* ─── Custom Cursor ─── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(201,150,58,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

/* ─── Navigation ─── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(10,14,13,0.97), transparent);
  transition: background 0.3s ease;
}
#site-nav.scrolled {
  background: rgba(10,14,13,0.97);
  border-bottom: 1px solid rgba(201,150,58,0.08);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-menu a {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-menu a:hover,
.nav-menu .current-menu-item a { color: var(--gold-light); }
.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after { width: 100%; }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 85% 35%, rgba(13,92,58,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 15% 65%, rgba(8,53,72,0.65) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 55% 15%, rgba(10,48,64,0.5) 0%, transparent 50%),
    linear-gradient(160deg, #062030 0%, #0a3040 35%, #0c4535 65%, #0d5c3a 100%);
}
.fireflies { position: absolute; inset: 0; pointer-events: none; }
.firefly {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(232,192,106,0.6), 0 0 12px 4px rgba(201,150,58,0.3);
  animation: fireflyFloat var(--dur, 8s) ease-in-out infinite var(--delay, 0s);
  opacity: 0;
  background: var(--gold-light);
}
@keyframes fireflyFloat {
  0%   { opacity: 0; transform: translate(0,0) scale(0.5); }
  20%  { opacity: 0.9; }
  50%  { opacity: 0.6; transform: translate(var(--tx,20px), var(--ty,-30px)) scale(1); }
  80%  { opacity: 0.8; }
  100% { opacity: 0; transform: translate(var(--tx2,-10px), var(--ty2,-60px)) scale(0.5); }
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.3s;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 0.6s;
}
.hero-title span {
  display: block;
  color: var(--gold);
  font-size: 0.55em;
  letter-spacing: 0.15em;
}
.hero-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 480px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1s;
}
.hero-cta {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(201,150,58,0.4);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.3s;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.hero-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(181,101,29,0.15), rgba(201,150,58,0.1));
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta:hover { color: var(--cream); border-color: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2s;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── Section Shared ─── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}
.section-divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.5rem auto 0;
}

/* ─── Gallery Page ─── */
.gallery-page {
  padding: 8rem 3rem;
  background: transparent;
  min-height: 100vh;
}
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 4rem;
}
.filter-btn {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(122,112,96,0.2);
  padding: 0.6rem 1.5rem;
  cursor: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.filter-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,74,66,0.3), rgba(45,31,78,0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--gold-light);
  border-color: rgba(201,150,58,0.4);
}
.filter-btn:hover::before, .filter-btn.active::before { opacity: 1; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--deep-teal);
}
.gallery-item a { display: block; width: 100%; height: 100%; cursor: none; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
  filter: saturate(0.85) brightness(0.9);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(1.0);
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,13,0.92) 0%, rgba(10,14,13,0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.25rem;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.05s;
}
.gallery-item:hover .gallery-item-title { transform: translateY(0); }
.gallery-item-feeling {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateY(10px);
  transition: transform 0.4s ease 0.1s;
}
.gallery-item:hover .gallery-item-feeling { transform: translateY(0); }
.gallery-item-view {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,150,58,0.5);
  padding: 0.4rem 0.8rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-item-view { opacity: 1; transform: translateY(0); }

/* ─── Single Piece Page ─── */
.piece-single {
  min-height: 100vh;
  padding: 8rem 3rem 5rem;
  background: linear-gradient(135deg, #0a0e0d 0%, #0d1520 50%, #0a0e0d 100%);
}
.piece-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.piece-image-wrap {
  position: sticky;
  top: 7rem;
}
.piece-image-wrap img {
  width: 100%;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.piece-content { display: flex; flex-direction: column; gap: 1.5rem; }
.piece-feeling {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper);
}
.piece-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  line-height: 1.1;
}
.piece-year {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.piece-divider {
  width: 40px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.piece-journal {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text);
  font-style: italic;
}
.piece-journal p { margin-bottom: 1.2rem; }
.piece-journal p:last-child { margin-bottom: 0; }

/* Request to Purchase */
.purchase-block {
  margin-top: 1rem;
  padding: 2rem;
  border: 1px solid rgba(201,150,58,0.15);
  background: rgba(26,74,66,0.05);
}
.purchase-block h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.purchase-block p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.purchase-form input,
.purchase-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,150,58,0.15);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  padding: 0.8rem 1rem;
  margin-bottom: 0.75rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.purchase-form input:focus,
.purchase-form textarea:focus { border-color: rgba(201,150,58,0.4); }
.purchase-form input::placeholder,
.purchase-form textarea::placeholder { color: var(--muted); }
.purchase-form textarea { height: 100px; resize: vertical; }
.purchase-form .hidden-field { display: none; }
.purchase-submit {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: transparent;
  border: 1px solid rgba(201,150,58,0.4);
  padding: 0.9rem 2.5rem;
  cursor: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.purchase-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(201,150,58,0.08);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.purchase-submit:hover::before { transform: scaleX(1); }
.purchase-submit:hover { border-color: var(--gold); }
.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.3s ease;
}
.back-link:hover { color: var(--gold-light); }
.back-link::before { content: '←'; font-size: 1rem; }

/* ─── Blog ─── */
.blog-page {
  padding: 8rem 3rem;
  min-height: 100vh;
  background: transparent;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  border: 1px solid rgba(201,150,58,0.1);
  background: rgba(13,43,38,0.2);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.blog-card:hover {
  border-color: rgba(201,150,58,0.3);
  transform: translateY(-4px);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: saturate(0.7) brightness(0.8);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.9);
}
.blog-card-body { padding: 1.5rem; }
.blog-card-date {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
  display: block;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}
.blog-card-title:hover { color: var(--gold-light); }
.blog-card-excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.blog-card-read {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card-read:hover { color: var(--gold-light); }

/* Single blog post */
.blog-single {
  padding: 8rem 3rem;
  background: transparent;
}
.blog-single-inner {
  max-width: 780px;
  margin: 0 auto;
}
.blog-single-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.blog-single-date {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
}
.blog-single-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.blog-single-featured {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 3rem;
  display: block;
}
.blog-single-content {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text);
}
.blog-single-content p { margin-bottom: 1.5rem; }
.blog-single-content h2, .blog-single-content h3 {
  font-family: 'Cinzel', serif;
  color: var(--cream);
  margin: 2rem 0 1rem;
}
.blog-single-content a { color: var(--gold); text-decoration: none; }
.blog-single-content a:hover { color: var(--gold-light); }
.blog-single-content blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text);
}

/* ─── About Page ─── */
.about-page {
  padding: 8rem 3rem;
  background: transparent;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.about-page::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(26,74,66,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.about-sidebar { position: sticky; top: 6rem; }
.about-sidebar-title {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-sidebar-title em {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1em;
}
.about-gold-line {
  width: 40px; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--copper));
  margin-bottom: 1.5rem;
}
.about-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.about-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.8rem;
}
.about-body p:last-child {
  font-size: 1.3rem;
  color: var(--cream);
  font-style: italic;
}
.about-process {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid rgba(201,150,58,0.15);
  background: rgba(26,74,66,0.05);
  position: relative;
}
.about-process::before {
  content: '"';
  position: absolute;
  top: -0.8rem; left: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  background: #0d1520;
  padding: 0 0.5rem;
}
.about-process p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0 !important;
}

/* ─── Contact Page ─── */
.contact-page {
  padding: 8rem 3rem;
  background: transparent;
  min-height: 100vh;
  position: relative;
}
.contact-page::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(13,92,58,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.contact-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 3rem;
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-link {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid rgba(201,150,58,0.3);
  padding: 0.9rem 2rem;
  transition: all 0.3s ease;
}
.contact-link:hover {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(201,150,58,0.08);
}

/* ─── Footer ─── */
.site-footer {
  padding: 2rem 3rem;
  border-top: 1px solid rgba(201,150,58,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(6,18,24,0.85);
  backdrop-filter: blur(8px);
}
.site-footer p, .site-footer span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  #site-nav { padding: 1.2rem 1.5rem; }
  .nav-menu { gap: 1.5rem; }
  .hero, .gallery-page, .about-page, .contact-page, .blog-page, .piece-single, .blog-single { padding-left: 1.5rem; padding-right: 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-sidebar { position: static; }
  .piece-inner { grid-template-columns: 1fr; }
  .piece-image-wrap { position: static; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; }
  .blog-grid { grid-template-columns: 1fr; }
}
