/* =====================================================================
   Daytime Design Co. — About page (v2)
   Story arc: arrive → evolution stack → the flexible logo system →
   the founder → the philosophy → how we work now → the model (mural) →
   the approach path → legacy makers → off the clock → CTA.
   Shares tokens/nav/buttons from styles.css, motion from anim.css.
   ===================================================================== */

/* ---------- Subnote — quiet serif italic (replaces tiny mono microcopy) ---------- */
.subnote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-ink);
  opacity: 0.72;
}

/* ---------- Nav — lives on the hero background (light version) ---------- */
.nav--onhero { position: absolute; background: none; border: 0; }
.nav--onhero .logo__word { color: var(--c-ink); }
.nav--onhero .nav__links a { color: var(--c-ink); opacity: 0.7; }
.nav--onhero .nav__links a:hover,
.nav--onhero .nav__links a.is-active { opacity: 1; }
/* deep green squiggle — active + hover */
.nav--onhero .nav__links a::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 6' preserveAspectRatio='none'%3E%3Cpath d='M0 3 Q 3.25 0.4 6.5 3 T 13 3' fill='none' stroke='%230a5342' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.nav--onhero .nav__burger { color: var(--c-ink); }

/* =====================================================================
   1 · HERO (cream + acid grid)
   ===================================================================== */
.abhero { padding: 165px 0 0; overflow: hidden; }
/* ---------------------------------------------------------------------
   Radius system (page-wide):
   images = 6px · small tiles/labels = 8px · cards + panels = var(--radius-lg)
   pills/buttons = 999px. Nothing else.
   --------------------------------------------------------------------- */
/* the photo column is capped at the polaroid's own width so the copy column
   can hold the same measure as the Services hero (9.5em headline / 640px sub) */
.abhero__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: clamp(48px, 6vw, 100px); align-items: center;
}
/* measure matched to the Services hero — same 9.5em headline, same 640px sub */
.abhero__title {
  font-size: clamp(44px, 5.8vw, 84px); line-height: 1; letter-spacing: -2px;
  margin: 24px 0 28px; color: var(--c-ink); max-width: 9.5em;
}
.abhero__title .it { letter-spacing: -1px; }
.abhero__sub { max-width: 640px; color: #333; margin-bottom: 36px; }
.abhero__photo-wrap { position: relative; justify-self: end; }
.abhero__photo {
  width: min(400px, 100%); border-radius: 6px; display: block;
  background: #fff; padding: 12px 12px 52px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.16);
  transform: rotate(3deg);
}
.abhero__photo img { border-radius: 4px; }
.abhero__photo .sign {
  position: absolute; bottom: 14px; left: 0; right: 0; text-align: center;
  font-family: var(--font-mono, "JetBrains Mono", monospace); font-weight: 500;
  font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--c-ink);
}
.abhero__badge { position: absolute; width: 118px; height: 118px; left: -54px; bottom: 40px; z-index: 2; }
/* meta strip — full width like the homepage, no hairline (the grid carries it) */
.abhero__foot {
  margin-top: 74px; padding-block: 20px 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.abhero__foot .t-mono-label { opacity: 0.62; }

/* =====================================================================
   2 · STORY — stacking chapters (each panel sticks, the next covers it)
   ===================================================================== */
.tl { background: var(--c-off-white); padding: 110px 0 90px; }
.tl__head { max-width: 820px; margin-bottom: 10px; }
.tl__title {
  font-size: clamp(38px, 4.6vw, 68px); line-height: 1.05; letter-spacing: -1.6px;
  margin-top: 22px; color: var(--c-ink);
}
.tl__hint { margin-top: 18px; }

/* dashed spine down the middle — draws itself in as you scroll */
.tl__track { position: relative; margin-top: 56px; --draw: 0%; }
.tl__line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  border-left: 2px dashed rgba(39,39,39,0.25);
  clip-path: inset(0 -4px calc(100% - var(--draw)) -4px);
}
.tl__item {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr; gap: 0 80px; /* 40px of air either side of the spine */
  padding: 56px 0;
}
/* node dot on the spine */
.tl__node {
  position: absolute; left: 50%; top: 96px;
  width: 18px; height: 18px; border-radius: 50%;
  margin-left: -9px;
  background: var(--c-acid); border: 3px solid var(--c-ink);
  z-index: 2;
}
.tl__item:nth-child(3) .tl__node { background: var(--c-pink); }
.tl__item:nth-child(4) .tl__node { background: var(--c-green); }

/* the card is capped by max-height, so it must hug the spine side of its column
   — that keeps every chapter's visual exactly 40px off the line */
.tl__item > .tl__visual { grid-column: 1; justify-self: end; }
.tl__item > .tl__meta   { grid-column: 2; text-align: left; padding-top: 74px; }
.tl__item--flip > .tl__visual { grid-column: 2; grid-row: 1; justify-self: start; }
.tl__item--flip > .tl__meta   { grid-column: 1; grid-row: 1; text-align: right; }
.tl__item--flip .tl__meta p { margin-left: auto; }

.tl__chip {
  display: inline-block; background: var(--c-acid); color: var(--c-ink);
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 6px; margin-bottom: 16px;
}
.tl__meta h3 {
  font-size: clamp(26px, 2.6vw, 38px); letter-spacing: -0.9px; margin: 4px 0 14px;
}
.tl__meta p { color: #444; font-size: 16.5px; line-height: 1.62; max-width: 420px; }
.tl__meta p + p { margin-top: 14px; }

/* the visual card — taller, natural image ratio */
.tl__visual {
  display: flex; flex-direction: column; justify-content: center;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 3.4vw, 52px);
  aspect-ratio: 4 / 4.6;
  max-height: 620px;
}
.tl__visual--corp { background: var(--c-cream); border: 1px solid var(--c-hair); }
.tl__visual--leap { background: var(--c-pink); }
.tl__visual--now  { background: var(--c-green); color: var(--c-cream); }
.tl__visual--now .tl__meta-inside { color: var(--c-cream); }

/* photo chapters — no scrim, the image runs true; content lives in a white inset card, pinned to the bottom */
.tl__visual--photo {
  position: relative; background-size: cover; background-position: center; border: 0;
  justify-content: flex-end;
}

.tl__inset {
  background: #fff; border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.tl__quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(21px, 2.2vw, 29px); line-height: 1.3; letter-spacing: -0.3px;
  color: var(--c-ink);
}
.tl__facts { margin-top: 14px; font-size: 13px; line-height: 1.6; color: var(--c-ink); font-weight: 600; }
/* =====================================================================
   THE CREED — the line that closes the story. Serious half is set tight,
   narrow and disciplined; playful half is bigger, italic, rotated, and
   allowed to hang past the column. The layout argues the sentence.
   This is the section's one loud move.
   ===================================================================== */
/* the operating tension — inline under the year 3 chapter copy */
.tl__tension { margin-top: 16px; }
.tl__tension .tension__pivot {
  display: inline-block;
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.08em;
  color: var(--c-red);
  font-weight: 500;
  transform-origin: 50% 85%;
}
@media (prefers-reduced-motion: no-preference) {
  /* acid swipe wipes in after the chapter reveals */
  .tl__tension .hl { background-size: 0 0.72em; transition: background-size 0.72s cubic-bezier(0.22,1,0.36,1) 0.5s; }
  .tl__meta.is-in .tl__tension .hl { background-size: 100% 0.72em; }
  /* the pivot keeps a whisper of a sway */
  .tl__meta.is-in .tension__pivot { animation: pivotSway 5.5s ease-in-out 1.2s infinite; }
  @keyframes pivotSway {
    0%, 100% { transform: rotate(-1.5deg); }
    50% { transform: rotate(2.2deg); }
  }
}

.tl__end { position: relative; text-align: center; padding: 46px 0 8px; }
.tl__end .spark { font-size: 52px; }
.tl__end-label { display: block; margin: 14px 0 10px; opacity: 0.55; }
.tl__end-line {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px); color: var(--c-ink);
}

/* =====================================================================
   3 · THE FLEXIBLE LOGO SYSTEM (purple field)
   ===================================================================== */
.logosys { background: var(--c-lilac); padding: 110px 0; }
.logosys__head { max-width: 780px; }
.logosys__title {
  font-size: clamp(38px, 4.6vw, 68px); line-height: 1.05; letter-spacing: -1.6px;
  margin: 22px 0 22px; color: var(--c-ink);
  max-width: 760px;
}
.logosys__sub { color: var(--c-ink); opacity: 0.85; max-width: 760px; }
.logosys__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px;
  margin-top: 64px; align-items: start;
}
.lg__list { border-top: 1.5px solid rgba(39,39,39,0.25); }
.lg__row {
  width: 100%; display: flex; align-items: center; gap: 22px;
  padding: 17px 14px; border: 0; border-bottom: 1.5px solid rgba(39,39,39,0.25);
  background: none; cursor: pointer; text-align: left; border-radius: 0;
  transition: background .25s ease, padding-left .25s ease, border-radius .25s ease;
}
.lg__row:hover { background: rgba(255,255,255,0.45); }
.lg__num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px;
  color: var(--c-ink); opacity: 0.55; flex: 0 0 34px;
}
.lg__name {
  font-family: var(--font-sans); font-weight: 700; font-size: 21px;
  letter-spacing: -0.4px; color: var(--c-ink); flex: 1;
}
.lg__tick {
  font-size: 19px; line-height: 1; opacity: 0; transform: translateX(-8px);
  transition: all .25s ease; color: var(--c-ink);
}
.lg__row.is-active {
  background: #fff; border-radius: 8px; padding-left: 22px;
  border-bottom-color: transparent;
}
/* the row above the active one drops its line too, so the white pill floats clean */
.lg__row--flat { border-bottom-color: transparent; }
.lg__list.has-first-active { border-top-color: transparent; }
.lg__row.is-active .lg__tick { opacity: 1; transform: none; }
.lg__row.is-active .lg__name { font-style: italic; font-family: var(--font-serif); font-weight: 400; font-size: 24px; }

.lg__stage {
  position: sticky; top: 40px;
  background: #fff;
  border-radius: var(--radius-lg); padding: 70px 50px 46px;
  text-align: center; overflow: hidden; min-height: 440px;
  box-shadow: 0 30px 70px rgba(126,22,23,0.10);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
/* the real wordmark — stacked black + green lockup per expression */
.lg__stage-logo {
  display: block; width: min(330px, 78%); height: auto;
  transition: opacity .28s ease, transform .28s ease;
}
.lg__stage.is-switching .lg__stage-logo,
.lg__stage.is-switching .lg__stage-tag,
.lg__stage.is-switching .lg__stage-desc { opacity: 0; transform: translateY(10px); }
/* the active expression's name lives on the card */
.lg__stage-tag {
  position: absolute; top: 26px; left: 30px;
  background: var(--c-acid); color: var(--c-ink);
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 6px;
  transition: opacity .28s ease, transform .28s ease;
}
.lg__stage-desc {
  margin-top: 34px; max-width: 400px; color: #444; font-size: 16px; line-height: 1.6;
  transition: opacity .28s ease, transform .28s ease;
  min-height: 78px;
}

/* =====================================================================
   4 · MEET EMILY (off-white)
   ===================================================================== */
.meetem { background: var(--c-off-white); padding: 110px 0; }
.meetem__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: stretch; }
.meetem__photo { border-radius: 6px; width: 100%; max-width: 460px; height: 100%; object-fit: cover; box-shadow: 0 30px 60px rgba(0,0,0,0.12); }
.meetem__title {
  font-size: clamp(34px, 3.8vw, 56px); line-height: 1.08; letter-spacing: -1.4px;
  margin: 20px 0 22px; color: var(--c-ink);
}
.meetem__body { color: #333; max-width: 560px; margin-bottom: 34px; }
/* the opener is the warm one — it gets a touch more weight and ink */
.meetem__body--lead { color: var(--c-ink); font-weight: 500; margin-bottom: 20px; }
.meetem__list { border-top: 1px solid var(--c-hair); max-width: 620px; }
.meetem__list li {
  display: flex; align-items: baseline; gap: 24px;
  padding: 15px 4px; border-bottom: 1px solid var(--c-hair);
  font-weight: 600; font-size: 17px; color: var(--c-ink);
}
.meetem__list .n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px; color: var(--c-red); }

/* =====================================================================
   5 · PHILOSOPHY (olive) — bars rise, icons pop
   ===================================================================== */
.phil { background: var(--c-olive); color: var(--c-cream); padding: 110px 0; overflow: hidden; }
.phil__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: stretch; }
/* left column — copy is vertically centered in the column; badge floats independently in the corner */
.phil__copy {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
}
.phil__stamp { position: absolute; top: -6px; left: -10px; width: 96px; height: 96px; }
.phil__grid > div:last-child { align-self: end; }
.phil__title {
  font-size: clamp(34px, 3.9vw, 58px); line-height: 1.1; letter-spacing: -1.4px;
  color: #fff; max-width: 520px;
}
.phil__title .it { color: var(--c-cream); }
.phil__body { margin-top: 26px; max-width: 640px; color: rgba(249,245,235,0.88); }
.phil__chart { display: flex; align-items: flex-end; gap: 18px; height: 420px; }
.phil__bar { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.phil__bar .pico {
  width: 30px; height: 30px; margin-bottom: 12px;
  opacity: 0; transform: scale(0.3);
  transition: opacity .5s var(--ease-out, ease), transform .5s var(--ease-out, ease);
}
.phil__bar .pico svg { width: 100%; height: 100%; overflow: visible; }
.phil__bar b {
  width: 100%; border-radius: 8px 8px 0 0; display: block;
  transform-origin: bottom; transform: scaleY(0);
  transition: transform 1s var(--ease-out, ease);
}
.phil__bar span {
  margin-top: 12px; font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 1.6px; text-transform: uppercase; color: rgba(249,245,235,0.85);
  text-align: center;
  /* every label reserves two lines so the bar bottoms stay on one baseline */
  line-height: 1.45; min-height: 2.9em;
  display: flex; align-items: flex-start; justify-content: center;
}
/* order: brand → product → team → customers → life (life clears the rest by a mile) */
.phil__bar:nth-child(1) b { height: 24%; background: var(--c-acid);  transition-delay: .05s; }
.phil__bar:nth-child(2) b { height: 37%; background: var(--c-cream); transition-delay: .15s; }
.phil__bar:nth-child(3) b { height: 50%; background: var(--c-pink);  transition-delay: .25s; }
.phil__bar:nth-child(4) b { height: 62%; background: var(--c-blue);  transition-delay: .35s; }
.phil__bar:nth-child(5) b { height: 100%; background: var(--c-orange); transition-delay: .45s; }
.phil__bar:nth-child(1) .pico { transition-delay: .6s; }
.phil__bar:nth-child(2) .pico { transition-delay: .72s; }
.phil__bar:nth-child(3) .pico { transition-delay: .84s; }
.phil__bar:nth-child(4) .pico { transition-delay: .96s; }
.phil__bar:nth-child(5) .pico { transition-delay: 1.08s; }
.phil__chart.is-grown .phil__bar b { transform: scaleY(1); }
.phil__chart.is-grown .phil__bar .pico { opacity: 1; transform: scale(1); }
.phil__cap {
  margin-top: 26px; color: var(--c-cream); opacity: 0.92;
  font-size: clamp(20px, 1.9vw, 25px); line-height: 1.4;
}

/* =====================================================================
   6 · HOW WE WORK NOW (warm) — three cards, sprint-style icons
   ===================================================================== */
.hww { background: #fef7ed; padding: 110px 0; }
.hww__title {
  font-size: clamp(38px, 4.6vw, 68px); line-height: 1.05; letter-spacing: -1.6px;
  margin: 22px 0 0; color: var(--c-ink); max-width: 1100px;
}
.hww__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 64px; }
.hcard {
  background: #fff; border: 1px solid var(--c-hair); border-radius: var(--radius-lg);
  padding: 38px 34px 40px; position: relative;
  transition: transform .35s var(--ease-out, ease), box-shadow .35s var(--ease-out, ease);
}
.hcard:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.08); }
/* no backgrounds — the icons stand on their own */
.hcard__icon { display: grid; place-items: start; margin-bottom: 28px; min-height: 78px; }
.hcard__icon svg { width: 68px; height: 68px; overflow: visible; }
.hcard__label {
  display: block; font-family: var(--font-sans); font-size: 21px; font-weight: 700;
  letter-spacing: -0.4px; color: var(--c-ink);
  margin-bottom: 12px;
}
.hcard p { color: #333; font-size: 16px; line-height: 1.62; }
.hcard__num {
  position: absolute; top: 30px; right: 30px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px; color: var(--c-ink-3);
}

/* sprint-style icon motion — motion-safe */
@media (prefers-reduced-motion: no-preference) {
  /* 01 · AI robot — antenna dot bobs, the one star pulses */
  .ic-bot__dot { animation: botBob 2.8s ease-in-out infinite; }
  .ic-bot__spark { transform-origin: 51px 10px; animation: sparkPulse 3.2s ease-in-out infinite; }
  .hcard--ai:hover .ic-bot { animation: botWiggle .6s ease-in-out; transform-origin: center; }
  @keyframes botBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2.5px); } }
  @keyframes sparkPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.35); } }
  @keyframes botWiggle { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-4deg); } 75% { transform: rotate(4deg); } }

  /* 02 · learning — the brain thinks, the spark pulses */
  .ic-brain { transform-origin: 30px 30px; animation: brainThink 4.2s ease-in-out infinite; }
  .ic-brain__spark { transform-origin: 52px 11.5px; animation: sparkPulse 4.2s ease-in-out 0.6s infinite; }
  .hcard--learn:hover .ic-brain { animation-duration: 1.4s; }
  @keyframes brainThink { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08) rotate(-2deg); } }

  /* 03 · intention — the moon rocks, the star twinkles, the z's drift */
  .ic-moon { transform-origin: 30px 32px; animation: moonRock 6s ease-in-out infinite; }
  .ic-moon__star { transform-origin: 47.5px 15.5px; animation: starTwinkle 6s ease-in-out infinite; }
  .ic-moon__zz { animation: zzDrift 6s ease-in-out infinite; }
  @keyframes moonRock { 0%,100% { transform: rotate(-6deg); } 50% { transform: rotate(6deg); } }
  @keyframes starTwinkle { 0%,100% { transform: scale(0.3); opacity: 0; } 50% { transform: scale(1); opacity: 1; } }
  @keyframes zzDrift { 0%,100% { transform: translateY(0); opacity: 0.85; } 50% { transform: translateY(-4px); opacity: 1; } }
}

/* =====================================================================
   7 · THE MODEL — paint-it-yourself mural (blue field)
   ===================================================================== */
.mural {
  background: var(--c-blue);
  padding: 44px 0 0; overflow: hidden; position: relative;
}
.mural__stamps {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 0 40px 44px;
}
.mural__stamps .t-mono-label { opacity: 0.55; }
.mural__stage {
  position: relative; text-align: center;
  padding: 20px 20px 90px; max-width: 1240px; margin: 0 auto;
}
.mural__line { display: block; }
.mw {
  display: inline-block; white-space: nowrap;
  transition: transform .3s var(--ease-out, ease), color .3s ease;
  cursor: pointer; will-change: transform;
  -webkit-tap-highlight-color: transparent;
}
/* resting palette lives on each word below — painting over it is the interaction */
.mw--live {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(90px, 15vw, 230px); line-height: 0.92; letter-spacing: -4px;
  color: var(--c-green);
  transform: rotate(-1.5deg);
}
.mw--good {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(64px, 10.5vw, 160px); line-height: 1; letter-spacing: -3px;
  color: var(--c-red); transform: rotate(1deg);
  margin-top: -0.06em;
}
.mw--good .hl { background-position: 0 68%; background-size: 100% 0.5em; }
.mural__inter {
  display: block; margin: 3vw 0 2vw;
  font-family: var(--font-mono); font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 8px; text-transform: uppercase; color: var(--c-ink);
}
.mw--best, .mw--work {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(80px, 13.5vw, 210px); line-height: 0.92; letter-spacing: -4px;
}
.mw--best { transform: rotate(1.2deg); color: var(--c-green); }
.mw--work { transform: rotate(-1deg); color: var(--c-green); }
.mw--ofit {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(48px, 7vw, 110px); line-height: 1; letter-spacing: -2px;
  color: var(--c-red); transform: rotate(-2deg);
  margin-top: 0.1em;
}
.mw--ofit .dot { color: var(--c-red); font-style: normal; }
/* colors are fixed — hover just adds a lean, no repainting */
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .mw--live:hover { transform: rotate(-3deg) scale(1.02); }
  .mw--good:hover { transform: rotate(2.4deg) scale(1.03); }
  .mw--best:hover { transform: rotate(-1deg) skewX(-6deg); }
  .mw--work:hover { transform: rotate(1.4deg) scale(1.03); }
  .mw--ofit:hover { transform: rotate(-4deg) translateY(-6px); }
}
.mural__flower { position: absolute; width: clamp(60px, 7vw, 110px); height: clamp(60px, 7vw, 110px); right: 8%; top: 4%; }
.mural__badge  { position: absolute; width: clamp(80px, 9vw, 132px); height: clamp(80px, 9vw, 132px); left: 6%; bottom: 22%; z-index: 2; }
.mural__squig  { position: absolute; left: 10%; top: 12%; width: clamp(70px, 8vw, 120px); opacity: 0.9; transform: rotate(-12deg); }
.mural__kicker {
  display: block; margin-top: 5vw;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px); color: var(--c-ink);
}
.mural__marquee {
  border-top: 1.5px solid var(--c-ink);
  padding: 16px 0; position: relative; background: var(--c-blue);
}
.mural__marquee .marquee__track { animation-duration: 60s; }
.mural__marquee span.set {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--c-ink); padding-right: 160px;
}

/* =====================================================================
   8 · THE DAYTIME APPROACH (cream) — a linear path, no hover states
   ===================================================================== */
.approach { background: var(--c-off-white); padding: 110px 0 100px; }
.approach__title {
  font-size: clamp(32px, 3.6vw, 52px); line-height: 1.08; letter-spacing: -1.3px;
  margin: 20px 0 20px; color: var(--c-ink);
  max-width: 780px;
}
.approach__sub { color: #444; max-width: 720px; }
.approach__path {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px;
  margin-top: 64px; position: relative;
}
.astep {
  position: relative;
  background: var(--bg, var(--c-cream));
  border-radius: var(--radius-lg);
  padding: 36px 32px 38px;
  display: flex; flex-direction: column;
}
.astep__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px; color: var(--c-red); display: block; margin-bottom: 14px; }
.astep__word {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(26px, 2.4vw, 38px); letter-spacing: -0.8px;
  color: var(--c-ink); line-height: 1; display: block; margin-bottom: 16px;
}
.astep__copy { color: var(--c-ink); opacity: 0.82; font-size: 16px; line-height: 1.62; }

/* =====================================================================
   9 · LEGACY MAKERS (cream — continues the path, no hover states)
   ===================================================================== */
.vibe { background: var(--c-cream); padding: 110px 0; }
.vibe__title {
  font-size: clamp(38px, 4.6vw, 68px); line-height: 1.05; letter-spacing: -1.6px;
  margin: 22px 0 18px; color: var(--c-ink); max-width: 620px;
}
.vibe__sub { color: #444; max-width: 700px; }
/* image one side, text the other — Sprint LP "who this is for" recipe */
.vibe__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 6vw, 110px); align-items: center;
  margin-top: 30px;
}
.vibe__photo {
  width: 100%; max-width: 520px; border-radius: 6px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.10);
}
.vibe__content .vibe__title { margin-top: 22px; }
.vlist { margin-top: 44px; border-top: 1px solid rgba(39,39,39,0.16); max-width: 640px; }
.vrow {
  display: grid; grid-template-columns: 26px 215px 1fr; gap: 18px; align-items: baseline;
  padding: 17px 4px; border-bottom: 1px solid rgba(39,39,39,0.16);
}
.vrow__spark { font-style: normal; font-size: 15px; color: var(--c-red); }
.vrow__name {
  font-family: var(--font-mono); font-weight: 500; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--c-ink);
}
.vrow__desc { color: #555; font-size: 15.5px; line-height: 1.55; }
.vibe__close {
  margin-top: 44px; max-width: 640px;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(20px, 1.9vw, 25px); line-height: 1.45; color: var(--c-ink);
}

/* =====================================================================
   10 · OFF THE CLOCK (pink — flip cards)
   ===================================================================== */
.otc { background: var(--c-pink); padding: 110px 0; }
.otc__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.otc__title {
  font-size: clamp(38px, 4.6vw, 68px); line-height: 1.05; letter-spacing: -1.6px;
  margin: 22px 0 0; color: var(--c-ink);
}
.otc__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.fcard { perspective: 1200px; background: none; border: 0; padding: 0; cursor: pointer; text-align: inherit; }
.fcard__inner {
  position: relative; width: 100%; aspect-ratio: 4 / 5.4;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(0.4, 0.1, 0.2, 1);
}
.fcard.is-flipped .fcard__inner { transform: rotateY(180deg); }
.fcard__face {
  position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
/* front — pattern field, plus, small centered photo (no shadow, no rotation), label */
.fcard__front {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 24px 18px;
  background-image: var(--pat); background-size: cover; background-position: center;
}
.fcard__front .plus {
  font-size: 30px; font-weight: 300; line-height: 1; color: var(--fg, var(--c-ink));
  margin-top: 6px;
}
.fcard__front .peek { width: 46%; border-radius: 6px; display: block; }
.fcard__front .peek--ph {
  width: 46%; aspect-ratio: 4 / 5; border-radius: 6px;
  background: var(--c-cream);
  display: grid; place-items: center;
  font-size: 22px; color: var(--c-ink);
}
.fcard__front .lbl {
  background: var(--c-cream); color: var(--c-ink);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 13px; border-radius: 6px; white-space: nowrap;
}
.fcard__back {
  transform: rotateY(180deg);
  background: #fff; padding: 12px 12px 16px;
  display: flex; flex-direction: column;
}
.fcard__back img { border-radius: 6px; width: 100%; height: 100%; object-fit: cover; flex: 1; min-height: 0; }
.fcard__rot { position: relative; flex: 1; min-height: 0; border-radius: 6px; overflow: hidden; }
.fcard__rot img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.45s ease;
}
.fcard__rot img.is-active { opacity: 1; }
.fcard__back .cap {
  font-family: var(--font-serif); font-style: italic; font-size: 16.5px;
  color: var(--c-ink); text-align: center; padding: 12px 4px 2px;
}
.fcard__back .ph-back {
  flex: 1; border-radius: 6px;
  background: linear-gradient(150deg, var(--c-blue), #86bcd1);
  display: grid; place-items: center;
}

/* =====================================================================
   11 · ALIGNED CTA (white, squiggle dividers top + bottom)
   ===================================================================== */
/* the wave sits on the colour of the section it leaves; the path is the CTA's white */
.acta-wave--top { background: var(--c-pink); }
.acta-wave--bottom { background: var(--c-green); }
.acta { background: #fff; padding: 100px 0 110px; text-align: center; }
.acta__title {
  font-size: clamp(36px, 4.4vw, 64px); line-height: 1.1; letter-spacing: -1.5px;
  color: var(--c-ink); max-width: 900px; margin: 26px auto 40px;
}
.acta__title .it { color: var(--c-ink); }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1100px) {
  .abhero__grid { grid-template-columns: 1fr; }
  .abhero__title { max-width: none; }
  .abhero__photo-wrap { justify-self: start; margin-left: 40px; }
  .logosys__grid { grid-template-columns: 1fr; gap: 40px; }
  .lg__stage { position: static; }
  .meetem__grid { grid-template-columns: 1fr; gap: 48px; }
  .phil__grid { grid-template-columns: 1fr; gap: 60px; }
  .hww__grid { grid-template-columns: 1fr; max-width: 560px; }
  .hcard__icon { margin-bottom: 14px; min-height: 0; }
  .otc__grid { grid-template-columns: repeat(2, 1fr); }
  .vibe__grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 900px) {
  .approach__path { grid-template-columns: 1fr; gap: 30px; }
  /* timeline collapses to a left spine */
  .tl__line { left: 9px; }
  .tl__item, .tl__item--flip { grid-template-columns: 1fr; gap: 20px; padding: 34px 0 34px 44px; }
  .tl__node { left: 9px; margin-left: -9px; top: 40px; }
    .tl__item > .tl__visual, .tl__item--flip > .tl__visual { grid-column: 1; grid-row: auto; order: 1; aspect-ratio: auto; justify-self: stretch; }
  .tl__item > .tl__meta, .tl__item--flip > .tl__meta { grid-column: 1; grid-row: auto; text-align: left; padding-top: 0; order: 0; }
  .tl__item--flip .tl__meta p { margin-left: 0; }

  /* flexible logo system — small scrollable chip tabs so the stage stays in view */
  .logosys__grid { margin-top: 36px; }
  .lg__list {
    display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 8px;
    border-top: 0; padding: 2px 2px 10px; margin: 0 -2px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .lg__list::-webkit-scrollbar { display: none; }
  .lg__row {
    flex: 0 0 auto; width: auto; gap: 8px;
    border: 1.5px solid rgba(39,39,39,0.25); border-bottom: 1.5px solid rgba(39,39,39,0.25);
    border-radius: 999px; padding: 10px 16px;
  }
  .lg__row:hover { background: none; }
  .lg__num { flex: none; font-size: 10px; }
  .lg__name { flex: none; font-size: 14.5px; white-space: nowrap; }
  .lg__tick { display: none; }
  .lg__row--flat { border-bottom-color: rgba(39,39,39,0.25); }
  .lg__row.is-active {
    padding-left: 16px; border-radius: 999px; border-color: var(--c-ink);
    background: #fff;
  }
  .lg__row.is-active .lg__name { font-size: 15.5px; }
  .lg__stage { margin-top: 8px; min-height: 300px; padding: 52px 26px 30px; }
  .lg__stage-logo { width: min(260px, 74%); }
  .lg__stage-desc { margin-top: 26px; min-height: 66px; font-size: 15.5px; }
}
@media (max-width: 640px) {
  /* ---- one shared vertical rhythm for every section on mobile ---- */
  .tl, .logosys, .meetem, .phil, .hww, .approach, .vibe, .otc, .acta { padding: 70px 0; }
  /* sections whose own inner spacing already carries the breathing room */
  .tl { padding-bottom: 56px; }
  .approach { padding-bottom: 62px; }

  /* the polaroid deliberately hangs over the story section instead of clipping */
  .abhero { padding: 130px 0 0; overflow: visible; }
  .abhero__grid { position: relative; z-index: 5; }
  .abhero__photo-wrap { margin-left: 12px; position: relative; z-index: 6; margin-bottom: -72px; }
  .abhero__photo { width: min(300px, 82%); padding: 10px 10px 30px; }
  .abhero__badge { display: none; }
  .abhero__foot { display: none; }
  .tl { position: relative; z-index: 1; padding-top: 118px; } /* clears the polaroid overlap */
  .tl__track { margin-top: 34px; }
  .tl__visual { padding: 26px 22px; }
  .tl__end { padding: 30px 0 0; }

  /* section heads + grids tighten to match the 70px rhythm */
  .logosys__grid, .hww__grid, .otc__grid, .approach__path { margin-top: 36px; }
  .meetem__grid { gap: 34px; }
  .vibe__grid { gap: 32px; margin-top: 22px; }
  .vlist { margin-top: 28px; }
  .vibe__close { margin-top: 28px; }
  .otc__head { gap: 12px; }

  /* philosophy — tighten overall height, kill the dead air above the bars */
  .phil__grid { gap: 36px; }
  .phil__copy { padding-top: 92px; }
  .phil__stamp { width: 72px; height: 72px; }
  .phil__body { margin-top: 16px; }
  .phil__chart { height: 230px; gap: 8px; }
  .phil__bar .pico { width: 22px; height: 22px; margin-bottom: 8px; }
  .phil__bar span { font-size: 8.5px; letter-spacing: 1.2px; margin-top: 8px; }
  .phil__cap { margin-top: 18px; font-size: 18px; }

  .otc__grid { grid-template-columns: 1fr; max-width: none; }
  .mural { padding-top: 34px; }
  .mural__stage { padding: 12px 20px 56px; }
  .mural__stamps { padding: 0 24px 24px; }
  .mural__stamps span:nth-child(2), .mural__stamps span:nth-child(3) { display: none; }
  .vrow { grid-template-columns: 20px 1fr; }
  .vrow__desc { grid-column: 2; }
}
