/* =========================================================================
   Zach & Tee (.fit) — warm, wholesome couple/family creator-brand hub
   Fonts: Bricolage Grotesque (display) + Inter (body).
   Palette: cream bg, warm charcoal ink, coral/terracotta accent, soft peach.
   ========================================================================= */

:root {
  --bg:        #fdf8f3;   /* cream / off-white */
  --bg-2:      #f7ede3;   /* warm sand panel band */
  --panel:     #ffffff;   /* cards */
  --panel-2:   #fdf1e8;   /* peach-tinted card hover */
  --line:      rgba(58,42,34,.10);
  --line-2:    rgba(58,42,34,.18);
  --ink:       #2c211c;   /* deep warm charcoal */
  --muted:     #6f5f56;
  --faint:     #9c8b80;
  --accent:    #ec6a4b;   /* coral / terracotta */
  --accent-dk: #d4512f;
  --peach:     #ffd9c2;   /* soft peach secondary */
  --peach-2:   #ffe9dc;
  --on-accent: #ffffff;
  --maxw:      1200px;
  --radius:    22px;
  --radius-sm: 15px;
  --shadow:    0 26px 60px rgba(120,70,45,.16);
  --shadow-sm: 0 12px 30px rgba(120,70,45,.10);
  --ease:      cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: -.5px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.display { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-weight: 800; }
.txt-accent { color: var(--accent); }
.eyebrow {
  font-size: 13px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px;
}
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(32px, 5vw, 56px); line-height: 1.02; letter-spacing: -1px;
}
.section-sub { color: var(--muted); font-size: 18px; margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; letter-spacing: .2px;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 12px 28px rgba(236,106,75,.28); }
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-dk); box-shadow: 0 18px 40px rgba(236,106,75,.4); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #1c1511; }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s, backdrop-filter .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(253,248,243,.85);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(120,70,45,.06);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px; height: 78px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: baseline; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 25px; letter-spacing: -.5px; }
.brand-mark { color: var(--ink); }
.brand-amp { color: var(--accent); margin: 0 3px; }
.brand-accent { color: var(--accent); font-size: .62em; margin-left: 3px; align-self: flex-end; transform: translateY(-1px); }

.nav { margin-left: auto; }
.nav-links { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; align-items: center; }
.nav-links a {
  display: inline-block; padding: 9px 14px; font-size: 14.5px; font-weight: 600;
  letter-spacing: .1px; color: var(--muted); border-radius: 999px; transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--ink); background: var(--peach-2); }
.nav-links a.active { color: var(--accent); }
.nav-cta-mobile { display: none; }

.header-right { display: flex; align-items: center; gap: 16px; }
.header-socials { display: flex; gap: 6px; }
.soc {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--muted); border: 1px solid var(--line-2);
  transition: color .18s, border-color .18s, transform .18s, background .18s;
}
.soc svg { width: 17px; height: 17px; }
.soc:hover { color: var(--on-accent); background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; min-height: 94vh; display: flex; align-items: center;
  padding: 128px 0 76px;
  background: linear-gradient(105deg, rgba(253,248,243,.97) 0%, rgba(253,248,243,.82) 42%, rgba(253,248,243,.28) 72%, rgba(253,248,243,.1) 100%),
              radial-gradient(70% 60% at 12% 30%, rgba(255,217,194,.5), transparent 70%),
              url("../images/hero.0731ff16f32e.jpg");
  background-size: cover; background-position: center 25%;
}
.hero-inner { position: relative; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--ink);
  background: rgba(255,255,255,.7); border: 1px solid var(--line-2);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px; backdrop-filter: blur(4px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(236,106,75,.2); }
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(42px, 7.5vw, 88px); line-height: 1.0; letter-spacing: -2px;
}
.hero h1 .txt-accent { color: var(--accent); }
.hero-sub { font-size: 20px; color: var(--muted); max-width: 540px; margin: 24px 0 34px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: var(--faint); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

/* ---------- Stat band ---------- */
.stat-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 42px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-value { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(34px, 4.6vw, 52px); color: var(--accent); line-height: 1; letter-spacing: -1px; }
.stat-label { margin-top: 8px; font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.stat-note { text-align: center; color: var(--faint); font-size: 12.5px; padding: 0 20px 26px; font-style: italic; }

/* =========================================================================
   FEATURE / PILLAR CARDS
   ========================================================================= */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feat {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
}
.feat:hover { transform: translateY(-6px); border-color: rgba(236,106,75,.35); box-shadow: var(--shadow); }
.feat-ico {
  width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--peach-2); color: var(--accent); margin-bottom: 20px;
}
.feat-ico .feat-icon { width: 28px; height: 28px; }
.feat h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -.3px; margin-bottom: 11px; }
.feat p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.6; }

/* =========================================================================
   SPLIT / STORY
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.split-media .media-tag {
  position: absolute; bottom: 20px; left: 20px; background: var(--accent); color: var(--on-accent);
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .2px;
  padding: 10px 18px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.split-body h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(28px, 4.2vw, 48px); line-height: 1.03; letter-spacing: -1px; margin-bottom: 20px; }
.split-body p { color: var(--muted); font-size: 16.5px; margin: 0 0 18px; }
.split-body .lead { color: var(--ink); font-size: 19px; font-weight: 500; }

.sig { margin-top: 22px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 26px; color: var(--accent); letter-spacing: -.5px; display: inline-block; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.chips li { background: var(--peach-2); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 14px; font-weight: 600; color: var(--ink); }

/* =========================================================================
   TIMELINE  (story page)
   ========================================================================= */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--peach), var(--accent), var(--peach)); }
.tl-item { position: relative; padding: 0 0 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -34px; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--accent); }
.tl-item h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -.3px; margin-bottom: 8px; }
.tl-item p { color: var(--muted); font-size: 16px; margin: 0; }

/* =========================================================================
   JOURNEY DEEP-DIVE  (journey page)
   ========================================================================= */
.jrow { display: grid; grid-template-columns: 46px 1fr; gap: 22px; align-items: start; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 30px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.jrow-num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 34px; color: var(--peach); line-height: 1; }
.jrow .eyebrow { margin-bottom: 8px; }
.jrow h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 24px; letter-spacing: -.4px; margin-bottom: 12px; }
.jrow p { color: var(--muted); font-size: 16px; margin: 0; }
.honest-note {
  max-width: 720px; margin: 44px auto 0; text-align: center; background: var(--peach-2);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 36px;
  color: var(--ink); font-size: 18px; line-height: 1.6; font-weight: 500;
}
.honest-note::before { content: "“"; display: block; font-family: 'Bricolage Grotesque',sans-serif; font-weight: 800; font-size: 54px; color: var(--accent); line-height: .4; margin-bottom: 8px; }

/* =========================================================================
   WATCH — social hub cards + tile grid
   ========================================================================= */
.watch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.watch-card {
  display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 30px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.watch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(236,106,75,.3); }
.watch-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.watch-ico { width: 50px; height: 50px; flex: none; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: var(--peach-2); color: var(--accent); }
.watch-ico svg { width: 24px; height: 24px; }
.watch-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -.3px; }
.watch-handle { color: var(--accent); font-size: 14px; font-weight: 600; }
.watch-card p { color: var(--muted); font-size: 15.5px; margin: 0 0 8px; flex: 1; }
.watch-meta { color: var(--faint); font-size: 13px; font-weight: 600; letter-spacing: .3px; margin: 0 0 20px; }
.watch-card .btn { width: 100%; }

/* tile grid */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tile { position: relative; display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/5; background: var(--panel-2); box-shadow: var(--shadow-sm); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(44,33,28,.55)); opacity: 0; transition: opacity .3s; }
.tile:hover::after { opacity: 1; }
.tile-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(255,255,255,.9); color: var(--ink); font-size: 10.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.tile-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; color: #fff; opacity: .85; transition: opacity .3s, transform .3s; }
.tile:hover .tile-play { opacity: 1; transform: scale(1.08); }
.tile-play svg { width: 46px; height: 46px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); }
.placeholder-note { text-align: center; color: var(--faint); font-size: 13.5px; margin-top: 20px; font-style: italic; }

/* =========================================================================
   COLLAB — audience + offerings
   ========================================================================= */
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.who-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 26px; box-shadow: var(--shadow-sm); transition: border-color .2s, transform .2s var(--ease); }
.who-card:hover { border-color: rgba(236,106,75,.35); transform: translateY(-4px); }
.who-card h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -.3px; margin-bottom: 10px; }
.who-card h4::before { content: "›"; color: var(--accent); margin-right: 8px; font-weight: 900; }
.who-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band { background: linear-gradient(120deg, var(--accent), #f0855f); color: var(--on-accent); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 76px 24px; flex-wrap: wrap; }
.cta-band .eyebrow { color: rgba(255,255,255,.85); }
.cta-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(28px, 4.4vw, 52px); line-height: 1.02; letter-spacing: -1px; }
.cta-title .txt-accent { color: #fff2ec; }
.cta-sub { margin: 16px 0 0; font-weight: 500; font-size: 17px; color: rgba(255,255,255,.92); max-width: 520px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band .btn-dark { background: #fff; color: var(--accent-dk); }
.cta-band .btn-dark:hover { background: #fff4ee; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }

/* =========================================================================
   PAGE HEADER (interior pages)
   ========================================================================= */
.page-hero {
  padding: 156px 0 66px; text-align: center; position: relative;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(65% 90% at 50% 0%, var(--peach-2), transparent 72%);
}
.page-hero h1 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(38px, 6.5vw, 76px); line-height: 1.02; letter-spacing: -1.5px; }
.page-hero p { color: var(--muted); font-size: 19px; max-width: 620px; margin: 18px auto 0; }

/* =========================================================================
   CONTACT / INQUIRY  (collab page)
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--panel); border: 1px solid var(--line-2); color: var(--ink);
  border-radius: 12px; padding: 14px 16px; font: inherit; font-size: 15.5px; transition: border-color .18s, background .18s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: var(--panel-2); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-side { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; height: fit-content; box-shadow: var(--shadow-sm); }
.contact-side h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 24px; letter-spacing: -.4px; margin-bottom: 18px; }
.contact-line { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-of-type { border-bottom: 0; }
.contact-line .ci { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--peach-2); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
.contact-line .ci svg { width: 18px; height: 18px; }
.contact-line .cl { font-size: 11.5px; letter-spacing: .8px; text-transform: uppercase; color: var(--faint); }
.contact-line .cv { font-weight: 700; font-size: 15px; word-break: break-word; }
.side-socials { display: flex; gap: 10px; margin-top: 22px; }
.form-note { color: var(--faint); font-size: 13px; margin-top: 14px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 70px 0 30px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand { font-size: 30px; margin-bottom: 14px; }
.footer-role { color: var(--accent); font-weight: 700; font-size: 15px; letter-spacing: -.2px; margin: 0 0 4px; }
.footer-loc { color: var(--faint); font-size: 14px; margin: 0 0 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-col h4 { font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { color: var(--muted); font-size: 15px; transition: color .18s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); }
.footer-bottom p { color: var(--faint); font-size: 13.5px; margin: 0; }

/* =========================================================================
   REVEAL ANIMATION
   ========================================================================= */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1000px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-media { order: 0; }
  .card-grid.cols-3, .who-grid, .watch-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .nav { position: fixed; top: 78px; left: 0; right: 0; }
  .nav-links {
    flex-direction: column; align-items: stretch; gap: 4px; background: rgba(253,248,243,.98);
    backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); padding: 14px 20px 22px;
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none; transition: max-height .3s var(--ease), opacity .25s, padding .3s;
  }
  .nav-links.open { max-height: 480px; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 12px; font-size: 16px; }
  .nav-cta-mobile { display: block; margin-top: 8px; }
  .nav-cta-mobile .btn { width: 100%; }
  .nav-cta { display: none; }
  .header-socials { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 72px 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .card-grid, .card-grid.cols-3, .who-grid, .watch-grid { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 90vh; }
  .stat { padding: 28px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .jrow { grid-template-columns: 1fr; gap: 8px; }
}
