/* =========================================================
   THE PARENTING RESET — coming soon
   Brand: white / black / neon yellow-green / red
   ========================================================= */

:root {
  /* Brand tokens (locked) */
  --bg: #ffffff;
  --bg-alt: #fafaf8;
  --ink: #111111;
  --ink-2: #2a2a2a;
  --muted: #6e6e6e;
  --faint: #b8b8b8;
  --rule: #e7e6e2;
  --neon: #ccff00;
  --neon-deep: #b8e600;
  --red: #cc2222;

  /* Fluid type */
  --fs-eyebrow: clamp(11px, 0.78vw + 0.5rem, 13px);
  --fs-body: clamp(16px, 0.45vw + 0.95rem, 18px);
  --fs-lead: clamp(18px, 0.55vw + 1rem, 21px);
  --fs-h3: clamp(20px, 0.9vw + 1rem, 26px);
  --fs-h2: clamp(28px, 2vw + 1rem, 44px);
  --fs-h1: clamp(44px, 6.4vw + 1rem, 124px);
  --fs-quote: clamp(28px, 2.4vw + 1rem, 52px);

  /* Spacing */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-14: 112px;
  --sp-20: 160px;

  --container: min(1240px, 92vw);
  --container-narrow: min(880px, 92vw);

  --easing: cubic-bezier(.2,.7,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.55;
  font-feature-settings: 'ss01','cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--neon); color: var(--ink); }

.display { font-family: 'Work Sans', 'Inter', sans-serif; letter-spacing: -0.025em; line-height: 0.95; font-weight: 700; }
.italic { font-style: italic; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--easing), background .25s var(--easing);
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav-inner {
  width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand .logo { width: 28px; height: 28px; }
.brand-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.brand-name .dim { color: var(--muted); font-weight: 500; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--ink); color: #fff;
  font-weight: 600; font-size: 13px;
  border-radius: 999px;
  transition: transform .2s var(--easing), background .25s var(--easing);
}
.nav-cta:hover { background: #000; transform: translateY(-1px); }
.nav-cta .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--neon); box-shadow: 0 0 0 4px rgba(204,255,0,.18); }

/* ============== HERO ============== */
.hero {
  padding: clamp(48px, 6vw, 96px) 0 clamp(60px, 7vw, 120px);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero-grid {
  width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 80px);
  align-items: center;
}
.hero-left { max-width: 720px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: var(--sp-4);
  padding: 8px 14px 8px 8px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-2);
}
.hero-eyebrow .chip { background: var(--red); color: #fff; padding: 4px 10px; border-radius: 999px; font-size: 11px; letter-spacing: 0.12em; font-weight: 700; }
.hero-eyebrow .pulse { width: 8px; height: 8px; border-radius: 999px; background: var(--red); box-shadow: 0 0 0 4px rgba(204,34,34,.16); animation: pulse 2.4s var(--easing) infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(204,34,34,.16); }
  50% { box-shadow: 0 0 0 8px rgba(204,34,34,.04); }
}
.hero h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 var(--sp-4);
  color: var(--ink);
}
.hero h1 .hl {
  background: linear-gradient(transparent 62%, var(--neon) 62%, var(--neon) 96%, transparent 96%);
  padding: 0 0.08em;
  position: relative;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.02em;
  height: 3px;
  background: var(--red);
}
.hero h1 .it { font-family: 'Fraunces','Georgia',serif; font-style: italic; font-weight: 400; letter-spacing: -0.02em; }
.hero-sub {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 var(--sp-6);
  line-height: 1.45;
}
.hero-sub strong { font-weight: 600; color: var(--ink); }

.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: var(--sp-6); }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-weight: 600; font-size: 15px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .2s var(--easing), background .25s var(--easing), border-color .25s var(--easing), color .25s var(--easing);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: #000; transform: translateY(-2px); }
.btn-primary svg { transition: transform .2s var(--easing); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); position: relative; }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-ghost::before {
  content: "";
  position: absolute;
  left: -1.5px; top: -1.5px; bottom: -1.5px;
  width: 6px;
  background: var(--red);
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.hero-meta {
  display: flex; align-items: center; gap: 18px;
  font-size: 13px; color: var(--muted);
}
.hero-meta .stripe {
  width: 36px; height: 4px;
  background: linear-gradient(to right, var(--neon) 0 70%, var(--red) 70% 100%);
}

/* Book hero column */
.hero-book {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  perspective: 1400px;
}
.hero-book::before {
  content: ""; position: absolute; inset: -10% -8%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(204,255,0,.22), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(204,34,34,.12), transparent 60%);
  z-index: 0;
  filter: blur(6px);
}
.hero-book img {
  position: relative; z-index: 1;
  max-height: 680px; width: auto;
  filter: drop-shadow(30px 40px 60px rgba(0,0,0,.35)) drop-shadow(0 4px 14px rgba(0,0,0,.18)) drop-shadow(0 0 40px rgba(204,255,0,.10));
  transform: rotate(-3deg);
  transition: transform .8s var(--easing);
}
.hero-book:hover img { transform: rotate(-2deg) translateY(-4px); }
.hero-tape {
  position: absolute; left: -18px; top: 14%;
  background: var(--red); color: #fff;
  padding: 6px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  transform: rotate(-92deg);
  transform-origin: left top;
  z-index: 2;
}

/* ============== STRIP ============== */
.strip {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--neon);
}
.strip-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.strip-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
}
.strip-item .dot { width: 8px; height: 8px; background: var(--neon); border-radius: 999px; }
.strip-item .it { font-family: 'Fraunces',serif; font-style: italic; font-weight: 400; color: var(--neon); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== SECTION SHELL ============== */
.section { padding: clamp(72px, 9vw, 144px) 0; }
.section.alt { background: var(--bg-alt); }
.section-head {
  width: var(--container); margin: 0 auto var(--sp-10);
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: end;
}
.section-head h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 12px 0 0;
  max-width: 22ch;
}
.section-head h2 .it { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }
.section-head .meta { font-size: 13px; color: var(--muted); text-align: right; }
.section-head .meta b { color: var(--ink); display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; }

/* ============== PROMISE ============== */
.promise { width: var(--container); margin: 0 auto; }
.promise-grid {
  display: grid; gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
}
.promise-card {
  background: var(--bg);
  padding: clamp(28px, 2.4vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 260px;
  position: relative;
}
.promise-card .num {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.promise-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h3);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 4px 0;
}
.promise-card h3 .mark { background: var(--neon); padding: 0 6px; }
.promise-card p { color: var(--muted); margin: 0; line-height: 1.6; }
.promise-card .corner {
  position: absolute; right: 18px; top: 18px;
  width: 10px; height: 10px; background: var(--neon);
}
.promise-card:nth-child(2) .corner { background: var(--red); }
.promise-card .num { color: var(--red); }

/* ============== QUOTES ============== */
.quotes { width: var(--container); margin: 0 auto; }
.quote-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(12, 1fr);
}
.q {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(32px, 3vw, 56px);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 24px;
  min-height: 260px;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing);
}
.q:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -20px rgba(0,0,0,.18); }
.q .mark-icon { font-family: 'Fraunces', serif; font-size: 72px; line-height: 0.4; color: var(--neon-deep); height: 24px; }
.q blockquote {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-quote);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.q blockquote .hl { background: var(--neon); padding: 0 0.08em; }
.q blockquote .it { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; letter-spacing: -0.02em; }
.q .src { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.q.large { grid-column: span 7; }
.q.med { grid-column: span 5; }
.q.full { grid-column: span 12; background: var(--ink); color: #fff; border-color: var(--ink); }
.q.full blockquote { color: #fff; font-size: clamp(36px, 3.5vw + 1rem, 76px); line-height: 1.02; max-width: 22ch; }
.q.full blockquote .hl { background: var(--neon); color: var(--ink); }
.q.full .src { color: var(--faint); }
.q.full .mark-icon { color: var(--neon); }
.q.small { grid-column: span 6; }

/* Dark quote variant — alternates with white cards */
.q.q--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.q.q--dark blockquote { color: #fff; }
.q.q--dark blockquote .hl { background: var(--neon); color: var(--ink); }
.q.q--dark blockquote .it { color: #fff; }
.q.q--dark .src { color: var(--faint); }
.q.q--dark .mark-icon { color: var(--neon); }

/* ============== FRAMEWORK ============== */
.framework { width: var(--container); margin: 0 auto; }
.fw-intro {
  max-width: 64ch;
  font-size: var(--fs-lead);
  color: var(--ink-2);
  margin: 0 0 var(--sp-8);
}
.fw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
}
.fw-card {
  background: var(--bg);
  padding: clamp(28px, 2.4vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
  position: relative;
}
.fw-card .step {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--ink);
  background: var(--neon);
  display: inline-block;
  padding: 4px 8px;
  align-self: flex-start;
  border-radius: 2px;
}
.fw-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700; font-size: 28px;
  letter-spacing: -0.018em; line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.fw-card--identity .step {
  color: #fff;
  background: var(--red);
}
.fw-card--identity h3 { color: var(--red); }
.fw-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0; }
.fw-card .pillar-mark {
  margin-top: auto;
  width: 36px; height: 4px; background: var(--neon);
  position: relative;
}
.fw-card .pillar-mark--red {
  background: var(--red);
}
.fw-card.active { background: var(--ink); color: #fff; }
.fw-card.active h3 { color: var(--neon); }
.fw-card.active p { color: rgba(255,255,255,.7); }
.fw-card.active .step { color: var(--ink); background: var(--neon); }
.fw-card.active.fw-card--identity .step { color: #fff; background: var(--red); }
.fw-card.active.fw-card--identity h3 { color: var(--red); }

/* ============== AUTHOR ============== */
.author { width: var(--container); margin: 0 auto; }
.author-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 72px); align-items: start;
}
.author-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(28px, 2.4vw, 40px);
  position: sticky; top: 100px;
}
.author-card .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--neon); color: var(--ink);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.author-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700; font-size: 26px;
  margin: 0 0 6px; letter-spacing: -0.02em;
}
.author-card .role { color: var(--muted); font-size: 14px; margin: 0 0 18px; }
.author-card .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.author-card .stat { padding: 14px; background: var(--bg-alt); border-radius: 12px; }
.author-card .stat .n { font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: 26px; letter-spacing: -0.02em; }
.author-card .stat .l { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.author-prose p { font-size: var(--fs-lead); color: var(--ink-2); line-height: 1.55; margin: 0 0 18px; max-width: 60ch; }
.author-prose .sig {
  margin-top: var(--sp-6);
  display: flex; flex-direction: column; gap: 4px;
}
.author-prose .sig .name {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 30px; letter-spacing: -0.02em;
}
.author-prose .sig .who { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }

.author-prose .pull {
  border-left: 3px solid var(--neon);
  padding: 6px 0 6px 20px;
  margin: 28px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(22px, 1.4vw + 0.8rem, 28px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 36ch;
}

/* ============== EMAIL ============== */
.cta { background: var(--ink); color: #fff; padding: clamp(80px, 9vw, 140px) 0; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(204,255,0,.10), transparent 35%),
    radial-gradient(circle at 88% 80%, rgba(204,34,34,.10), transparent 40%);
  pointer-events: none;
}
.cta-inner { width: var(--container); margin: 0 auto; position: relative; z-index: 2; text-align: center; }
.cta .eyebrow { color: var(--neon); }
.cta h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw + 1rem, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 18px auto 22px;
  max-width: 18ch;
}
.cta h2 .hl { background: var(--neon); color: var(--ink); padding: 0 0.08em; }
.cta h2 .it { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }
.cta p { max-width: 56ch; margin: 0 auto var(--sp-6); color: rgba(255,255,255,.78); font-size: var(--fs-lead); line-height: 1.5; }

form.email-form {
  display: flex; gap: 10px;
  max-width: 540px; margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 6px;
  transition: border-color .25s var(--easing), background .25s var(--easing);
}
form.email-form:focus-within { border-color: var(--neon); background: rgba(255,255,255,.08); }
form.email-form input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 12px 18px; color: #fff; font-size: 15px;
  font-family: inherit;
}
form.email-form input::placeholder { color: rgba(255,255,255,.45); }
form.email-form button {
  background: var(--neon); color: var(--ink);
  padding: 12px 22px;
  font-weight: 700; font-size: 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: transform .2s var(--easing), background .25s var(--easing), box-shadow .25s var(--easing);
  box-shadow: inset 0 0 0 1.5px transparent;
}
form.email-form button:hover { background: #d9ff33; transform: translateY(-1px); box-shadow: inset 0 0 0 1.5px var(--red); }
.cta .micro { color: rgba(255,255,255,.55); font-size: 12.5px; margin-top: 16px; letter-spacing: 0.02em; }
.thanks { display: none; margin-top: 22px; color: var(--neon); font-weight: 600; }
.thanks.show { display: block; }

/* ============== FOOTER ============== */
footer.foot {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: var(--sp-8) 0 var(--sp-6);
}
.foot-inner {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
}
.foot-brand .logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-brand .logo-row .brand-name { font-size: 16px; }
.foot-brand p { color: var(--muted); max-width: 38ch; margin: 0 0 22px; font-size: 14px; line-height: 1.5; }
.foot-brand .socials { display: flex; gap: 10px; }
.foot-brand .socials a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border: 1px solid var(--rule); border-radius: 999px;
  font-size: 13px; font-weight: 500;
  transition: border-color .2s var(--easing), background .25s var(--easing);
}
.foot-brand .socials a:hover { border-color: var(--ink); background: var(--bg-alt); }
.foot-col h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin: 4px 0 16px; font-weight: 700;
}
.foot-col a { display: block; font-size: 14px; padding: 4px 0; color: var(--ink-2); transition: color .2s var(--easing); }
.foot-col a:hover { color: var(--ink); }
.foot-bottom {
  width: var(--container); margin: var(--sp-6) auto 0;
  padding-top: 22px;
  border-top: 2px solid var(--ink);
  position: relative;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: var(--muted);
}
.foot-bottom::before {
  content: "";
  position: absolute;
  left: 0; top: -2px;
  width: 64px; height: 2px;
  background: var(--red);
}
.foot-bottom .ded { color: var(--ink-2); font-family: 'Fraunces', serif; font-style: italic; }

/* ============== SCROLL REVEAL ============== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .9s var(--easing), transform .9s var(--easing); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track { animation: none; }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-book { order: -1; }
  .hero-book img { max-height: 460px; transform: rotate(-2deg); }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-card { min-height: 0; }
  .fw-grid { grid-template-columns: 1fr 1fr; }
  .q.large, .q.med, .q.small { grid-column: span 12; }
  .author-grid { grid-template-columns: 1fr; }
  .author-card { position: static; }
  .foot-inner { grid-template-columns: 1fr; gap: 36px; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .meta { text-align: left; }
}
@media (max-width: 600px) {
  .fw-grid { grid-template-columns: 1fr; }
  .hero-tape { display: none; }
  form.email-form { flex-direction: column; border-radius: 18px; padding: 12px; }
  form.email-form input { padding: 12px 14px; }
  form.email-form button { width: 100%; padding: 14px; }
  .nav-cta { padding: 8px 12px; font-size: 12px; }
  .brand-name .dim { display: none; }
}
