/* Quiet Light Films — design system */

:root {
  /* Color */
  --bg: #F5F2EC;
  --bg-2: #EBE6DB;
  --bg-3: #E0D9C8;
  --ink: #100F0D;
  --ink-2: #2C2925;
  --mute: #6B6358;
  --mute-2: #908778;
  --line: rgba(16, 15, 13, 0.10);
  --line-2: rgba(16, 15, 13, 0.06);
  --accent: #7C5E3C;
  --accent-soft: #C9A777;

  /* Dark surface */
  --dark: #14110E;
  --dark-2: #1D1916;
  --dark-line: rgba(245, 242, 236, 0.12);

  /* Type */
  --sans: "Mona Sans", "Mona Sans Fallback", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --rad: 4px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.005em;
  font-variation-settings: "wdth" 100;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; text-wrap: pretty; max-width: 64ch; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7.6vw, 112px); letter-spacing: -0.035em; font-weight: 700; }
h2 { font-size: clamp(34px, 4.6vw, 64px); letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -0.02em; }
h4 { font-size: clamp(18px, 1.6vw, 21px); letter-spacing: -0.015em; }

/* Labels */
.label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.label .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.section--dark .label { color: var(--accent-soft); }
.section--dark .label .dot { background: var(--accent-soft); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--wide { max-width: 1440px; }
.container--tight { max-width: 1080px; }

.section {
  padding: clamp(96px, 12vw, 176px) 0;
  position: relative;
}
.section--sm { padding: clamp(64px, 7vw, 112px) 0; }
.section--dark { background: var(--dark); color: #E8E2D4; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #F5F2EC; }
.section--soft { background: var(--bg-2); }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 236, 0.82);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--line-2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--bg);
  border-radius: 50%;
  transform: translate(3px, -2px);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--ink); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.2px;
  background: var(--ink);
  margin: 5px 0;
}

/* Buttons */
.btn {
  --btn-bg: var(--ink);
  --btn-color: var(--bg);
  --btn-border: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 18px 28px; font-size: 15px; }

.btn--primary { --btn-bg: var(--ink); --btn-color: #F5F2EC; --btn-border: var(--ink); }
.btn--primary:hover { --btn-bg: var(--accent); --btn-border: var(--accent); }

.btn--secondary {
  --btn-bg: transparent;
  --btn-color: var(--ink);
  --btn-border: rgba(16,15,13,0.2);
}
.btn--secondary:hover { --btn-border: var(--ink); }

.btn--light { --btn-bg: #F5F2EC; --btn-color: var(--ink); --btn-border: #F5F2EC; }
.btn--light:hover { --btn-bg: var(--accent-soft); --btn-border: var(--accent-soft); }

.btn--on-dark {
  --btn-bg: transparent;
  --btn-color: #F5F2EC;
  --btn-border: rgba(245,242,236,0.3);
}
.btn--on-dark:hover { --btn-bg: rgba(245,242,236,0.08); --btn-border: rgba(245,242,236,0.6); --btn-color: #F5F2EC; }

.btn .arr { width: 14px; height: 14px; flex-shrink: 0; }

/* Images */
.media {
  position: relative;
  background:
    linear-gradient(135deg, var(--bg-3), var(--bg-2)),
    repeating-linear-gradient(135deg, var(--bg-3) 0, var(--bg-3) 1px, var(--bg-2) 1px, var(--bg-2) 14px);
  border-radius: var(--rad);
  overflow: hidden;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Subtle, cohesive warm-doc grade across all imagery */
  filter: saturate(0.82) contrast(0.96) brightness(0.98) sepia(0.06);
  transition: transform 1.2s ease;
}
.media:hover img { transform: scale(1.015); }
.media::after {
  content: attr(data-caption);
  position: absolute;
  inset: auto 16px 16px auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: rgba(245,242,236,0.85);
  background: rgba(16,15,13,0.45);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.media:hover::after { opacity: 1; }
.media--dark { background: #1B1814; }

/* =========================
   HERO
   ========================= */
.hero {
  padding: clamp(80px, 10vw, 144px) 0 clamp(64px, 8vw, 112px);
}
.hero-top { display: grid; gap: 36px; max-width: 980px; }
.hero h1 .quiet {
  display: block;
  color: var(--mute);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 56ch;
  letter-spacing: -0.005em;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-ctas .helper { font-size: 13px; color: var(--mute); margin-left: 8px; }

.hero-media {
  margin-top: clamp(56px, 7vw, 96px);
  aspect-ratio: 21 / 9;
  border-radius: var(--rad);
}
@media (max-width: 700px) {
  .hero-media { aspect-ratio: 4 / 5; }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(40px, 5vw, 64px);
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip > div {
  background: var(--bg);
  padding: 28px 24px 24px;
}
.trust-strip strong {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  display: block;
  margin-bottom: 6px;
}
.trust-strip span {
  font-size: 13.5px;
  color: var(--mute);
}

/* =========================
   SECTION HEADER
   ========================= */
.s-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: end;
  margin-bottom: clamp(64px, 7vw, 96px);
}
.s-head h2 { max-width: 18ch; }
.s-head p { color: var(--ink-2); max-width: 46ch; margin: 0; font-size: 17px; }
.s-head .label { margin-bottom: 24px; }
@media (max-width: 760px) {
  .s-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

/* =========================
   HOW IT WORKS — chapter list (no numbers)
   ========================= */
.chapters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.chapter {
  background: var(--bg);
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.chapter h3 { font-size: 22px; letter-spacing: -0.015em; }
.chapter p { font-size: 15.5px; color: var(--ink-2); margin: 0; }
.chapter .tag {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

/* =========================
   FILMS — editorial rows
   ========================= */
.film {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
}
.film:last-of-type { border-bottom: 1px solid var(--line); }
.film--rev .film-media { order: 2; }

.film-media { aspect-ratio: 4 / 5; border-radius: var(--rad); }

.film-content { max-width: 520px; }
.film-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 24px;
  align-items: center;
}
.film-meta strong { color: var(--ink); font-weight: 600; }
.film-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }
.film h3 { font-size: clamp(32px, 3.6vw, 48px); letter-spacing: -0.03em; margin-bottom: 18px; }
.film p { font-size: 17px; color: var(--ink-2); max-width: 50ch; }

.film-includes {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.film-includes li { padding-left: 16px; position: relative; }
.film-includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--mute-2);
}

.film-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.film-foot .price {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.film-foot .price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--mute);
  margin-left: 6px;
}

@media (max-width: 800px) {
  .film, .film--rev { grid-template-columns: 1fr; }
  .film--rev .film-media { order: 0; }
  .film-includes { grid-template-columns: 1fr; gap: 8px; }
  .film-media { aspect-ratio: 4 / 3; }
}

/* =========================
   MATERIALS
   ========================= */
.materials {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 104px);
  align-items: start;
}
.materials-media { aspect-ratio: 4 / 5; border-radius: var(--rad); }
.materials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.materials-list li {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  font-size: 17.5px;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  letter-spacing: -0.005em;
}
.materials-list li .meta {
  font-size: 13px;
  color: var(--mute);
  font-feature-settings: "ss01";
}
@media (max-width: 760px) {
  .materials { grid-template-columns: 1fr; }
}

/* =========================
   INTERVIEW (dark)
   ========================= */
.stages {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--dark-line);
}
.stage {
  border-bottom: 1px solid var(--dark-line);
  border-right: 1px solid var(--dark-line);
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}
.stage:nth-child(3n) { border-right: 0; }
.stage .tag {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.stage h3 { color: #F5F2EC; font-size: 24px; }
.stage p { color: rgba(245,242,236,0.7); font-size: 15.5px; margin: 0; }
@media (max-width: 760px) {
  .stages { grid-template-columns: 1fr; }
  .stage { border-right: 0; }
}

/* =========================
   EXAMPLES — cinema grid
   ========================= */
.cinema {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  gap: 12px;
}
.cinema .media { border-radius: var(--rad); }
.cinema .c1 { grid-column: span 8; aspect-ratio: 16 / 10; }
.cinema .c2 { grid-column: span 4; aspect-ratio: 4 / 5; }
.cinema .c3 { grid-column: span 4; aspect-ratio: 1 / 1; }
.cinema .c4 { grid-column: span 4; aspect-ratio: 1 / 1; }
.cinema .c5 { grid-column: span 4; aspect-ratio: 1 / 1; }
@media (max-width: 760px) {
  .cinema { grid-template-columns: repeat(6, 1fr); }
  .cinema .c1, .cinema .c2 { grid-column: span 6; aspect-ratio: 4 / 3; }
  .cinema .c3, .cinema .c4, .cinema .c5 { grid-column: span 2; aspect-ratio: 1 / 1; }
}

/* =========================
   FAQ
   ========================= */
.faq {
  border-top: 1px solid var(--line);
  max-width: 920px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 56px 28px 0;
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  position: relative;
  color: var(--ink);
  transition: color .15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 14px; height: 1.4px;
  background: var(--ink);
  transition: transform .25s, background .15s;
}
.faq summary::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 1.4px; height: 14px;
  background: var(--ink);
  transform: translateY(-50%);
  transition: opacity .25s, background .15s;
}
.faq details[open] summary::before { opacity: 0; }
.faq summary:hover::after,
.faq summary:hover::before { background: var(--accent); }
.faq-body {
  padding: 0 64px 32px 0;
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.55;
  max-width: 70ch;
}

/* =========================
   FOUNDER (text-led, no portrait)
   ========================= */
.founder-section {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.founder-letter {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.founder-letter .label { justify-content: center; }

.founder-quote-lg {
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 36px auto 48px;
  max-width: 22ch;
  color: var(--ink);
  position: relative;
}
.founder-quote-lg .mark {
  color: var(--accent);
  font-weight: 400;
  display: inline-block;
  font-size: 1em;
  line-height: 0.8;
  vertical-align: -0.05em;
}

.founder-body {
  max-width: 58ch;
  margin: 0 auto;
}
.founder-body p {
  font-size: 17.5px;
  color: var(--ink-2);
  text-align: left;
  max-width: none;
}
.founder-body p + p { margin-top: 1em; }

.founder-sig {
  margin-top: 56px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--mute);
  text-align: center;
}
.founder-sig .squiggle { height: 28px; width: 80px; opacity: 0.7; margin-bottom: 4px; }
.founder-sig strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.founder-sig span { font-size: 13.5px; }

/* =========================
   FINAL CTA (dark)
   ========================= */
.final-cta {
  text-align: center;
}
.final-cta h2 {
  max-width: 16ch;
  margin: 0 auto 32px;
}
.final-cta p {
  margin: 0 auto;
  color: rgba(245,242,236,0.75);
  font-size: clamp(17px, 1.4vw, 19px);
  max-width: 54ch;
}
.final-cta .hero-ctas { justify-content: center; margin-top: 40px; }
.final-cta-note {
  margin-top: 36px;
  font-size: 13px;
  color: rgba(245,242,236,0.45);
}

/* =========================
   CONTACT FORM
   ========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
}
.contact-side h2 { margin-bottom: 20px; }
.contact-side p { color: var(--ink-2); max-width: 38ch; }
.contact-meta {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-meta-row {
  background: var(--bg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: baseline;
  font-size: 15.5px;
}
.contact-meta-row .k {
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.02em;
}
.contact-meta-row a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: border-color .15s;
}
.contact-meta-row a:hover { border-color: var(--ink); }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fcfaf5;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
}
.form .field {
  padding: 22px clamp(24px, 3vw, 36px) 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.form .field:nth-child(2n) { border-right: 0; }
.form .field--full {
  grid-column: 1 / -1;
  border-right: 0;
}
.form label {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--mute);
}
.form input,
.form select,
.form textarea {
  font-family: var(--sans);
  font-size: 16px;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--ink);
  width: 100%;
  padding: 0;
}
.form input[type="checkbox"] {
  width: auto;
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--accent);
}
.form textarea {
  min-height: 90px;
  resize: vertical;
  line-height: 1.5;
}
.form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23100F0D' stroke-width='1.2' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.form ::placeholder { color: var(--mute-2); }

.form-foot {
  grid-column: 1 / -1;
  padding: 28px clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.consent {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  color: var(--mute);
  align-items: flex-start;
  line-height: 1.5;
  max-width: 60ch;
}
.consent input { margin-top: 4px; }
.consent a { color: var(--ink); border-bottom: 1px solid var(--line); }

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-success {
  display: none;
  padding: 40px clamp(24px, 3vw, 36px);
  grid-column: 1 / -1;
  text-align: left;
  border-top: 1px solid var(--line);
}
.form-success h4 {
  font-size: 26px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.form-success p { color: var(--mute); margin: 0; }
.form.is-submitted .form-fields,
.form.is-submitted .form-foot { display: none; }
.form.is-submitted .form-success { display: block; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .form .field { border-right: 0; }
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  background: var(--dark);
  color: rgba(245,242,236,0.65);
  padding: clamp(72px, 8vw, 112px) 0 36px;
  font-size: 14.5px;
}
.site-footer .brand { color: #F5F2EC; }
.site-footer .brand-mark { background: #F5F2EC; }
.site-footer .brand-mark::after { background: var(--dark); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 64px;
}
.footer-tag {
  margin: 18px 0 0;
  color: rgba(245,242,236,0.55);
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.5;
}
.footer-col h5 {
  margin: 0 0 16px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.45);
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col a:hover { color: #F5F2EC; }
.footer-bottom {
  border-top: 1px solid rgba(245,242,236,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245,242,236,0.4);
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================
   COOKIE BANNER
   ========================= */
.cookie {
  position: fixed;
  bottom: 20px;
  left: 20px; right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--dark);
  color: #F5F2EC;
  padding: 18px 22px;
  border-radius: 8px;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.cookie.hidden { display: none; }
.cookie p {
  margin: 0; flex: 1; min-width: 240px;
  font-size: 14px;
  color: rgba(245,242,236,0.82);
}
.cookie p a { color: #F5F2EC; border-bottom: 1px solid rgba(245,242,236,0.35); }
.cookie .actions { display: flex; gap: 10px; }
.cookie button {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245,242,236,0.3);
  background: transparent;
  color: #F5F2EC;
  cursor: pointer;
  transition: background .15s;
}
.cookie button:hover { background: rgba(245,242,236,0.08); }
.cookie button.primary {
  background: #F5F2EC;
  color: var(--dark);
  border-color: #F5F2EC;
}
.cookie button.primary:hover { background: #fff; }

/* =========================
   LEGAL PAGES
   ========================= */
.legal { padding: clamp(64px, 8vw, 128px) 0 clamp(80px, 8vw, 128px); }
.legal-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 72px;
  max-width: 1080px;
  margin: 0 auto;
}
.legal-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  font-size: 14px;
}
.legal-toc h5 {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.legal-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.legal-toc a { color: var(--ink-2); transition: color .15s; }
.legal-toc a:hover { color: var(--ink); }

.legal-body h1 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 12px; }
.legal-meta { font-size: 13px; color: var(--mute); margin-bottom: 48px; }
.legal-body h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 56px 0 16px;
  scroll-margin-top: 96px;
}
.legal-body h3 { font-size: 18px; margin: 28px 0 10px; }
.legal-body p, .legal-body li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-body ul, .legal-body ol { padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--ink); border-bottom: 1px solid var(--line); }
.legal-body a:hover { border-color: var(--ink); }

@media (max-width: 800px) {
  .legal-grid { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; }
}

/* =========================
   UTILITIES
   ========================= */
.eyebrow { /* keep selector alive for any leftover */ display: none; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Responsive nav */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .chapters { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .trust-strip { grid-template-columns: 1fr; }
  .chapters { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
