/* ===========================================================
   READI/STEADI — Light editorial film studio
   Palette: warm cream, ink black, cinematic rust, soft gold
   Type:    DM Serif Display (display) + Inter (body + UI)
   =========================================================== */

:root {
  /* Surfaces */
  --bg:           #f4efe6;
  --bg-2:         #ece5d6;
  --panel:        #ffffff;
  --panel-soft:   #faf6ec;
  --border:       #d8d0bf;
  --border-2:     #c2b9a4;

  /* Ink */
  --ink:          #1a1612;
  --ink-2:        #2e2823;
  --text:         #3d362f;
  --muted:        #807870;
  --dim:          #ada59a;

  /* Accents */
  --rust:         #b3402c;          /* cinematic, used as primary accent */
  --rust-soft:    #f1ddd4;
  --gold:         #c89856;
  --gold-soft:    #f3e6cc;
  --film:         #161310;          /* near-black, for video card frames */

  /* Geometry */
  --radius:       12px;
  --radius-lg:    24px;
  --radius-pill:  999px;

  --shadow-sm:    0 1px 2px rgba(26,22,18,0.04), 0 1px 3px rgba(26,22,18,0.04);
  --shadow:       0 6px 30px -8px rgba(26,22,18,0.12);
  --shadow-lg:    0 30px 60px -22px rgba(26,22,18,0.25);

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Lenis smooth scroll housekeeping */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* ===== Selection ===== */
::selection { background: var(--ink); color: var(--bg); }

/* ===== Grain overlay (very subtle, gives the bg a filmic warmth) ===== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10  0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ===== Soft background blooms ===== */
.bloom {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bloom .b {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
}
.bloom .b1 { top: -8%; left: -8%; width: 38rem; height: 38rem; background: radial-gradient(closest-side, #ecd5b8, transparent 70%); }
.bloom .b2 { top: 35%; right: -12%; width: 34rem; height: 34rem; background: radial-gradient(closest-side, #e8c7b3, transparent 70%); }
.bloom .b3 { bottom: -10%; left: 30%; width: 30rem; height: 30rem; background: radial-gradient(closest-side, #d8c9a8, transparent 70%); }

/* ===== Container ===== */
.container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container.narrow { max-width: 880px; }

main { position: relative; z-index: 2; }

/* ===========================================================
   TYPOGRAPHY
   =========================================================== */
.display, .display * {
  font-family: 'DM Serif Display', 'Times New Roman', Times, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.italic { font-style: italic; }
.rust-text { color: var(--rust); }
.gold-text { color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow .bar {
  width: 1.75rem; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 4px rgba(179,64,44,0.14);
}

/* Number cue */
.num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--rust);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.num::before {
  content: "";
  width: 0.7rem;
  height: 1px;
  background: var(--rust);
  display: inline-block;
}

/* ===========================================================
   WORDMARK  (READI/STEADI)
   The slash is a film-slate divider.
   =========================================================== */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.05em;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark .slash {
  color: var(--rust);
  font-weight: 600;
  padding: 0 0.05em;
}
.wordmark .small {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 0.6rem;
  letter-spacing: 0.18em;
}

/* ===========================================================
   NAVBAR (floating pill)
   =========================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-top: 1.25rem;
  transition: padding 0.4s var(--ease);
}
.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem 0.7rem 1.5rem;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease);
}
.navbar.scrolled .nav-shell { box-shadow: var(--shadow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rust); }

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem !important;
  background: var(--ink) !important;
  color: var(--bg) !important;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: background 0.25s, transform 0.25s;
}
.nav-cta:hover { background: var(--rust) !important; transform: translateY(-1px); }
.nav-cta .arrow { transition: transform 0.25s var(--ease); }
.nav-cta:hover .arrow { transform: translateX(2px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  padding: 0.25rem;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem 1rem; border-radius: 10px; }
  .nav-links a:hover { background: var(--panel-soft); }
  .nav-cta { display: inline-block; margin: 0.4rem; text-align: center; }
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
  overflow: hidden;
  isolation: isolate;
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 12px 30px -12px rgba(26,22,18,0.45);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rust);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(179,64,44,0.45); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: var(--panel); border-color: var(--ink); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
}
.hero .container { position: relative; }

.hero-eyebrow { margin-bottom: 2rem; }

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 9vw, 7.5rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.hero-title em { font-style: italic; color: var(--rust); }

.hero-row {
  display: block;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  margin-top: 4.5rem;
  max-width: 38rem;
}
.hero-meta .lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
}
.hero-meta .lede strong { color: var(--ink); font-weight: 500; }
.hero-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Reel: a single, prominent 16:9 video card right below the hero copy */
.hero-reel {
  margin-top: 5rem;
  position: relative;
}
.reel-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%),
    linear-gradient(180deg, #25201c 0%, #161310 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.reel-card:hover { transform: translateY(-3px); box-shadow: 0 40px 80px -30px rgba(26,22,18,0.35); }
/* Film-strip frame edges (top + bottom subtle dotted line) */
.reel-card::before, .reel-card::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 14px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1.5px, transparent 2px);
  background-size: 22px 14px;
  background-repeat: repeat-x;
}
.reel-card::before { top: 0; }
.reel-card::after { bottom: 0; }

.reel-inner {
  position: absolute;
  inset: 14px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(179,64,44,0.18), transparent 70%),
    linear-gradient(135deg, #1f1a16 0%, #0f0c0a 100%);
}
.reel-play {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(244,239,230,0.96);
  display: grid; place-items: center;
  color: var(--ink);
  transition: transform 0.35s var(--ease), background 0.3s;
  border: 1px solid rgba(255,255,255,0.18);
}
.reel-card:hover .reel-play { transform: scale(1.08); background: var(--rust); color: var(--bg); }
.reel-play svg { margin-left: 4px; }

.reel-caption {
  position: absolute;
  bottom: 28px; left: 28px;
  color: rgba(244,239,230,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.reel-caption .timecode {
  color: var(--gold);
  margin-left: 0.75rem;
}
.reel-status {
  position: absolute;
  top: 28px; right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(244,239,230,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.reel-status .rec {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 4px rgba(179,64,44,0.2);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 4px rgba(179,64,44,0.2); }
  50%     { opacity: 0.6; box-shadow: 0 0 0 9px rgba(179,64,44,0.05); }
}
.reel-corners {
  position: absolute;
  inset: 22px;
  pointer-events: none;
}
.reel-corners span {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid rgba(244,239,230,0.4);
}
.reel-corners span:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.reel-corners span:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.reel-corners span:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.reel-corners span:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* Hero side notes (mood text scattered around the hero) */
.hero-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-notes .note {
  position: absolute;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  will-change: transform;
}
.hero-notes .note::before {
  content: "";
  width: 0.7rem; height: 1px;
  background: var(--muted);
  display: inline-block;
}
.hero-notes .n1 { top: 8rem;   right: 3rem;  }
.hero-notes .n2 { top: 50%;    right: 4rem; transform: translateY(-50%); }
.hero-notes .n3 { bottom: 8rem; right: 3rem; }
@media (max-width: 1200px) { .hero-notes .note { display: none; } }

/* ===========================================================
   MARQUEE STRIP
   =========================================================== */
.marquee {
  position: relative;
  z-index: 2;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee-track .item {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink-2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.marquee-track .item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rust);
  display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===========================================================
   SECTION FRAMING
   =========================================================== */
.section {
  position: relative;
  padding: 7rem 0;
  z-index: 2;
}
.section.tight { padding: 4rem 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; gap: 1rem; } }
.section-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
.section-head h2 em { font-style: italic; color: var(--rust); }
.section-head .kicker { color: var(--muted); font-size: 0.95rem; max-width: 28rem; margin-top: 0.5rem; }

/* ===========================================================
   SERVICES (two large feature cards)
   =========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.service-card .badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--rust-soft);
  align-self: flex-start;
}
.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 400;
}
.service-card h3 em { font-style: italic; color: var(--rust); }
.service-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.service-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.4rem;
}
.service-card .feature-list li {
  font-size: 0.9rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.service-card .feature-list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}
.service-card .visit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
}
.service-card .visit:hover { color: var(--rust); }
.service-card .visit .arrow { transition: transform 0.3s var(--ease); }
.service-card .visit:hover .arrow { transform: translate(3px, -3px); }

/* ===========================================================
   FEATURED FILMS (portfolio grid)
   =========================================================== */
.films-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
@media (max-width: 820px) { .films-grid { grid-template-columns: 1fr; } }

.film-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--film);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.film-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.film-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 50% 40%, rgba(255,255,255,0.06), transparent 70%),
    linear-gradient(160deg, var(--g1, #2c2520) 0%, var(--g2, #0f0c0a) 100%);
  display: grid;
  place-items: center;
}
.film-thumb::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(244,239,230,0.12);
  border-radius: 10px;
  pointer-events: none;
}
.film-thumb .play-mini {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(244,239,230,0.94);
  color: var(--ink);
  display: grid; place-items: center;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s;
}
.film-card:hover .play-mini { transform: scale(1.1); background: var(--rust); color: var(--bg); }
.film-thumb .play-mini svg { margin-left: 3px; }

.film-meta {
  padding: 1.25rem 1.4rem 1.4rem;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.film-meta .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.film-meta .category {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
}
.film-meta .year {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
}
.film-meta h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}
.film-meta .runtime {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  letter-spacing: 0.04em;
}

/* Vary thumb tints per card for visual rhythm before real footage is dropped in */
.film-card.tone-warm    .film-thumb { --g1:#3a261c; --g2:#1b110b; }
.film-card.tone-amber   .film-thumb { --g1:#36281a; --g2:#1a120a; }
.film-card.tone-cool    .film-thumb { --g1:#1f2128; --g2:#0c0e14; }
.film-card.tone-bronze  .film-thumb { --g1:#322014; --g2:#180e08; }

/* ===========================================================
   APPROACH (three-step process)
   =========================================================== */
.approach {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) { .approach { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 2.5rem 2.25rem 2.75rem;
  border-right: 1px solid var(--border);
  background: var(--bg);
  transition: background 0.4s var(--ease);
}
.step:last-child { border-right: 0; }
@media (max-width: 900px) {
  .step { border-right: 0; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: 0; }
}
.step:hover { background: var(--panel-soft); }
.step .step-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--rust);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  display: block;
}
.step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.step p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

/* ===========================================================
   MANIFESTO / WE BELIEVE
   =========================================================== */
.manifesto {
  position: relative;
  padding: 8rem 0 9rem;
  z-index: 2;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .manifesto-grid { grid-template-columns: 1fr; gap: 2rem; } }
.manifesto-side { position: sticky; top: 9rem; }
@media (max-width: 900px) { .manifesto-side { position: relative; top: 0; } }
.manifesto-side h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 1rem;
}
.manifesto-side h2 em { font-style: italic; color: var(--rust); }

.manifesto-lines {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.25;
  color: var(--ink-2);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.manifesto-lines p { padding: 0.4rem 0; }
.manifesto-lines em { font-style: italic; color: var(--rust); }

/* Reveal helpers (driven by GSAP; CSS fallback below) */
[data-reveal] { opacity: 0; transform: translate3d(0, 24px, 0); }
.no-js [data-reveal] { opacity: 1; transform: none; }
.is-revealed { opacity: 1; transform: none; }
[data-split] .char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.6em, 0);
}
.no-js [data-split] .char { opacity: 1; transform: none; }

/* ===========================================================
   STATS
   =========================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 800px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 2.25rem 1.5rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
@media (max-width: 800px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}
.stat .value {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.stat .value .suffix { font-size: 0.55em; color: var(--rust); font-style: italic; }
.stat .label {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===========================================================
   FAT CTA
   =========================================================== */
.cta-section {
  position: relative;
  padding: 8rem 0;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 25% 20%, rgba(179,64,44,0.35), transparent 60%),
    radial-gradient(60% 60% at 80% 80%, rgba(200,152,86,0.25), transparent 60%);
  pointer-events: none;
}
.cta-section .eyebrow { color: rgba(244,239,230,0.6); }
.cta-section .eyebrow .dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(200,152,86,0.2); }
.cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.75rem, 7vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 1.75rem 0;
  color: var(--bg);
}
.cta-section h2 em { font-style: italic; color: var(--gold); }
.cta-section p { max-width: 40rem; color: rgba(244,239,230,0.78); font-size: 1.05rem; }
.cta-section .actions { display: flex; gap: 0.75rem; margin-top: 2.25rem; flex-wrap: wrap; }
.cta-section .btn-primary { background: var(--bg); color: var(--ink); box-shadow: 0 14px 30px -10px rgba(0,0,0,0.6); }
.cta-section .btn-primary::before { background: var(--gold); }
.cta-section .btn-primary:hover { color: var(--ink); }
.cta-section .btn-ghost {
  border-color: rgba(244,239,230,0.3);
  color: rgba(244,239,230,0.92);
}
.cta-section .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(244,239,230,0.6); color: var(--bg); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
.footer-grid h5 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.55rem; }
.footer-grid a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--rust); }
.footer-blurb {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 26ch;
  margin-top: 1rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  color: var(--muted);
  font-size: 0.84rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom .legal-links a {
  color: var(--ink-2);
  text-decoration: none;
  margin-left: 1.25rem;
}
.footer-bottom .legal-links a:hover { color: var(--rust); }

/* ===========================================================
   CONTACT PAGE
   =========================================================== */
.contact-shell {
  padding: 9rem 0 5rem;
  position: relative;
}
.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-intro h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  margin: 1.25rem 0 1.5rem;
}
.contact-intro h1 em { font-style: italic; color: var(--rust); }
.contact-intro p { max-width: 32rem; margin: 0 auto; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-stack { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  display: flex;
  gap: 1rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.info-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.info-card .ic {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--rust-soft);
  color: var(--rust);
  display: grid; place-items: center;
}
.info-card .ic.gold { background: var(--gold-soft); color: #8a6a30; }
.info-card .ic.cool { background: #e5e3dc; color: var(--ink-2); }
.info-card h4 { font-size: 1rem; color: var(--ink); margin-bottom: 0.25rem; font-weight: 600; }
.info-card p { font-size: 0.92rem; color: var(--muted); }
.info-card a { color: var(--rust); text-decoration: none; font-weight: 500; font-size: 0.92rem; }
.info-card a:hover { text-decoration: underline; }

.form-shell {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 0.45rem;
}
.field label .req { color: var(--rust); margin-left: 0.15rem; }
.field label .opt { color: var(--dim); font-weight: 400; margin-left: 0.25rem; }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(179,64,44,0.15);
  background: var(--panel);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.5; }
.field .err { color: var(--rust); font-size: 0.82rem; margin-top: 0.35rem; min-height: 1.05rem; }
.field.bad input, .field.bad select, .field.bad textarea {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(179,64,44,0.15);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--bg);
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.3s, box-shadow 0.3s;
  box-shadow: 0 12px 30px -12px rgba(26,22,18,0.55);
}
.btn-submit:hover { background: var(--rust); transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(179,64,44,0.55); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-foot {
  text-align: center;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}
.form-foot a { color: var(--ink-2); }

.form-error {
  background: var(--rust-soft);
  border: 1px solid rgba(179,64,44,0.3);
  color: var(--rust);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.success-card {
  text-align: center;
  padding: 3rem 2rem;
}
.success-card .check {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--rust-soft);
  border: 1px solid rgba(179,64,44,0.25);
  color: var(--rust);
  margin: 0 auto 1.5rem;
  display: grid; place-items: center;
}
.success-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.success-card .ticket-no {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  color: var(--rust);
  font-weight: 600;
}
.success-card p { color: var(--muted); margin-bottom: 1rem; }
.success-card .restart {
  margin-top: 1.5rem;
  padding: 0.75rem 1.4rem;
  background: var(--bg);
  border: 1px solid var(--border-2);
  color: var(--ink);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  transition: background 0.2s, border-color 0.2s;
}
.success-card .restart:hover { background: var(--panel-soft); border-color: var(--ink); }

.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(244,239,230,0.35);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===========================================================
   LEGAL PAGES
   =========================================================== */
.legal-shell { padding: 9rem 0 5rem; position: relative; }
.legal { max-width: 760px; margin: 0 auto; }
.legal h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.legal .updated { color: var(--dim); font-size: 0.88rem; margin-bottom: 0.5rem; }
.legal .companion { color: var(--muted); font-size: 0.92rem; margin-bottom: 2.5rem; }
.legal .companion a { color: var(--rust); }
.legal h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--ink);
  font-weight: 400;
  margin-top: 3rem;
  letter-spacing: -0.01em;
}
.legal h3 { margin-top: 1.75rem; font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.legal p, .legal li {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-top: 0.75rem;
}
.legal ul { margin-left: 1.25rem; }
.legal a { color: var(--rust); }

/* ===========================================================
   MISC
   =========================================================== */
.icon { width: 20px; height: 20px; stroke-width: 1.75; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-reveal], [data-split] .char { opacity: 1 !important; transform: none !important; }
  .marquee-track, .reel-status .rec { animation: none !important; }
}
