/* ============================================================
   TOMOMI SWEET — Pastelería artesanal · alta hostelería
   Light editorial "lujo silencioso" theme
   ============================================================ */
:root {
  /* Tomomi Sweet — Brand Book V3 palette (exact) */
  --charcoal:   #1C1C1E;   /* Obsidian Black */
  --soft-black: #0F0F10;   /* Obsidian Black (deep) */
  --gold:       #C8A86A;   /* Warm Gold */
  --cream:      #FAF6F0;   /* Chalk Cream */
  --ivory:      #F7F3EE;   /* Chalk White */
  --stone:      #8D8D8D;   /* Dusty Sage */

  /* derived warm neutrals (section rhythm) */
  --ivory-2:    #F1ECE4;   /* alt section bg */
  --ivory-3:    #EAE3D8;   /* deeper panel */
  --gold-deep:  #AD8B4E;   /* darker Warm Gold for small text on light */
  --line:       rgba(28,28,30,0.12);
  --line-soft:  rgba(28,28,30,0.07);
  --ink-70:     rgba(28,28,30,0.72);
  --ink-55:     rgba(28,28,30,0.55);
  --ink-40:     rgba(28,28,30,0.40);

  --serif: "Prata", Georgia, "Times New Roman", serif;
  --sans:  "Montserrat", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scrollbar-width: thin; scrollbar-color: var(--gold) var(--ivory); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7.2vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.h-lg {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--charcoal);
}
.h-lg em { font-style: italic; }
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.eyebrow-light { color: var(--gold); }
.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  color: var(--ink-70);
  max-width: 56ch;
  font-weight: 400;
}
.lead.center { margin-left: auto; margin-right: auto; }
.lead em { font-style: italic; color: var(--charcoal); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn-solid {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 1.05em 2.2em;
  border-radius: 2px;
}
.btn-solid:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); }
.btn-pill {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 0.7em 1.5em;
  border-radius: 100px;
  font-size: 0.74rem;
}
.btn-pill:hover { background: var(--charcoal); color: var(--ivory); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--line);
  padding: 1.05em 1.8em;
  border-radius: 2px;
}
.btn-ghost:hover { border-color: var(--charcoal); }
.btn-block { width: 100%; }
.btn-whatsapp {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--line);
  padding: 0.9em 1.6em;
  border-radius: 100px;
  margin-top: 1.6rem;
}
.btn-whatsapp:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn-whatsapp .wa-icon { width: 18px; height: 18px; fill: currentColor; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 18px var(--pad);
  background: rgba(247, 243, 238, 0);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(247, 243, 238, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  transition: height 0.5s var(--ease);
}
.nav.scrolled .brand-logo { height: 43px; }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: 1.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-70);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-deep);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   SCRUB SECTIONS (canvas frame scrub)
   ============================================================ */
.scrub { position: relative; }
.hero { height: 320vh; }   /* scroll-scrub: the cake advances as you scroll, no loop */
.interlude { height: 340vh; }
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--ivory);
}
.frame-canvas, .frame-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame-video { display: none; }
.scrub.is-video .frame-canvas { display: none; }
.scrub.is-video .frame-video { display: block; }

/* soft scrims keep copy legible on a light image */
.scrim { position: absolute; inset: 0; pointer-events: none; }
/* Clean video: only a soft top fade (keeps the nav legible) + a gentle
   bottom fade that hands off into the ivory banner below. No text to protect. */
.scrim-hero {
  background:
    linear-gradient(180deg, rgba(247,243,238,0.55) 0%, rgba(247,243,238,0) 20%, rgba(247,243,238,0) 80%, rgba(247,243,238,0.55) 100%);
}
.scrim-soft {
  background: linear-gradient(180deg, rgba(247,243,238,0.4) 0%, rgba(247,243,238,0) 40%, rgba(247,243,238,0.45) 100%);
}

/* ---------- Overlay copy ---------- */
.overlay { position: absolute; inset: 0; z-index: 10; text-align: center; padding: 0 var(--pad); }
.reveal-line { opacity: 0; will-change: opacity, transform; }

.hero-overlay .eyebrow {
  position: absolute;
  top: clamp(96px, 17vh, 180px); left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 90vw;
  margin: 0;
}
.hero-lead { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 100%; }
.hero-sub {
  margin-top: 1.6rem;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--ink-70);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.hero-poetic {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: max-content;
  max-width: 92vw;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 4.2vw, 3.2rem);
  color: var(--charcoal);
  line-height: 1.2;
}
/* Soft ivory halo keeps the dark copy legible where it crosses the cake */
.hero-overlay .display,
.hero-overlay .hero-sub,
.hero-overlay .hero-poetic {
  text-shadow: 0 1px 24px rgba(247,243,238,0.92), 0 0 9px rgba(247,243,238,0.6);
}

.interlude-overlay .interlude-line {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: max-content;
  max-width: 92vw;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 4rem);
  color: var(--charcoal);
  line-height: 1.15;
}
.interlude-overlay .dim { color: var(--ink-55); font-style: italic; font-size: clamp(1.3rem, 3.4vw, 2.6rem); }

/* ---------- Scroll hint ---------- */
.scroll-hint {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-55);
  transition: opacity 0.5s;
}
.scroll-hint i { width: 1px; height: 38px; background: linear-gradient(var(--gold-deep), transparent); animation: drip 2s var(--ease) infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================
   BANDS (content sections)
   ============================================================ */
.band { position: relative; padding: clamp(72px, 12vh, 160px) 0; }
.band-marca { background: var(--ivory); }
.band-porque { background: var(--ivory-2); }
.band-coleccion { background: var(--ivory); }
.band-formatos { background: var(--ivory-2); }
.band-contacto { background: var(--charcoal); color: var(--ivory); }

/* ---------- Hero banner (text section under the clean video) ---------- */
.band-hero-intro {
  background: var(--ivory);
  text-align: center;
  padding: clamp(64px, 12vh, 150px) 0 clamp(56px, 9vh, 120px);
}
.hero-banner { max-width: 1040px; margin: 0 auto; }
.band-hero-intro .display {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  margin: 1.2rem auto 0;
  max-width: 16ch;
}
.hero-banner-sub {
  margin: 1.7rem auto 0;
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-70);
}
.hero-banner-poem {
  margin: 2.2rem auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  color: var(--gold-deep);
}

.band-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 60ch; }
.band-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.band-tagline {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--gold-deep);
  text-align: center;
}

/* ---------- Split (La marca) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.split-text .lead { margin-top: 1.4rem; }
.quote-block {
  margin-top: 2.4rem;
  padding: 1.6rem 1.8rem;
  border-left: 2px solid var(--gold);
  background: var(--ivory-2);
}
.band-porque .quote-block { background: var(--ivory-3); }
.quote-kicker {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
}
.quote-block p { font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.4rem); line-height: 1.5; color: var(--charcoal); }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; box-shadow: 0 30px 70px -40px rgba(28,28,30,0.5); }
.split-media figcaption { margin-top: 0.9rem; font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink-55); text-align: right; font-style: italic; }

/* ---------- Pillars (Por qué) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); }
.pillar { padding: 2.2rem 0 0; border-top: 1px solid var(--line); }
.pillar-no { font-family: var(--serif); font-size: 1.1rem; color: var(--gold-deep); }
.pillar h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin: 1rem 0 0.7rem; color: var(--charcoal); }
.pillar p { color: var(--ink-70); font-size: 0.98rem; }

/* ---------- Collection ---------- */
.collection { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.2vw, 1.8rem); }
.piece { background: var(--ivory-2); border-radius: 2px; overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.piece:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -38px rgba(28,28,30,0.45); }
.piece figure { overflow: hidden; }
.piece img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1.1s var(--ease); }
.piece:hover img { transform: scale(1.05); }
.piece-body { padding: 1.4rem 1.4rem 1.7rem; }
.piece-body h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; color: var(--charcoal); }
.piece-poem { margin-top: 0.4rem; font-style: italic; color: var(--ink-55); font-size: 0.95rem; }
.piece-note { margin-top: 0.7rem; font-size: 0.82rem; line-height: 1.5; color: var(--stone); }
.band-cta { text-align: center; margin-top: clamp(2.6rem, 5vw, 4.2rem); }
.cta-note { margin-top: 1rem; font-size: 0.84rem; color: var(--ink-55); letter-spacing: 0.04em; }

/* ---------- Services + sizes ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); margin-bottom: clamp(3rem, 6vw, 5rem); }
.service { padding: 2rem 0 0; border-top: 1px solid var(--line); }
.service h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 0.7rem; color: var(--charcoal); }
.service p { color: var(--ink-70); font-size: 0.98rem; }
.sizes { border-top: 1px solid var(--line); padding-top: 2rem; }
.sizes-label { font-family: var(--sans); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1.4rem; }
.sizes-list { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.sizes-list li { display: flex; flex-direction: column; gap: 0.3rem; padding: 1.2rem 1.4rem; background: var(--ivory); border: 1px solid var(--line-soft); border-radius: 2px; }
.sizes-list span { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-55); }
.sizes-list em { font-family: var(--serif); font-style: normal; font-size: 1.5rem; color: var(--charcoal); }

/* ============================================================
   CONTACTO
   ============================================================ */
.band-contacto .eyebrow { color: var(--gold); }
.band-contacto .h-lg { color: var(--ivory); }
.band-contacto .lead { color: rgba(247,243,238,0.72); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }

.contact-list { list-style: none; margin-top: 2.4rem; display: grid; gap: 1rem; }
.contact-list li { font-size: 0.95rem; color: rgba(247,243,238,0.85); }
.contact-list span { display: inline-block; width: 96px; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.contact-list a { border-bottom: 1px solid rgba(200,171,106,0.4); transition: color 0.3s; }
.contact-list a:hover { color: var(--gold); }
.band-contacto .btn-whatsapp { color: var(--ivory); border-color: rgba(247,243,238,0.25); }
.band-contacto .btn-whatsapp:hover { border-color: var(--gold); color: var(--gold); }

/* form */
.contact-form-wrap { background: var(--ivory); color: var(--charcoal); padding: clamp(1.8rem, 4vw, 3rem); border-radius: 3px; box-shadow: 0 40px 90px -50px rgba(0,0,0,0.6); }
.field { margin-bottom: 1.15rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-55); margin-bottom: 0.5rem; }
.field label .opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--ink-40); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--charcoal);
  padding: 0.85em 0.9em;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--ivory-2);
  transition: border-color 0.3s, background 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-deep); background: #fff; }
.field textarea { resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238D8D8D' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; margin: 0.4rem 0 1.4rem; font-size: 0.82rem; color: var(--ink-70); line-height: 1.5; }
.consent input { margin-top: 3px; accent-color: var(--gold-deep); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--gold-deep); border-bottom: 1px solid var(--gold); }
.form-error { margin-top: 1rem; color: #a8453a; font-size: 0.86rem; }

/* thank-you */
.thankyou { text-align: center; padding: 1rem 0; }
.ty-mark svg { width: 64px; height: 64px; margin: 0 auto 1.4rem; }
.thankyou h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 0.8rem; }
.thankyou p { color: var(--ink-70); margin-bottom: 1.6rem; max-width: 42ch; margin-left: auto; margin-right: auto; }
.ty-note { font-size: 0.86rem; margin-top: 1.4rem; }
.ty-note a { color: var(--gold-deep); border-bottom: 1px solid var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--soft-black); color: rgba(247,243,238,0.7); padding: clamp(3.5rem, 7vw, 6rem) 0 2.2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
.footer-logo { width: clamp(124px, 13vw, 150px); height: auto; display: block; margin-bottom: 1.3rem; }
.footer-tag { font-size: 0.9rem; max-width: 34ch; line-height: 1.6; }
.footer-col h4 { font-family: var(--sans); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.92rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--ivory); }
.footer-col li { font-size: 0.92rem; }

.socials { display: flex; gap: 0.7rem; }
.social { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(247,243,238,0.18); border-radius: 50%; transition: all 0.3s; }
.social svg { width: 17px; height: 17px; fill: rgba(247,243,238,0.7); transition: fill 0.3s; }
.social.active:hover { border-color: var(--gold); }
.social.active:hover svg { fill: var(--gold); }
.social.disabled { opacity: 0.28; cursor: not-allowed; pointer-events: none; }
.soon-note { margin-top: 0.9rem; font-size: 0.72rem; color: rgba(247,243,238,0.35); letter-spacing: 0.04em; }

.footer-base { display: flex; justify-content: space-between; align-items: center; margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.8rem; border-top: 1px solid rgba(247,243,238,0.1); font-size: 0.8rem; color: rgba(247,243,238,0.45); }
.footer-base p:last-child { font-family: var(--serif); font-style: italic; color: var(--gold); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; padding: 0 var(--pad) clamp(14px, 3vw, 24px); animation: cookieIn 0.6s var(--ease) both; }
@keyframes cookieIn { from { transform: translateY(110%); } to { transform: translateY(0); } }
.cookie-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: rgba(28,28,30,0.97);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: var(--ivory);
  border: 1px solid rgba(200,171,106,0.25);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.7);
}
.cookie-inner p { font-size: 0.86rem; line-height: 1.55; color: rgba(247,243,238,0.82); }
.cookie-inner a { color: var(--gold); border-bottom: 1px solid rgba(200,171,106,0.4); }
.cookie-actions { display: flex; gap: 0.7rem; flex: none; }
.cookie .btn-ghost { color: var(--ivory); border-color: rgba(247,243,238,0.3); padding: 0.8em 1.4em; }
.cookie .btn-ghost:hover { border-color: var(--ivory); }
.cookie .btn-solid { background: var(--gold); color: var(--charcoal); padding: 0.8em 1.6em; }
.cookie .btn-solid:hover { background: #fff; }

/* ============================================================
   SCROLL REVEALS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.collection .piece.reveal { transition-delay: calc(var(--i, 0) * 0.08s); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; max-width: 460px; }
  .split-media figcaption { text-align: left; }
  .pillars, .services { grid-template-columns: 1fr; gap: 1.4rem; }
  .collection { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .brand-logo, .nav.scrolled .brand-logo { height: 40px; }
  .nav.menu-open {
    flex-direction: column;
    align-items: flex-start;
    background: rgba(247,243,238,0.98);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    padding-bottom: 24px;
    box-shadow: 0 20px 40px -30px rgba(0,0,0,0.4);
  }
  .nav.menu-open .nav-links { display: flex; flex-direction: column; gap: 1.1rem; width: 100%; margin: 1rem 0 0; }
  .nav.menu-open .nav-cta { display: inline-flex; margin-top: 0.4rem; }
  .nav.menu-open .nav-toggle { position: absolute; top: 14px; right: var(--pad); }

  /* Mobile fallback: scrub → autoplay looping video, shorter sections */
  .hero { height: auto; }
  .interlude { height: auto; }
  .scrub .sticky { position: relative; height: 92vh; }
  .interlude .sticky { height: 76vh; }

  /* Mobile copy: static, stacked, centered — JS skips the scroll-fade here */
  .scrub .overlay {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1rem; height: 100%; padding: 0 24px;
  }
  .hero-overlay .eyebrow,
  .hero-overlay .hero-lead,
  .interlude-overlay .interlude-line:not(.dim) {
    position: static; transform: none; opacity: 1; left: auto; top: auto;
    width: auto; max-width: 100%;
  }
  .hero-poetic, .interlude-overlay .dim { display: none; }
  .scroll-hint { bottom: 18px; }

  /* Banner headline must never overflow narrow screens */
  .band-hero-intro .display { font-size: clamp(1.75rem, 7.4vw, 2.9rem); line-height: 1.12; max-width: 100%; }
  .hero-banner-sub { font-size: 0.98rem; }
  .interlude-overlay .interlude-line { font-size: clamp(1.5rem, 6.2vw, 2.6rem); }
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .sizes-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .cookie-inner { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; }
  .collection { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal-line { opacity: 1 !important; }
  .frame-video { display: none !important; }
}
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }
