/* ============================================================
   CINEMATIC SCROLL WEBSITE  ::  engine stylesheet
   Project Baseline web deliverable.  Client: The Maven Method.

   Skinned to the Todd-approved hero treatment (_hero-v2):
   Fraunces editorial serif, Clash Display grotesque punch face,
   General Sans body, warm-and-light palette, accent red used
   sparingly, left-aligned scene text. The frame-sequence engine
   structure (loader, stage, canvas, scrub) is the PB template.
   ============================================================ */

/* ---------- BRAND TOKENS (the per-client block) ---------- */
:root {
  --red:        #C8102E;   /* accent red, used sparingly */
  --red-deep:   #A90D26;
  --paper:      #F4EEE2;   /* warm light section base */
  --stone:      #E8DECC;   /* warm-stone panel */
  --warm-white: #F3ECDD;   /* text on dark */
  --taupe:      #BFB09A;
  --ink:        #16110C;   /* near-black warm ink */
  --ink-2:      #1E1810;
  --text-dark:  #29211B;
  --text-mute:  #6E6051;
  --hair:       rgba(243,236,221,.14);

  --font-serif:   "Fraunces", Georgia, serif;
  --font-punch:   "Clash Display", "Arial Narrow", sans-serif;
  --font-body:    "General Sans", -apple-system, system-ui, sans-serif;

  --ease:   cubic-bezier(.22,.61,.36,1);
  --shell:  min(1180px, 92vw);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--ink);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

.serif {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

/* ============================================================
   1. LOADING SCREEN
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 120;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; width: min(360px, 78vw); }
.loader__brand {
  font-weight: 350;
  font-size: clamp(1.9rem, 4.6vw, 2.7rem);
  letter-spacing: -.01em;
  color: var(--warm-white);
}
.loader__bar {
  margin: 1.5rem 0 .75rem;
  height: 2px; width: 100%;
  background: var(--hair);
  overflow: hidden;
}
.loader__bar span {
  display: block; height: 100%; width: 0%;
  background: var(--red);
  transition: width .35s var(--ease);
}
.loader__pct {
  font-size: .64rem; letter-spacing: .3em;
  color: rgba(243,236,221,.5); text-transform: uppercase;
}

/* ============================================================
   2. SCROLL PROGRESS BAR
   ============================================================ */
.scrollbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: 3px; background: rgba(243,236,221,.06);
}
.scrollbar span {
  display: block; height: 100%; width: 0%;
  background: var(--red);
}

/* ============================================================
   3. FIXED HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px clamp(1.5rem, 4vw, 3.5rem);
  transition: background .4s var(--ease), padding .4s var(--ease);
}
.site-header.is-solid {
  background: rgba(22,17,12,.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding-top: 18px; padding-bottom: 18px;
}
.site-header__brand { display: flex; align-items: center; gap: 13px; }
.site-header__brand img { height: 30px; width: auto; }
.site-header__name {
  font-weight: 600; font-size: 16px; letter-spacing: .015em;
  color: var(--warm-white);
}
.site-header__nav { display: flex; align-items: center; gap: 38px; }
.site-header__nav a {
  font-size: 12px; font-weight: 500; letter-spacing: .17em;
  text-transform: uppercase; color: rgba(243,236,221,.74);
  transition: color .2s var(--ease);
}
.site-header__nav a:hover { color: var(--warm-white); }
.site-header__cta {
  font-size: 11.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--warm-white);
  border: 1px solid rgba(243,236,221,.34);
  padding: 12px 22px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header__cta:hover { border-color: var(--warm-white); }
.site-header__menu {
  display: none; background: none; border: 0; cursor: pointer;
  width: 30px; height: 22px; position: relative;
  z-index: 90;
}
.site-header__menu span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--warm-white); transition: transform .3s var(--ease), opacity .3s;
}
.site-header__menu span:nth-child(1) { top: 0; }
.site-header__menu span:nth-child(2) { top: 10px; }
.site-header__menu span:nth-child(3) { top: 20px; }

/* ============================================================
   4. CINEMATIC STAGE  (fixed, scroll-scrubbed frame sequence)
   ============================================================ */
.stage {
  position: fixed; inset: 0; z-index: 1;
  background: var(--ink);
  transition: opacity .6s var(--ease);
}
.stage.is-hidden { opacity: 0; }
.stage__canvas,
.stage__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.stage__poster { z-index: 1; transition: opacity .6s var(--ease); }
.stage__poster.is-gone { opacity: 0; }
.stage__canvas { z-index: 2; }
/* left-weighted cinematic scrim: keeps the left-side beat text
   legible over every frame, dark house or bright ovation alike */
.stage__scrim {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(98deg, rgba(18,12,8,.90) 0%, rgba(18,12,8,.62) 30%,
                            rgba(18,12,8,.12) 58%, rgba(18,12,8,0) 80%),
    linear-gradient(180deg, rgba(18,12,8,.55) 0%, rgba(18,12,8,0) 24%,
                            rgba(18,12,8,0) 70%, rgba(18,12,8,.66) 100%);
}

/* ============================================================
   5. SCROLL NARRATIVE  (tall transparent section over the stage)
   ============================================================ */
.film { position: relative; z-index: 4; }

.beat {
  position: relative; z-index: 4;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8vh clamp(1.5rem, 6vw, 3.5rem);
}
.beat__inner {
  position: relative;
  max-width: 680px;
  opacity: 0; transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.beat.is-in .beat__inner { opacity: 1; transform: translateY(0); }

.beat__eyebrow {
  display: flex; align-items: center; gap: 15px;
  margin-bottom: 26px;
}
.beat__eyebrow::before {
  content: ""; width: 32px; height: 2px;
  background: var(--red); display: block; flex: none;
}
.beat__eyebrow span {
  font-size: 12px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(243,236,221,.82);
  text-shadow: 0 1px 8px rgba(0,0,0,.7);
}
.beat__serif {
  display: block; font-weight: 350;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1.07; letter-spacing: -.013em;
  color: var(--warm-white);
  text-shadow: 0 2px 22px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.5);
}
.beat__serif em { font-style: italic; }
.beat__punch {
  display: block;
  font-family: var(--font-punch);
  font-weight: 700;
  font-size: clamp(3.6rem, 7.6vw, 6.6rem);
  line-height: .92; letter-spacing: -.018em;
  text-transform: uppercase; color: var(--warm-white);
  margin-top: 6px;
  text-shadow: 0 2px 26px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.5);
}
.beat__punch .dot { color: var(--red); margin-left: -.12em; }
/* The final beat's punch ("The Room Is Yours.") is a four-word phrase,
   not a single word like "Ready." Size it down so it fits and wraps
   into clean lines instead of colliding. */
.beat:last-of-type .beat__punch,
.beat:nth-of-type(4) .beat__punch {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.02;
}
/* the period after "Yours" must not tuck into the S the way it does
   under the Y of "Ready". Give it clean space on the final beat. */
.beat:last-of-type .beat__punch .dot,
.beat:nth-of-type(4) .beat__punch .dot { margin-left: .02em; }
.beat__body {
  margin-top: 22px;
  font-size: 16.5px; line-height: 1.62;
  color: rgba(243,236,221,.82);
  max-width: 420px;
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
}
.beat__actions { margin-top: 34px; }

.btn-primary {
  display: inline-block;
  font-size: 12.5px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: #fff;
  background: var(--red); padding: 16px 30px;
  transition: background .2s var(--ease), transform .18s var(--ease);
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); }

/* scroll cue under the first beat */
.scroll-cue {
  position: fixed; left: 50%; bottom: 2rem; z-index: 5;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .66rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(243,236,221,.86);
  text-shadow: 0 1px 9px rgba(0,0,0,.7);
  transition: opacity .5s var(--ease);
}
.scroll-cue__line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(243,236,221,.55), transparent);
}
.scroll-cue.is-gone { opacity: 0; pointer-events: none; }

/* ============================================================
   6. FOUNDER SECTION  (opaque, scrolls over the stage)
   ============================================================ */
.founder {
  position: relative; z-index: 10;
  background: var(--paper); color: var(--text-dark);
  padding: clamp(5rem, 11vw, 9rem) clamp(1.5rem, 6vw, 3.5rem);
}
.founder__wrap {
  width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: clamp(2rem, 5vw, 4.75rem); align-items: center;
}
/* grid items default to min-width:auto, which lets wide content
   (the max-content logo marquee track) blow a column out past the
   viewport. min-width:0 lets the columns size to the grid instead. */
.founder__wrap > * { min-width: 0; }
.founder__photo {
  position: relative;
  opacity: 0; transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.founder.is-in .founder__photo { opacity: 1; transform: translateY(0); }
/* a warm-stone block behind Portia's cutout. its BOTTOM is aligned
   with the bottom of her photo (bottom: 0); she pops out above and
   to the right of it. */
.founder__panel {
  position: absolute; left: 9%; right: 17%; top: 24%; bottom: 0;
  background: var(--stone);
}
.founder__photo img { position: relative; width: 100%; height: auto; }
.founder__text {
  opacity: 0; transform: translateY(40px);
  transition: opacity .9s var(--ease) .12s, transform .9s var(--ease) .12s;
}
.founder.is-in .founder__text { opacity: 1; transform: translateY(0); }
.founder__eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 26px;
}
.founder__eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: var(--red); display: block; flex: none;
}
.founder__eyebrow span {
  font-size: 11.5px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--text-mute);
}
.founder__name {
  font-weight: 340;
  font-size: clamp(2.6rem, 4.2vw, 3.9rem);
  line-height: 1.04; letter-spacing: -.014em;
  color: var(--text-dark);
}
.founder__tag {
  display: block; font-style: italic;
  color: var(--text-mute); font-size: .6em; margin-top: 8px;
}
.founder__body {
  margin-top: 26px;
  font-size: 16.5px; line-height: 1.7;
  color: var(--text-mute); max-width: 480px;
}
.founder__partners {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; row-gap: 10px; align-items: center;
}
.founder__partner {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--text-dark);
  white-space: nowrap;
}
.founder__partner b { font-weight: 600; }
.founder__partner i {
  width: 4px; height: 4px; background: var(--taupe);
  border-radius: 50%; display: block;
  margin: 0 24px;
}

/* ---- partner logo marquee ----
   A continuous, seamless horizontal logo strip. The track holds
   two identical runs of the logo set; it translates left by 50%
   on an infinite loop, so when run A scrolls off, run B is already
   in its place and the loop is invisible. Soft edge fades keep the
   strip from hard-cutting at the panel edge. */
.founder__marquee {
  margin-top: 40px;
  position: relative;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.founder__marquee-track {
  display: flex;
  width: max-content;
  animation: founder-marquee 34s linear infinite;
}
.founder__marquee-run {
  display: flex;
  flex: none;
  align-items: center;
}
.founder__marquee-logo {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.founder__marquee-logo img {
  display: block;
  height: 46px;
  width: auto;
  /* one cohesive muted ink tone across every logo */
  color: var(--text-dark);
  opacity: .80;
  transition: opacity .4s var(--ease);
}
.founder__marquee:hover .founder__marquee-logo img { opacity: .92; }
@keyframes founder-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .founder__marquee-track { animation: none; }
  /* static row: show one run only, no scroll */
  .founder__marquee { -webkit-mask-image: none; mask-image: none; }
  .founder__marquee-run[aria-hidden="true"] { display: none; }
  .founder__marquee-run { flex-wrap: wrap; row-gap: 14px; }
}
.no-motion .founder__marquee-track { animation: none; }
.no-motion .founder__marquee { -webkit-mask-image: none; mask-image: none; }
.no-motion .founder__marquee-run[aria-hidden="true"] { display: none; }
.no-motion .founder__marquee-run { flex-wrap: wrap; row-gap: 14px; }

/* ============================================================
   6b. OUR SERVICES  (opaque, scrolls over the stage)
   ============================================================ */
.services {
  position: relative; z-index: 10;
  background: var(--ink); color: var(--warm-white);
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.5rem, 6vw, 3.5rem);
}
.services__wrap { width: var(--shell); margin: 0 auto; }
.services__head {
  max-width: 680px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.services__eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.services__eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: var(--red); display: block; flex: none;
}
.services__eyebrow span {
  font-size: 11.5px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(243,236,221,.7);
}
.services__title {
  font-weight: 340;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08; letter-spacing: -.015em;
  color: var(--warm-white);
}
.services__title em { font-style: italic; }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
}
/* two columns: the icon in its own left column, and the number,
   title and description stacked left-aligned in the right column */
.service {
  border-top: 2px solid var(--red);
  padding-top: 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 16px; row-gap: 10px;
  min-width: 0;
}
.service__num {
  grid-column: 2; grid-row: 1;
  font-family: var(--font-punch);
  font-size: 13px; font-weight: 600; letter-spacing: .12em;
  color: var(--taupe);
}
.service__icon {
  grid-column: 1; grid-row: 2;
  width: 42px; height: auto; align-self: center;
}
.service__name {
  grid-column: 2; grid-row: 2;
  min-width: 0;
  font-weight: 380;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.12; letter-spacing: -.01em;
  color: var(--warm-white);
}
.service__desc {
  grid-column: 2; grid-row: 3;
  font-size: 15.5px; line-height: 1.62;
  color: rgba(243,236,221,.74);
}

/* ============================================================
   6c. GET STARTED  ::  inquiry form
   ============================================================ */
.getstarted {
  position: relative; z-index: 10;
  background: var(--paper); color: var(--text-dark);
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.5rem, 6vw, 3.5rem);
}
.getstarted__wrap {
  width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.getstarted__wrap > * { min-width: 0; }
.getstarted__eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.getstarted__eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: var(--red); display: block; flex: none;
}
.getstarted__eyebrow span {
  font-size: 11.5px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--text-mute);
}
.getstarted__title {
  font-weight: 340;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08; letter-spacing: -.015em;
  color: var(--text-dark);
}
.getstarted__title em { font-style: italic; }
.getstarted__lead {
  margin-top: 20px;
  font-size: 16.5px; line-height: 1.7;
  color: var(--text-mute); max-width: 38ch;
}
.getstarted__form { display: flex; flex-direction: column; gap: 15px; }
.getstarted__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.getstarted__field { display: flex; flex-direction: column; gap: 7px; }
.getstarted__field label {
  font-size: 11.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-mute);
}
.getstarted__field input,
.getstarted__field select,
.getstarted__field textarea {
  font-family: var(--font-body); font-size: 15px;
  color: var(--text-dark); background: var(--warm-white);
  border: 1px solid rgba(22,17,12,.16);
  padding: 12px 14px; width: 100%;
  transition: border-color .2s var(--ease);
}
.getstarted__field input:focus,
.getstarted__field select:focus,
.getstarted__field textarea:focus {
  outline: none; border-color: var(--red);
}
.getstarted__field textarea { resize: vertical; min-height: 96px; }
.getstarted__submit {
  align-self: flex-start; margin-top: 6px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: #fff;
  background: var(--red); border: 0; cursor: pointer;
  padding: 16px 32px;
  transition: background .2s var(--ease), opacity .2s var(--ease);
}
.getstarted__submit:hover { background: var(--red-deep); }
.getstarted__submit[disabled] { opacity: .55; cursor: default; }
.getstarted__status { font-size: 14px; line-height: 1.5; min-height: 1.2em; }
.getstarted__status.is-ok  { color: #1f7a3d; }
.getstarted__status.is-err { color: var(--red-deep); }

/* ============================================================
   7. FOOTER / CLOSING CTA
   ============================================================ */
.site-footer {
  position: relative; z-index: 10;
  background: var(--ink); color: var(--warm-white);
  min-height: 100vh;
  display: flex; flex-direction: column;
}
/* the closing message + CTA, vertically centered with generous room */
.site-footer__closer {
  flex: 1 1 auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 6vw, 3.5rem);
}
.site-footer__eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 24px;
}
.site-footer__eyebrow::before,
.site-footer__eyebrow::after {
  content: ""; width: 26px; height: 2px;
  background: var(--red); display: block;
}
.site-footer__eyebrow span {
  font-size: 11.5px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(243,236,221,.7);
}
.site-footer__line {
  font-weight: 340;
  font-size: clamp(2.5rem, 5.2vw, 4.6rem);
  line-height: 1.05; letter-spacing: -.015em;
  color: var(--warm-white);
}
.site-footer__line em { font-style: italic; }
.site-footer__cta {
  display: inline-block; margin-top: 2rem;
  font-size: 12.5px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: #fff;
  background: var(--red); padding: 17px 34px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.site-footer__cta:hover { background: var(--red-deep); transform: translateY(-2px); }
.site-footer__bar {
  width: var(--shell); margin: 0 auto;
  padding: clamp(1.8rem, 3vw, 2.4rem) 0;
  border-top: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; text-align: left;
}
.site-footer__brand { display: flex; align-items: center; gap: 12px; }
.site-footer__brand img { height: 28px; width: auto; }
.site-footer__brand span { font-weight: 600; font-size: 15px; }
.site-footer__meta {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 13px; color: rgba(243,236,221,.55);
  text-align: right;
}
.site-footer__meta a { color: rgba(243,236,221,.82); }
.site-footer__meta a:hover { color: var(--warm-white); }

/* ============================================================
   8. MOBILE
   ============================================================ */
@media (max-width: 860px) {
  .site-header { padding: 20px 22px; }
  .site-header.is-solid { padding: 14px 22px; }
  .site-header__nav,
  .site-header__cta { display: none; }
  .site-header__menu { display: block; }
  .site-header__nav.is-open {
    display: flex; flex-direction: column; gap: 1.6rem;
    position: fixed; inset: 0; z-index: 70;
    background: rgba(22,17,12,.97);
    align-items: center; justify-content: center;
  }
  .site-header__nav.is-open a { font-size: 1.1rem; }

  /* hamburger animates to an X while the menu is open; lock the
     body so the page behind the overlay does not scroll */
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header__menu span { background: #ffffff; }
  body.menu-open .site-header__menu span:nth-child(1) { top: 10px; transform: rotate(45deg); }
  body.menu-open .site-header__menu span:nth-child(2) { opacity: 0; }
  body.menu-open .site-header__menu span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

  .beat { padding-left: 22px; padding-right: 22px; }
  .beat__inner { max-width: 100%; }
  .beat__serif { font-size: clamp(2rem, 8.4vw, 3rem); }
  .beat__punch { font-size: clamp(3rem, 13vw, 4.4rem); }
  .beat:last-of-type .beat__punch,
  .beat:nth-of-type(4) .beat__punch { font-size: clamp(2rem, 8.4vw, 2.9rem); }
  .beat__body { max-width: 100%; }

  /* founder: stack to one column and keep every element inside the
     viewport. The desktop max-width values overflow a phone, so they
     are released to the column width here. */
  .founder__wrap { grid-template-columns: 1fr; gap: 30px; width: 100%; }
  .founder__photo { max-width: 392px; }

  .services__grid { grid-template-columns: 1fr; gap: 26px; }
  .getstarted__wrap { grid-template-columns: 1fr; gap: 32px; }
  .founder__name, .founder__tag, .founder__body {
    max-width: 100%; overflow-wrap: break-word;
  }
  .founder__marquee { max-width: 100%; }
  .founder__marquee-logo { padding: 0 20px; }
  .founder__marquee-logo img { height: 38px; }

  /* footer: drop the full-height centering that pushes a big empty
     gap above Start Here on a phone; size to content instead. */
  .site-footer { min-height: auto; }
  .site-footer__closer {
    padding-top: clamp(3rem, 11vw, 4.5rem);
    padding-bottom: clamp(3rem, 11vw, 4.5rem);
  }
  .site-footer__bar { flex-direction: column; align-items: flex-start; }
  .site-footer__meta { text-align: left; }
}

/* ============================================================
   9. REDUCED-MOTION FALLBACK
   The page stays fully usable if scroll-scrubbing is disabled.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .beat__inner { opacity: 1; transform: none; transition: none; }
  .founder__photo, .founder__text { opacity: 1; transform: none; transition: none; }
  .scroll-cue { display: none; }
}
.no-motion .beat__inner,
.no-motion .founder__photo,
.no-motion .founder__text { opacity: 1; transform: none; }
.no-motion .scroll-cue { display: none; }
