/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:        #F1E9DC;
  --cream-dark:   #E9E0CF;
  --cream-mid:    #F6F1E5;
  --ink:          #35332F;
  --ink-mid:      #9C7B45;
  --ink-light:    #726E67;
  --gold:         #BFA05C;
  --gold-light:   #DCC38F;
  --white:        #FBF8F2;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --max-w:        1280px;
  --gap:          clamp(1.5rem, 4vw, 3rem);
  --section-py:   clamp(5rem, 10vw, 9rem);

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY UTILITIES
───────────────────────────────────────────── */
.label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--ink-mid);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal, .reveal-right {
    transition: opacity 0.3s linear !important;
    transform: none !important;
  }

  .hero-img-frame img,
  .artwork-img,
  .gallery-img {
    transition: none !important;
  }
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  transition: background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out),
              padding 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26, 22, 18, 0.07);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: color 0.3s;
}

.nav-logo:hover { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}

.nav-link:hover,
.nav-link.active { color: var(--ink); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem clamp(1.5rem, 6vw, 5rem) 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.hero-text {
  max-width: 540px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: italic;
  color: var(--ink-mid);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 380px;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 1rem 2.5rem;
  transition: background 0.35s, letter-spacing 0.35s var(--ease-out),
              box-shadow 0.35s;
}

.btn-primary:hover {
  background: var(--ink-mid);
  letter-spacing: 0.26em;
  box-shadow: 0 8px 32px rgba(26, 22, 18, 0.16);
}

.hero-image {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: 12px 20px 60px rgba(26, 22, 18, 0.12);
}

.hero-img-frame img {
  height: 100%;
  transition: transform 8s var(--ease-out);
}

.hero-img-frame:hover img {
  transform: scale(1.04);
}

.hero-img-caption {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-light);
  align-self: flex-end;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: clamp(1.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.hero-scroll-indicator span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ─────────────────────────────────────────────
   FEATURED WORKS
───────────────────────────────────────────── */
.featured {
  padding: var(--section-py) clamp(1.5rem, 6vw, 5rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--gap);
  margin-bottom: 5rem;
}

.featured-side {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

/* Artwork card shared styles */
.artwork-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  cursor: pointer;
}

.artwork-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.artwork-wrap:hover .artwork-img {
  transform: scale(1.05);
}

.artwork-hover {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.artwork-wrap:hover .artwork-hover {
  opacity: 1;
}

.artwork-hover-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(253, 250, 245, 0.6);
  padding: 0.6rem 1.6rem;
  transition: border-color 0.3s, letter-spacing 0.3s var(--ease-out);
}

.artwork-wrap:hover .artwork-hover-label {
  border-color: var(--white);
  letter-spacing: 0.4em;
}

.featured-main .artwork-wrap {
  aspect-ratio: 3/4;
}

.featured-item .artwork-wrap {
  aspect-ratio: 4/3;
}

.artwork-meta {
  padding: 1rem 0 0;
}

.artwork-meta h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.artwork-meta p {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--ink-light);
}

.featured-quote {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(26, 22, 18, 0.09);
}

.featured-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mid);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ─────────────────────────────────────────────
   GALLERY — CSS MASONRY (columns)
───────────────────────────────────────────── */
.gallery {
  padding: var(--section-py) clamp(1.5rem, 6vw, 5rem);
  background: var(--cream-mid);
}

.gallery .section-header {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.gallery-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-light);
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
}

.gallery-masonry {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 8px;
  grid-auto-flow: row dense;
  gap: 1rem;
}

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  cursor: pointer;
}

.gallery-img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.75s var(--ease-out);
}

.gallery-img-wrap:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 18, 0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.gallery-img-wrap:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.gallery-year {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(253, 250, 245, 0.7);
}

.gallery-cta {
  text-align: center;
  margin-top: 4rem;
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink-mid);
  padding: 1rem 2.5rem;
  transition: background 0.35s, color 0.35s, letter-spacing 0.35s var(--ease-out),
              border-color 0.35s;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
  letter-spacing: 0.26em;
  border-color: var(--ink);
}

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.about {
  padding: var(--section-py) clamp(1.5rem, 6vw, 5rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-inner {
  display: flex;
  justify-content: center;
}

.about-text {
  max-width: 680px;
  text-align: center;
}

.about-text .label,
.about-text .section-title {
  text-align: center;
}

.about-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--ink);
  margin: 0 auto 1.6rem;
  max-width: 560px;
}

.about-divider {
  width: 60px;
  height: 1px;
  margin: 2.2rem auto;
  background: var(--gold);
}

.about-signature {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  margin-top: 0.5rem;
}

/* ─────────────────────────────────────────────
   BIBLE VERSE CAROUSEL
───────────────────────────────────────────── */
.vision {
  padding: var(--section-py) 0 0;
  background: var(--cream);
}

.vision .section-header {
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.vision-intro {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

.tc-stage {
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 2px solid rgba(26, 22, 18, 0.12);
  padding: 2rem;
  background: var(--white);
  transition: transform 0.5s var(--ease-out),
              opacity 0.5s var(--ease-out),
              background 0.4s,
              border-color 0.4s,
              box-shadow 0.4s;
  clip-path: polygon(50px 0%, calc(100% - 50px) 0%, 100% 50px, 100% 100%, calc(100% - 50px) 100%, 50px 100%, 0 100%, 0 0);
}

.testimonial-card.tc-center {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0px 8px 0px 4px rgba(26, 22, 18, 0.15);
}

.testimonial-card:not(.tc-center):hover {
  border-color: var(--gold);
}

.tc-cut-line {
  position: absolute;
  right: -2px;
  top: 48px;
  width: 70.71px;
  height: 2px;
  background: rgba(26, 22, 18, 0.12);
  transform-origin: top right;
  transform: rotate(45deg);
  display: block;
}

.tc-center .tc-cut-line {
  background: rgba(253, 250, 245, 0.18);
}

.tc-deco-quote {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tc-quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
}

.tc-center .tc-quote {
  color: var(--white);
}

.tc-author {
  margin-top: 1.5rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(26, 22, 18, 0.1);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-light);
}

.tc-center .tc-author {
  border-top-color: rgba(253, 250, 245, 0.15);
  color: rgba(253, 250, 245, 0.6);
}

.tc-nav {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

.tc-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid rgba(26, 22, 18, 0.15);
  cursor: pointer;
  color: var(--ink);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.tc-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.tc-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact {
  padding: var(--section-py) clamp(1.5rem, 6vw, 5rem);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 70vw;
  max-width: 700px;
  background: radial-gradient(circle, rgba(184, 154, 106, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact .label { color: var(--gold-light); }

.contact .section-title { color: var(--white); }
.contact .section-title em { color: var(--gold-light); }

.contact-sub {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(253, 250, 245, 0.55);
  margin: 1.5rem 0 2.5rem;
}

.contact-divider {
  width: 40px;
  height: 1px;
  background: rgba(253, 250, 245, 0.18);
  margin: 3rem auto;
}

/* ─── Contact form ─── */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}

.form-field {
  margin-bottom: 1.6rem;
}

.form-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.4);
  margin-bottom: 0.7rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(253, 250, 245, 0.22);
  padding: 0.55rem 0.05rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--white);
  transition: border-color 0.3s var(--ease-out);
}

.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4B88A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  background-size: 16px;
  padding-right: 1.5rem;
}

.form-field select option {
  background: var(--ink);
  color: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(253, 250, 245, 0.28);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-light);
}

.form-error {
  display: block;
  min-height: 1.1em;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: #e0a596;
  margin-top: 0.45rem;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-submit {
  margin-top: 0.25rem;
}

.form-status {
  min-height: 1.3em;
  margin-top: 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(253, 250, 245, 0.55);
}

.form-status[data-state="success"] { color: var(--gold-light); }
.form-status[data-state="error"] { color: #e0a596; }

/* ─── Direct contact methods ─── */
.contact-alt-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.35);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 2.75rem;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.contact-method-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(253, 250, 245, 0.22);
  color: var(--gold-light);
  transition: background 0.35s var(--ease-out), border-color 0.35s,
              color 0.35s, transform 0.35s var(--ease-out);
}

.contact-method-icon svg {
  width: 22px;
  height: 22px;
}

.contact-method-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.5);
  transition: color 0.3s;
}

.contact-method:hover .contact-method-icon {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--ink);
  transform: translateY(-4px);
}

.contact-method:hover .contact-method-label {
  color: var(--white);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(253, 250, 245, 0.08);
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(253, 250, 245, 0.7);
  letter-spacing: 0.08em;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(253, 250, 245, 0.28);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.35);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

/* ─────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  max-height: 90svh;
  transform: scale(0.94);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-height: 90svh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: rgba(253, 250, 245, 0.6);
  font-size: 1.8rem;
  font-weight: 200;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s, transform 0.3s var(--ease-out);
  padding: 0.2rem;
}

.lightbox-close:hover {
  color: var(--white);
  transform: rotate(90deg);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 5rem;
    gap: 3rem;
  }

  .hero-text { max-width: 100%; }
  .hero-sub  { max-width: 100%; }

  .hero-image {
    align-items: center;
  }

  .hero-img-frame {
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-scroll-indicator { display: none; }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-main .artwork-wrap {
    aspect-ratio: 4/3;
  }

}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100svh;
    width: min(280px, 80vw);
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2.5rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    box-shadow: -10px 0 40px rgba(26, 22, 18, 0.1);
    z-index: 99;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .nav-toggle { display: flex; z-index: 101; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* ─────────────────────────────────────────────
   FINE DETAILS & SELECTION
───────────────────────────────────────────── */
::selection {
  background: var(--gold-light);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Thin horizontal rule decorators */
.section-header .label::before,
.section-header .label::after {
  content: '—';
  margin: 0 0.6em;
  color: var(--gold-light);
  opacity: 0.6;
}
