/* ============================================================
   SYMMETRY CINEMA — Brand Stylesheet
   Cinematic wedding films · Clifton Park, New York
   Mobile-first. Distinctive editorial desktop layout.
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Color system */
  --cinema-blue: #173A63;
  --cinema-blue-hover: #1f4c80;
  --midnight-frame: #0B1017;
  --gallery-white: #F6F4F0;
  --soft-stone: #D8D4CD;
  --ink: #14171B;
  --slate: #5F666D;
  --ivory: #F8F6F1;
  --champagne: #B8AA96;

  --success: #35644A;
  --warning: #9B6A2F;
  --error: #93433F;

  /* Semantic surfaces */
  --bg: var(--gallery-white);
  --bg-dark: var(--midnight-frame);
  --text: var(--ink);
  --text-soft: var(--slate);
  --text-invert: var(--ivory);
  --line: var(--soft-stone);
  --line-dark: rgba(248, 246, 241, 0.14);

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale */
  --step-label: clamp(0.72rem, 0.68rem + 0.2vw, 0.8rem);
  --step-body: clamp(1.0625rem, 1.02rem + 0.22vw, 1.1875rem);   /* 17–19px */
  --step-lead: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
  --step-h3: clamp(1.5rem, 1.2rem + 1.4vw, 2.15rem);
  --step-h2: clamp(2.125rem, 1.55rem + 2.6vw, 4rem);            /* 34–64px */
  --step-h1: clamp(2.75rem, 1.6rem + 5.4vw, 6rem);              /* 44–96px */

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 9rem;

  --measure: 68ch;
  --page-max: 1360px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --radius: 3px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-ui: 200ms var(--ease);
  --t-reveal: 700ms var(--ease);
  --t-media: 1100ms var(--ease);
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; max-width: var(--measure); }

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

img, video { max-width: 100%; height: auto; display: block; }

button { font-family: inherit; cursor: pointer; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--cinema-blue); color: var(--ivory); }

:focus-visible {
  outline: 2px solid var(--cinema-blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.dark :focus-visible { outline-color: var(--ivory); }

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--cinema-blue);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  z-index: 1000;
  transition: top var(--t-ui);
}
.skip-link:focus { top: 12px; }

/* ---------- 3. Layout Primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3.5rem, 8vw, var(--space-7));
}

.dark {
  background: var(--bg-dark);
  color: var(--text-invert);
}
.dark p { color: rgba(248, 246, 241, 0.78); }
.dark .eyebrow { color: var(--champagne); }
.dark .rule { background: var(--line-dark); }

.eyebrow {
  font-size: var(--step-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cinema-blue);
  margin: 0 0 var(--space-2);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.lead {
  font-size: var(--step-lead);
  line-height: 1.45;
  color: var(--text-soft);
  font-weight: 400;
  max-width: 40ch;
}
.dark .lead { color: rgba(248, 246, 241, 0.82); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 1.05rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background var(--t-ui), color var(--t-ui), border-color var(--t-ui), transform var(--t-ui);
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--cinema-blue); color: var(--ivory); }
.btn--primary:hover { background: var(--cinema-blue-hover); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }

.dark .btn--ghost { color: var(--ivory); border-color: rgba(248,246,241,0.5); }
.dark .btn--ghost:hover { background: var(--ivory); color: var(--ink); }

.btn--wide { width: 100%; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cinema-blue);
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  transition: gap var(--t-ui), opacity var(--t-ui);
}
.textlink:hover { gap: 0.85rem; }
.dark .textlink { color: var(--champagne); }

/* ---------- 5. Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--t-media), backdrop-filter var(--t-media), border-color var(--t-media);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  max-width: var(--page-max);
  margin-inline: auto;
  padding: 1.1rem var(--gutter);
}
.nav.is-scrolled {
  background: rgba(11, 16, 23, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-dark);
}

.brand { display: inline-flex; align-items: baseline; gap: 0.55rem; }
.brand__mark { font-family: var(--font-display); color: var(--ivory); line-height: 1; }
.brand__name {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand__sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--champagne);
}

.nav__links { display: none; }
.nav__cta { display: none; }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 10px;
}
.nav__toggle span {
  height: 1.5px;
  width: 100%;
  background: var(--ivory);
  transition: transform var(--t-ui), opacity var(--t-ui);
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--midnight-frame);
  padding: 6rem var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 420ms var(--ease), visibility 420ms;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer__links { display: flex; flex-direction: column; gap: 0.35rem; }
.drawer__links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 2.75rem);
  color: var(--ivory);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: color var(--t-ui), padding-left var(--t-ui);
}
.drawer__links a:hover { color: var(--champagne); padding-left: 0.5rem; }
.drawer__foot { margin-top: auto; padding-top: 2rem; }
.drawer__foot .btn { margin-bottom: 1.25rem; }
.drawer__meta { font-size: 0.85rem; color: rgba(248,246,241,0.6); }

body.menu-open { overflow: hidden; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--midnight-frame);
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Cinematic CSS backdrop — looks complete before real footage is added */
.hero__fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 72% 18%, rgba(23,58,99,0.55), transparent 60%),
    radial-gradient(140% 120% at 20% 90%, rgba(184,170,150,0.16), transparent 55%),
    linear-gradient(180deg, #0d141d 0%, #0b1017 45%, #070a0f 100%);
  animation: heroPan 26s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
  to   { transform: scale(1.14) translate3d(1.5%, 1%, 0); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,16,23,0.45) 0%, rgba(11,16,23,0) 30%, rgba(11,16,23,0.15) 55%, rgba(11,16,23,0.9) 100%);
}
.hero__grain { position: absolute; inset: 0; z-index: -1; opacity: 0.05; mix-blend-mode: overlay; pointer-events: none; }

.hero__content { padding-block: clamp(3rem, 12vh, 7rem); }
.hero__eyebrow {
  font-size: var(--step-label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.hero__title {
  font-size: var(--step-h1);
  font-weight: 500;
  max-width: 15ch;
  margin-bottom: var(--space-3);
}
.hero__sub {
  font-size: var(--step-lead);
  max-width: 34ch;
  color: rgba(248,246,241,0.88);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}
.hero__actions { display: flex; flex-direction: column; gap: 0.85rem; }
.hero__actions .btn { width: 100%; }
/* Hero sits on dark media but isn't a .dark section — force light ghost button */
.hero__actions .btn--ghost { color: var(--ivory); border-color: rgba(248, 246, 241, 0.65); }
.hero__actions .btn--ghost:hover { background: var(--ivory); color: var(--ink); }

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  right: var(--gutter);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.6);
  display: none;
}

/* ---------- 7. Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--t-reveal), transform var(--t-reveal);
}
.reveal.is-in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 90ms; }
[data-delay="2"] { transition-delay: 180ms; }
[data-delay="3"] { transition-delay: 270ms; }

/* ---------- 8. Positioning statement ---------- */
.statement__grid { display: grid; gap: var(--space-3); }
.statement h2 {
  font-size: var(--step-h2);
  max-width: 16ch;
}
.statement .lead { max-width: 46ch; }

/* ---------- 9. Featured films ---------- */
.films__head {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.films__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
.film {
  display: block;
  color: inherit;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 1.5rem;
}
.film__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #10161f;
  margin-bottom: 1.25rem;
}
.film__frame img,
.film__ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-media);
}
.film__ph {
  display: grid;
  place-items: center;
  background:
    radial-gradient(90% 120% at 30% 20%, rgba(23,58,99,0.5), transparent 60%),
    linear-gradient(135deg, #141b26, #0b1017);
}
.film__ph span {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: rgba(248,246,241,0.28);
  letter-spacing: 0.05em;
}
.film:hover .film__frame img,
.film:hover .film__ph { transform: scale(1.04); }
.film__play {
  position: absolute;
  left: 1rem; bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(11,16,23,0.55);
  backdrop-filter: blur(6px);
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
}
.film__dur {
  position: absolute;
  right: 1rem; top: 1rem;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ivory);
  background: rgba(11,16,23,0.5);
  padding: 0.35rem 0.6rem;
  border-radius: 2px;
}
.film__names { font-family: var(--font-display); font-size: var(--step-h3); font-weight: 500; }
.film__meta {
  font-size: 0.9rem;
  color: var(--champagne);
  letter-spacing: 0.02em;
  margin: 0.15rem 0 0.4rem;
}
.dark .film__meta { color: var(--champagne); }
.film__desc { font-size: 0.98rem; color: rgba(248,246,241,0.7); margin: 0; }

/* ---------- 10. The Difference ---------- */
.diff__grid { display: grid; gap: var(--space-4); margin-top: var(--space-4); }
.diff__item { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.diff__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cinema-blue);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}
.diff__item h3 { font-size: var(--step-h3); margin-bottom: 0.6rem; }
.diff__item p { color: var(--text-soft); margin: 0; }

/* ---------- 11. Sound & Story ---------- */
.sound__inner { display: grid; gap: var(--space-4); }
.sound h2 { font-size: var(--step-h2); max-width: 15ch; }
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 96px;
  margin-top: var(--space-3);
}
.waveform span {
  flex: 1;
  background: linear-gradient(180deg, var(--champagne), var(--cinema-blue));
  border-radius: 2px;
  opacity: 0.75;
  transform-origin: center;
  animation: wave 1.8s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { transform: scaleY(0.25); }
  50% { transform: scaleY(1); }
}

/* ---------- 12. Collection / Pricing ---------- */
.collection__grid { display: grid; gap: var(--space-4); }
.collection__head h2 { font-size: var(--step-h2); max-width: 14ch; }
.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: var(--space-2) 0 var(--space-3);
}
.price-tag__name { font-family: var(--font-display); font-size: var(--step-h3); }
.price-tag__amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  color: var(--cinema-blue);
  font-weight: 600;
}
.dark .price-tag__amount { color: var(--ivory); }

.includes {
  display: grid;
  gap: 0.9rem;
  margin: var(--space-3) 0;
}
.includes li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 1rem;
}
.includes .check {
  width: 22px; height: 22px;
  color: var(--champagne);
  flex-shrink: 0;
  margin-top: 2px;
}
.pay-note {
  font-size: 0.92rem;
  color: rgba(248,246,241,0.6);
  border-left: 2px solid var(--champagne);
  padding-left: 1rem;
  margin-top: var(--space-3);
}

/* ---------- 13. Enhancements ---------- */
.enh__head { margin-bottom: var(--space-4); display: grid; gap: var(--space-2); }
.enh__head h2 { font-size: var(--step-h2); }
.accordion { border-top: 1px solid var(--line); }
.acc {
  border-bottom: 1px solid var(--line);
}
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: 0;
  padding: 1.4rem 0;
  text-align: left;
  color: var(--ink);
}
.acc__title { display: flex; flex-direction: column; gap: 0.15rem; }
.acc__name { font-family: var(--font-display); font-size: 1.4rem; }
.acc__price { font-size: 0.9rem; color: var(--cinema-blue); font-weight: 600; letter-spacing: 0.02em; }
.acc__icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; background: var(--slate);
  transition: transform var(--t-ui);
}
.acc__icon::before { top: 9px; left: 0; width: 20px; height: 1.5px; }
.acc__icon::after { left: 9px; top: 0; width: 1.5px; height: 20px; }
.acc[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); }
.acc__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 320ms var(--ease);
}
.acc__panel-inner { padding: 0 0 1.4rem; color: var(--text-soft); max-width: 60ch; }

/* ---------- 14. Essential (secondary) ---------- */
.essential {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 5vw, 3rem);
  display: grid;
  gap: var(--space-2);
  background: rgba(216, 212, 205, 0.18);
}
.essential h2 { font-size: var(--step-h3); }
.essential .price-tag__amount { font-size: clamp(2rem, 5vw, 2.75rem); }
.essential__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: var(--space-2) 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.essential__list li { position: relative; padding-left: 1rem; }
.essential__list li::before {
  content: ""; position: absolute; left: 0; top: 0.65em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--champagne);
}

/* ---------- 15. Process ---------- */
.process__head { margin-bottom: var(--space-4); }
.process__head h2 { font-size: var(--step-h2); }
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line-dark);
}
.step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--champagne);
  line-height: 1;
  min-width: 2.5ch;
}
.step h3 { font-size: var(--step-h3); margin-bottom: 0.4rem; color: var(--ivory); }
.step p { margin: 0; }

/* ---------- 16. About ---------- */
.about__grid { display: grid; gap: var(--space-4); }
.about__portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    radial-gradient(80% 90% at 40% 25%, rgba(23,58,99,0.35), transparent 60%),
    linear-gradient(160deg, #1a222e, #0b1017);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }
.about__portrait .ph { font-family: var(--font-display); color: rgba(248,246,241,0.25); font-size: 3rem; }
.about h2 { font-size: var(--step-h2); max-width: 16ch; margin-bottom: var(--space-3); }
.about__sig {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cinema-blue);
  margin-top: var(--space-2);
}

/* ---------- 17. Testimonials ---------- */
.tst__head { margin-bottom: var(--space-4); }
.tst__head h2 { font-size: var(--step-h2); }
.tst__grid { display: grid; gap: var(--space-3); }
.tst {
  border-top: 1px solid var(--line-dark);
  padding-top: var(--space-3);
}
.tst blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  line-height: 1.4;
  margin: 0 0 1.25rem;
  color: var(--ivory);
  font-weight: 400;
}
.tst__cite { font-style: normal; }
.tst__name { font-weight: 600; font-size: 0.95rem; color: var(--ivory); }
.tst__meta { font-size: 0.85rem; color: var(--champagne); }

/* ---------- 18. FAQ ---------- */
.faq__head { margin-bottom: var(--space-4); }
.faq__head h2 { font-size: var(--step-h2); }
.faq .acc__name { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }

/* ---------- 19. Inquiry form ---------- */
.inquiry__grid { display: grid; gap: var(--space-4); }
.inquiry h2 { font-size: var(--step-h2); max-width: 14ch; }
.form { display: grid; gap: var(--space-3); }
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}
.field .req { color: var(--error); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  transition: border-color var(--t-ui), box-shadow var(--t-ui);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cinema-blue);
  box-shadow: 0 0 0 3px rgba(23,58,99,0.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--half { }
.field__error { font-size: 0.8rem; color: var(--error); min-height: 1em; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--error); }

.form__row { display: grid; gap: var(--space-3); }

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.consent input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--cinema-blue); }

.form__status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  display: none;
}
.form__status.is-success { display: block; background: rgba(53,100,74,0.12); border: 1px solid var(--success); color: var(--success); }
.form__status.is-error { display: block; background: rgba(147,67,63,0.1); border: 1px solid var(--error); color: var(--error); }

.inquiry__aside {
  display: grid;
  gap: var(--space-3);
  align-content: start;
}
.inquiry__note {
  border-left: 2px solid var(--champagne);
  padding-left: 1.25rem;
}
.inquiry__note strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; display: block; margin-bottom: 0.3rem; }

/* ---------- 20. Footer ---------- */
.footer { padding-block: var(--space-5) var(--space-3); }
.footer__top { display: grid; gap: var(--space-4); margin-bottom: var(--space-4); }
.footer__brand .brand__name { font-size: 1.6rem; }
.footer__tag { color: rgba(248,246,241,0.7); max-width: 34ch; margin-top: var(--space-2); }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: var(--space-2);
  font-weight: 600;
}
.footer__col a, .footer__col p { display: block; color: rgba(248,246,241,0.75); font-size: 0.95rem; margin-bottom: 0.5rem; transition: color var(--t-ui); }
.footer__col a:hover { color: var(--ivory); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-dark);
  font-size: 0.82rem;
  color: rgba(248,246,241,0.55);
}
.footer__disclaimer { max-width: 60ch; margin-top: var(--space-2); font-size: 0.8rem; color: rgba(248,246,241,0.45); }
.footer__login { color: rgba(248,246,241,0.4); }
.footer__login:hover { color: var(--champagne); }
.socials { display: flex; gap: 1rem; }
.socials a { width: 22px; height: 22px; color: rgba(248,246,241,0.7); }
.socials a:hover { color: var(--ivory); }

/* ---------- 20b. Video modal ---------- */
.vmodal[hidden] { display: none; }
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  background: rgba(7, 10, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 300ms var(--ease);
}
.vmodal.is-open { opacity: 1; }
.vmodal__frame {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.vmodal__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.vmodal__close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(248, 246, 241, 0.1);
  border: 1px solid rgba(248, 246, 241, 0.25);
  border-radius: 50%;
  color: var(--ivory);
  transition: background var(--t-ui);
}
.vmodal__close:hover { background: rgba(248, 246, 241, 0.2); }
.vmodal__close svg { width: 22px; height: 22px; }

/* ---------- 21. Legal pages ---------- */
.legal { padding-top: 8rem; }
.legal h1 { font-size: var(--step-h2); margin-bottom: var(--space-2); }
.legal h2 { font-size: var(--step-h3); margin: var(--space-4) 0 var(--space-2); }
.legal p, .legal li { color: var(--text-soft); max-width: var(--measure); }
.legal ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1.1em; }
.legal a { color: var(--cinema-blue); text-decoration: underline; }
.legal__back { display: inline-block; margin-bottom: var(--space-3); }

/* ============================================================
   DESKTOP — distinctive editorial layout (not a reflow)
   ============================================================ */
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; }
  .hero__actions .btn { width: auto; }
  .form__row--2 { grid-template-columns: 1fr 1fr; }
  .films__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  html { scroll-padding-top: 100px; }

  /* Nav becomes a full editorial bar */
  .nav__toggle { display: none; }
  .nav__links {
    display: flex;
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
  }
  .nav__links a {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: rgba(248,246,241,0.82);
    padding: 0.35rem 0;
    position: relative;
    transition: color var(--t-ui);
  }
  .nav__links a::after {
    content: ""; position: absolute; left: 0; bottom: -2px;
    width: 0; height: 1px; background: var(--champagne);
    transition: width var(--t-ui);
  }
  .nav__links a:hover { color: var(--ivory); }
  .nav__links a:hover::after { width: 100%; }
  .nav__cta { display: inline-flex; }
  .nav__cta.btn { padding: 0.7rem 1.15rem; font-size: 0.85rem; }

  .hero__scroll { display: block; }

  /* Positioning: asymmetric two-column with a sticky label */
  .statement__grid {
    grid-template-columns: 0.85fr 1fr;
    gap: var(--space-6);
    align-items: start;
  }

  /* Films: editorial mixed grid — first film spans wide */
  .films__head { grid-template-columns: 1fr auto; align-items: end; }
  .films__grid { grid-template-columns: repeat(6, 1fr); gap: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem,3vw,2.5rem); }
  .film { grid-column: span 3; border-bottom: 0; }
  .film--wide { grid-column: span 6; }
  .film--wide .film__frame { aspect-ratio: 21 / 9; }
  .film--tall { grid-column: span 2; }

  /* Difference: 2x2 editorial grid */
  .diff__grid { grid-template-columns: 1fr 1fr; gap: var(--space-5) var(--space-6); }

  /* Sound: split screen */
  .sound__inner { grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: center; }

  /* Collection: sticky price panel + scrolling includes */
  .collection__grid { grid-template-columns: 0.9fr 1.1fr; gap: var(--space-6); align-items: start; }
  .collection__head { position: sticky; top: 120px; }

  /* Enhancements + essential side by side context */
  .enh__head { grid-template-columns: 1fr 1fr; align-items: end; }

  /* Process: label left, steps right */
  .process__inner { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: var(--space-6); align-items: start; }
  .process__head { position: sticky; top: 120px; margin-bottom: 0; }

  /* About: portrait + text split */
  .about__grid { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-6); align-items: center; }

  /* Testimonials: three columns */
  .tst__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }

  /* FAQ: two columns of accordions with sticky heading */
  .faq__inner { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: var(--space-6); align-items: start; }
  .faq__head { position: sticky; top: 120px; margin-bottom: 0; }

  /* Inquiry: form + aside */
  .inquiry__grid { grid-template-columns: 1.3fr 0.7fr; gap: var(--space-6); align-items: start; }
  .inquiry__aside { position: sticky; top: 120px; }

  /* Footer */
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-4); }
}

@media (min-width: 1200px) {
  .statement__grid { gap: var(--space-7); }
  .hero__title { max-width: 13ch; }
}

/* ---------- 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; }
  .hero__fallback { animation: none; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .drawer, .hero__scroll, .btn { display: none !important; }
  body { color: #000; background: #fff; }
}
