/* ============================================================
   VI WOODCRAFT — shared styles
   Warm artisan woodcraft palette · mobile-first · scrollytelling
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* wood + craft palette */
  --bg:        #19120c;   /* deep espresso */
  --bg-2:      #211711;   /* warm walnut */
  --bg-3:      #2b1f15;
  --paper:     #f4ecdd;   /* birch / paper */
  --birch:     #e8d9be;
  --cream:     #fbf7ef;
  --walnut:    #6b4a2e;
  --brass:     #d6a24a;   /* warm gold accent */
  --brass-lt:  #ecc479;
  --ember:     #e07a3c;   /* laser glow */
  --forest:    #3a5a44;   /* Vancouver Island green */
  --ink:       #241a12;
  --muted:     rgba(244,236,221,0.55);
  --muted-d:   rgba(36,26,18,0.6);
  --line:      rgba(214,162,74,0.18);

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { display: block; max-width: 100%; }
a { color: inherit; }

/* subtle wood-grain noise overlay on dark sections */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; padding: 0 24px; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.section-title em, h1 em, h2 em { font-style: italic; color: var(--brass-lt); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, box-shadow 0.35s;
  cursor: pointer;
}
.btn-primary {
  background: var(--brass);
  color: var(--ink);
  box-shadow: 0 10px 30px -12px rgba(214,162,74,0.6);
}
.btn-primary:hover { background: var(--brass-lt); transform: translateY(-3px); box-shadow: 0 18px 40px -14px rgba(214,162,74,0.7); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--paper);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-lt); transform: translateY(-3px); }

/* ============================================================
   NAV
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 48px);
  background: linear-gradient(to bottom, rgba(25,18,12,0.9), transparent);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, box-shadow 0.4s;
}
#main-nav.scrolled {
  background: rgba(25,18,12,0.88);
  backdrop-filter: blur(14px);
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--paper);
  white-space: nowrap;
}
.nav-logo span { color: var(--brass); font-style: italic; font-weight: 400; }
.nav-links {
  display: flex;
  gap: clamp(18px, 2.4vw, 40px);
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--brass);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--brass);
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--brass-lt); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  z-index: 120;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--paper); transition: transform 0.3s, opacity 0.3s; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(20,14,9,0.98);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-links { list-style: none; text-align: center; }
.mobile-links li { margin: 22px 0; }
.mobile-links a {
  font-family: var(--serif);
  font-size: 1.9rem; font-weight: 300; letter-spacing: 0.02em;
  color: var(--paper); text-decoration: none; transition: color 0.3s;
}
.mobile-links a:hover { color: var(--brass-lt); }
.mobile-cta {
  display: inline-block; margin-top: 14px;
  font-family: var(--sans) !important;
  font-size: 0.85rem !important; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink) !important; background: var(--brass);
  padding: 14px 32px; border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px 600px at 75% 10%, rgba(224,122,60,0.10), transparent 60%),
    linear-gradient(160deg, #241910 0%, #19120c 55%, #140d08 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -10%; right: -5%;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(214,162,74,0.16), transparent 60%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px clamp(24px, 5vw, 56px) 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.hero-copy { max-width: 600px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 18px 0 24px;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 38px;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-art { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.hero-art-glow {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,162,74,0.22), transparent 65%);
  filter: blur(10px);
}
.hero-art-img {
  position: relative; z-index: 2;
  width: min(82%, 460px);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.55));
}
.hero-art-chip {
  position: absolute; z-index: 3;
  width: 38%;
  right: 2%; bottom: 4%;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,0.5));
}
.float-a { animation: floatA 7s ease-in-out infinite; }
.float-b { animation: floatB 6s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(3deg); } 50% { transform: translateY(14px) rotate(-2deg); } }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3; transition: opacity 0.5s;
}
.scroll-cue span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--brass), transparent); animation: cue 2s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ── photographic hero (full-bleed) ── */
.hero-photo { align-items: center; }
.hero-photo .hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("../images/hero/hero-home.jpg") center 45% / cover no-repeat;
  transform: scale(1.04);
}
.hero-photo .hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(18,12,7,0.92) 0%, rgba(18,12,7,0.5) 46%, rgba(18,12,7,0.08) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 26%);
}
.hero-photo .hero-inner { grid-template-columns: 1fr; }
.hero-photo .hero-copy { max-width: 640px; }
.hero-photo .hero-title { text-shadow: 0 2px 30px rgba(0,0,0,0.5); }
@media (max-width: 980px) {
  .hero-photo { align-items: center; }
  .hero-photo .hero-bg { background-position: center 35%; }
  .hero-photo .hero-scrim {
    background:
      linear-gradient(to top, rgba(18,12,7,0.96) 8%, rgba(18,12,7,0.55) 45%, rgba(18,12,7,0.35) 100%);
  }
  .hero-photo .hero-inner { padding-top: 120px; }
}

/* ── MARQUEE STRIP ── */
.strip {
  background: var(--brass);
  color: var(--ink);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.strip-track {
  display: inline-flex; align-items: center; gap: 26px;
  animation: marquee 26s linear infinite;
}
.strip-track span { font-family: var(--serif); font-style: italic; font-size: 1.1rem; }
.strip-track i { color: rgba(36,26,18,0.5); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SCROLLYTELLING — "THE MAKING"
   ============================================================ */
.scrolly {
  position: relative;
  background: linear-gradient(180deg, #19120c, #211711 50%, #19120c);
  /* tall scroll track: 4 steps */
  height: 420vh;
}
.scrolly-sticky {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.scrolly-head { margin-bottom: 0; position: absolute; top: clamp(80px, 12vh, 130px); left: 0; right: 0; }
.scrolly-stage {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
}

.scrolly-media {
  position: relative;
  aspect-ratio: 1;
  display: grid; place-items: center;
}
.scrolly-frame {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  opacity: 0;
  transform: scale(0.94) translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
}
.scrolly-frame.is-active { opacity: 1; transform: scale(1) translateY(0); }
.scrolly-frame img {
  width: min(86%, 480px);
  border-radius: 6px;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,0.6));
}
.scrolly-frame.photo img {
  width: min(96%, 560px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}
/* laser scan line that sweeps the media */
.scrolly-laser {
  position: absolute; left: 6%; right: 6%; height: 2px; top: 50%;
  background: linear-gradient(90deg, transparent, var(--ember), var(--brass-lt), var(--ember), transparent);
  box-shadow: 0 0 18px 3px rgba(224,122,60,0.6);
  opacity: 0; pointer-events: none;
}
.scrolly.lasing .scrolly-laser { animation: scan 1.1s var(--ease); }
@keyframes scan {
  0% { opacity: 0; top: 10%; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; top: 90%; }
}

.scrolly-steps { position: relative; min-height: 320px; }
.scrolly-step {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.scrolly-step.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.step-index {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--brass); letter-spacing: 0.1em; margin-bottom: 14px;
}
.scrolly-step h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.2rem, 4.4vw, 4rem); line-height: 1.04; letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.scrolly-step p { font-size: clamp(1rem, 1.3vw, 1.12rem); color: var(--muted); max-width: 440px; line-height: 1.8; }

.scrolly-progress {
  position: absolute; left: 0; bottom: 0; width: 100%; height: 3px;
  background: rgba(214,162,74,0.12);
}
.scrolly-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--ember), var(--brass-lt)); }

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections { padding: clamp(90px, 12vw, 150px) clamp(20px, 4vw, 48px); background: var(--bg); }
.collection-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.coll-card {
  position: relative; overflow: hidden; border-radius: 8px;
  aspect-ratio: 4/5; text-decoration: none; display: block;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.coll-card.feature { grid-column: span 1; }
.coll-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  filter: brightness(0.82) saturate(0.95);
}
.coll-card:hover img { transform: scale(1.07); filter: brightness(0.95) saturate(1.05); }
.coll-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(20,13,8,0.92) 0%, rgba(20,13,8,0.35) 45%, transparent 75%);
}
.coll-overlay h3 { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; margin-bottom: 6px; }
.coll-overlay p { font-size: 0.86rem; color: var(--muted); margin-bottom: 14px; }
.coll-link { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-lt); transform: translateX(-6px); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s; }
.coll-card:hover .coll-link { transform: translateX(0); opacity: 1; }

/* ============================================================
   SHOWCASE ROW (scroll-snap)
   ============================================================ */
.showcase { padding: clamp(80px, 10vw, 130px) 0; background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.showcase-row {
  display: flex; gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 clamp(20px, 6vw, 90px) 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--brass) transparent;
}
.showcase-row::-webkit-scrollbar { height: 6px; }
.showcase-row::-webkit-scrollbar-thumb { background: var(--brass); border-radius: 3px; }
.showcase-row figure {
  flex: 0 0 auto; width: clamp(220px, 28vw, 320px);
  scroll-snap-align: center;
}
.showcase-row img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--line);
  filter: brightness(0.92);
  transition: transform 0.5s var(--ease);
}
.showcase-row figure:hover img { transform: translateY(-6px); }
.showcase-row figcaption { margin-top: 12px; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   REVIEWS (Google / Trustindex)
   ============================================================ */
.reviews { padding: clamp(90px, 12vw, 150px) clamp(20px, 4vw, 48px); background: var(--bg); }
.reviews-note { font-size: 0.84rem; color: var(--muted); margin-top: 16px; font-style: italic; }
.review-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card {
  background: rgba(244,236,221,0.04); border: 1px solid var(--line); border-radius: 12px;
  padding: 30px; display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(214,162,74,0.4); }
.review-stars { color: var(--brass); letter-spacing: 3px; font-size: 0.95rem; }
.review-card blockquote { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 1.12rem; line-height: 1.6; color: var(--paper); }
.review-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--brass); color: var(--ink); font-weight: 600; font-size: 1.05rem; }
.review-who { display: flex; flex-direction: column; }
.review-who strong { font-weight: 500; font-size: 0.94rem; }
.review-who em { font-style: normal; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; }
.review-g { width: 20px; height: 20px; margin-left: auto; opacity: 0.9; }
.reviews-cta { text-align: center; margin-top: 48px; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; max-width: 520px; } }

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy { padding: clamp(90px, 12vw, 160px) clamp(24px, 5vw, 48px); background: var(--bg-2); text-align: center; }
.philo-inner { max-width: 920px; margin: 0 auto; }
.philo-quote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 3rem); line-height: 1.28; letter-spacing: -0.01em;
  margin: 22px 0 60px;
}
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat { padding: 36px 20px; border: 1px solid var(--line); border-radius: 8px; background: rgba(214,162,74,0.04); }
.stat-num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--brass); line-height: 1; margin-bottom: 12px; }
.stat-label { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  padding: clamp(100px, 14vw, 180px) clamp(24px, 5vw, 48px);
  text-align: center;
  background: radial-gradient(900px 500px at 50% 120%, rgba(224,122,60,0.16), transparent 60%), var(--bg);
}
.cta-glow { position: absolute; inset: 0; background: radial-gradient(600px 600px at 50% 50%, rgba(214,162,74,0.08), transparent 60%); pointer-events: none; }
.cta-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 1.02; letter-spacing: -0.02em; margin: 18px 0 22px; position: relative; }
.cta-sub { font-size: clamp(1rem, 1.4vw, 1.16rem); color: var(--muted); max-width: 480px; margin: 0 auto 40px; line-height: 1.8; position: relative; }
.cta .hero-actions { justify-content: center; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #120c07; padding: clamp(60px, 8vw, 90px) clamp(24px, 5vw, 48px) 34px; border-top: 1px solid var(--line); }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand .nav-logo { font-size: 1.5rem; }
.footer-brand p { margin-top: 16px; color: var(--muted); max-width: 340px; font-size: 0.92rem; }
.footer-col h4 { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; color: var(--muted); text-decoration: none; font-size: 0.92rem; margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--paper); }
.footer-base {
  max-width: var(--maxw); margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.76rem; color: var(--muted); letter-spacing: 0.04em;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.05s; }
.coll-card.reveal { transition-delay: calc(var(--i, 0) * 0.06s); }

body.is-loading .hero .reveal { opacity: 0; transform: translateY(36px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 10px; padding-top: 110px; }
  .hero-art { order: -1; max-width: 380px; margin: 0 auto; width: 100%; }
  .hero-copy { text-align: center; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .scrolly-stage { grid-template-columns: 1fr; gap: 24px; }
  .scrolly-steps { min-height: 240px; text-align: center; }
  .scrolly-step { align-items: center; }
  .scrolly-step p { margin: 0 auto; }
  .scrolly-media { max-width: 420px; margin: 0 auto; width: 100%; }
  .scrolly-head { top: 86px; }

  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-inner { padding-top: 100px; }
  .hero-art-chip { width: 42%; }
  .collection-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-base { justify-content: center; text-align: center; }
  .scrolly { height: 460vh; }
  .scrolly-step h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
}

/* ============================================================
   INNER PAGES — hero + shared
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(150px, 22vh, 230px) clamp(24px, 5vw, 56px) clamp(70px, 10vh, 110px);
  background:
    radial-gradient(1000px 500px at 80% 0%, rgba(224,122,60,0.10), transparent 60%),
    linear-gradient(160deg, #241910 0%, #19120c 60%);
}
.page-hero.short { padding-bottom: clamp(40px, 6vh, 70px); }
.page-hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; text-align: center; }
.page-hero .eyebrow { display: block; margin-bottom: 18px; }
.page-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.03; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.page-lead { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 1.8; }
.inline-link { color: var(--brass-lt); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.inline-link:hover { color: var(--brass); }

/* ── About split ── */
.about-split {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) clamp(24px, 5vw, 48px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.about-media img { width: 100%; border-radius: 10px; border: 1px solid var(--line); box-shadow: 0 40px 70px -30px rgba(0,0,0,0.7); }
.about-text .section-title { margin: 16px 0 24px; text-align: left; }
.about-text p { color: var(--muted); margin-bottom: 18px; line-height: 1.85; max-width: 520px; }

/* ── Process ── */
.process { padding: clamp(60px, 9vw, 120px) clamp(24px, 5vw, 48px); background: var(--bg-2); }
.process-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { padding: 36px 28px; border: 1px solid var(--line); border-radius: 10px; background: rgba(214,162,74,0.04); transition: transform 0.4s var(--ease), border-color 0.4s; }
.process-card:hover { transform: translateY(-6px); border-color: rgba(214,162,74,0.4); }
.process-card .step-index { display: block; margin-bottom: 16px; }
.process-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin-bottom: 12px; }
.process-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.75; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: var(--maxw); margin: 0 auto;
  padding: 10px clamp(20px, 4vw, 48px) 30px;
}
.gallery-filters button {
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); background: transparent;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 11px 20px; cursor: pointer;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.gallery-filters button:hover { color: var(--paper); border-color: rgba(214,162,74,0.5); }
.gallery-filters button.active { color: var(--ink); background: var(--brass); border-color: var(--brass); }

.gallery-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(70px, 9vw, 120px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gal-item { position: relative; border-radius: 10px; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); }
.gal-item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.6s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 14px;
  font-size: 0.74rem; letter-spacing: 0.08em; color: var(--paper);
  background: linear-gradient(to top, rgba(18,12,7,0.92), transparent);
  opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s;
}
.gal-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(30px, 5vw, 60px) clamp(24px, 5vw, 48px) clamp(70px, 10vw, 120px);
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(34px, 6vw, 80px);
  align-items: start;
}
.contact-form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); }
.field input, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--paper);
  background: rgba(244,236,221,0.04);
  border: 1px solid var(--line); border-radius: 6px;
  padding: 15px 16px; width: 100%;
  transition: border-color 0.3s, background 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(244,236,221,0.32); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brass); background: rgba(244,236,221,0.06); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { justify-self: start; margin-top: 4px; }
.form-note { font-size: 0.9rem; line-height: 1.7; padding: 14px 16px; border-radius: 6px; }
.form-note a { color: inherit; text-decoration: underline; }
.form-note.ok  { color: #cfe6cf; background: rgba(58,90,68,0.28); border: 1px solid rgba(120,170,130,0.4); }
.form-note.err { color: #f0cdbd; background: rgba(224,122,60,0.16); border: 1px solid rgba(224,122,60,0.4); }

/* ── footer socials ── */
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--muted); transition: color 0.3s, border-color 0.3s, transform 0.3s;
}
.footer-social a:hover { color: var(--brass-lt); border-color: var(--brass); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.contact-info { border: 1px solid var(--line); border-radius: 12px; padding: 34px; background: rgba(214,162,74,0.04); }
.info-block { padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-block:first-child { padding-top: 0; }
.info-label { display: block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin-bottom: 8px; }
.info-value { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--paper); text-decoration: none; line-height: 1.4; }
a.info-value:hover { color: var(--brass-lt); }
.info-art { margin-top: 26px; }
.info-art img { width: 60%; margin: 0 auto; filter: drop-shadow(0 24px 36px rgba(0,0,0,0.5)); }

@media (max-width: 980px) {
  .about-split { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; margin: 0 auto; }
  .about-text .section-title, .about-text p { text-align: center; margin-left: auto; margin-right: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item figcaption { opacity: 1; transform: none; font-size: 0.66rem; }
}

/* ── reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .float-a, .float-b { animation: none; }
}
