/* =========================================================
   Jack Smiley — v2 modern editorial
   Palette: ink / bone / signature warm orange
   Type: Fraunces (display serif) + Inter (UI sans)
   ========================================================= */

:root {
  --ink:        #0E1216;
  --ink-soft:   #181D24;
  --ink-line:   rgba(255,255,255,0.08);
  --paper:      #F4F0E8;
  --paper-2:    #EAE3D2;
  --paper-3:    #DDD3BD;
  --muted:      #6F695F;
  --muted-d:    #A89E8B;
  --accent:     #1E7A40;
  --accent-2:   #155A2C;
  --accent-soft:rgba(30,122,64,0.12);
  --line:       rgba(14,18,22,0.10);

  --radius:     16px;
  --radius-lg:  24px;
  --maxw:       1240px;

  --t:          cubic-bezier(0.22,1,0.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Instrument Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- type ---------- */
/* Headings get `text-wrap: balance` so the last word never lands alone
   on its own line (no widows / orphans). Supported in all modern evergreen
   browsers; older browsers fall back to normal wrapping with no harm. */
.section-title, .hero__title, h1, h2, h3,
.about-hero__title, .manifesto__title, .modal__title,
.hook__lede, .intro__lede, .pull-quote__text {
  text-wrap: balance;
}
.section-title, .hero__title, h1, h2, h3 {
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
}
.section-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.04;
  font-weight: 600;
}
.section-title em {
  font-style: normal;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.035em;
}
.section-title--light { color: var(--paper); }
.section-title--light em { color: var(--accent); }
.section-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 1rem 0 0;
}
.section-sub--light { color: var(--muted-d); }
.eyebrow {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
}
.eyebrow--light { color: var(--accent); }
.eyebrow--dark  { color: var(--accent-2); }
.lede {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink);
  max-width: 60ch;
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--t), background .25s var(--t), color .25s var(--t), border-color .25s var(--t);
  white-space: nowrap;
}
.btn__arrow { display: inline-block; transition: transform .25s var(--t); }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.btn--accent {
  background: var(--accent);
  color: var(--paper);
}
.btn--accent:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn--ink {
  background: var(--ink);
  color: var(--paper);
}
.btn--ink:hover { background: #000; transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--paper);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--paper); }
/* Text link button — refined hover/focus.
   Underline lives in a pseudo-element so we can animate it (color thicken
   + slight grow) instead of a stiff border toggle. Default browser focus
   box is replaced with an intentional underline-emphasis. */
.btn--link {
  padding: 0.55rem 0;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  border: none;
  font-weight: 500;
  position: relative;
  transition: color .25s var(--t);
}
.btn--link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform-origin: left center;
  transition: background .3s var(--t), transform .35s var(--t), height .25s var(--t);
}
.btn--link::after {
  content: " →";
  display: inline-block;
  margin-left: 0.3rem;
  transition: transform .3s var(--t), color .25s var(--t);
}
.btn--link:hover,
.btn--link:focus-visible { color: var(--accent-2); }
.btn--link:hover::after,
.btn--link:focus-visible::after { transform: translateX(4px); }
.btn--link:hover::before,
.btn--link:focus-visible::before {
  background: var(--accent-2);
  height: 2px;
}
.btn--link:focus { outline: none; }
.btn--link:focus-visible { outline: none; }

/* Global focus ring for the rest of the buttons — visible for keyboard
   users but styled to match the brand instead of the browser default. */
.btn:focus { outline: none; }
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.02rem; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--t), transform .9s var(--t); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s var(--t), border-color .3s var(--t), backdrop-filter .3s var(--t);
  border-bottom: 1px solid transparent;
}
/* On pages without a dark hero behind the nav (form pages),
   give the nav a permanent dark background so the white wordmark
   and links stay readable against the tan/paper canvas. */
body.page-book .nav {
  background: rgba(14,18,22,0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--ink-line);
}
body.page-book .nav__logo { filter: none; }
.nav.is-scrolled {
  background: rgba(14,18,22,0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--ink-line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; gap: 2rem;
  color: var(--paper);
}
.nav__brand {
  display: inline-flex; align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.nav__logo {
  display: block;
  height: 56px;
  width: auto;
  /* Slight contrast lift so the white wordmark stays readable when the
     nav background is transparent over the hero photo */
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.45));
  transition: height .25s var(--t);
}
.nav.is-scrolled .nav__logo {
  height: 48px;
  filter: none;
}
@media (max-width: 600px) {
  .nav__logo { height: 44px; }
  .nav.is-scrolled .nav__logo { height: 40px; }
}
.nav__links {
  margin-left: auto;
  display: flex; gap: 1.7rem;
  font-size: 0.93rem;
}
.nav__links a {
  text-decoration: none; color: var(--paper);
  opacity: 0.85;
  padding: 0.3rem 0;
  position: relative;
  transition: opacity .2s, color .2s;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--t);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { padding: 0.7rem 1.15rem; font-size: 0.88rem; }
.nav__toggle { display: none; }

@media (max-width: 920px) {
  .nav__inner { position: relative; flex-wrap: wrap; }

  /* Flex order keeps brand + toggle on the first row no matter what.
     nav__links and nav__cta wrap below when the menu opens. */
  .nav__brand   { order: 0; }
  .nav__toggle  { order: 1; }
  .nav__links   { order: 2; flex-basis: 100%; }
  .nav__cta     { order: 3; flex-basis: 100%; }

  .nav__links, .nav__cta { display: none; }
  .nav__toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    margin-left: auto;
    background: transparent; border: none; cursor: pointer; padding: 8px;
  }
  .nav__toggle span { width: 22px; height: 2px; background: var(--paper); display: block; }

  .nav.is-open { background: var(--ink); }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 0.6rem;
    padding: 1rem 0 0.5rem;
    font-size: 1.05rem;
  }
  .nav.is-open .nav__cta {
    display: inline-flex;
    align-self: flex-start;
    margin: 0 0 0.6rem;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  padding: 9rem 0 7rem;
}
.hero__photo { position: absolute; inset: 0; z-index: -1; }
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Push the subject toward the right edge so Jack's face sits clear of the
     left-aligned headline text. */
  object-position: 88% center;
  filter: saturate(1.05);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,18,22,0.30) 0%, rgba(14,18,22,0.55) 55%, rgba(14,18,22,0.95) 100%),
    linear-gradient(90deg, rgba(14,18,22,0.90) 0%, rgba(14,18,22,0.65) 45%, rgba(14,18,22,0.20) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
}
.hero__grid {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
}
.hero__copy { max-width: 720px; }
.hero__title {
  /* 5:3 ratio with .hero__title-tag below.
     Sized so "The Smiley Standard." fits on two lines without overpowering
     the portrait or wrapping awkwardly. */
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0.4rem 0 1rem;
  display: flex; flex-direction: column;
}
.hero__title-line { display: block; }
.hero__title-line--italic {
  font-style: normal;
  font-weight: 300;
  color: var(--paper);
}
.hero__lede {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.55;
  max-width: 58ch;
  margin: 0 0 2rem;
  color: var(--muted-d);
}
.hero__lede em {
  color: var(--paper);
  font-style: italic;
  font-weight: 500;
}
.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero__ticker {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.1rem 0;
  border-top: 1px solid var(--ink-line);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
}
.hero__ticker-label {
  flex: 0 0 auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-d);
  font-weight: 600;
  white-space: nowrap;
  border-right: 1px solid var(--ink-line);
  padding-right: 1.5rem;
}
.marquee--hero {
  flex: 1 1 auto;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee--hero .marquee__track { animation-duration: 35s; }
.marquee--hero .logo-slot {
  color: var(--paper);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  height: 36px;
  min-width: 0;
  padding: 0 1.6rem;
  border-left: 1px solid var(--ink-line);
  text-transform: uppercase;
}
.marquee--hero .logo-slot:first-child { border-left: none; }
@media (max-width: 700px) {
  .hero__ticker-label { display: none; }
}

/* ============================================================
   INTRO STATEMENT
   ============================================================ */
.intro { padding: clamp(5rem, 9vw, 7.5rem) 0; }
.intro__inner { max-width: 1000px; }
.intro__lede {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--muted);
}
.intro__lede span {
  display: block;
  color: var(--ink);
  margin-top: 0.5rem;
}
.intro__lede em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-2);
}

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: "";
  position: absolute; right: -100px; top: -120px;
  width: 380px; height: 380px;
  border: 1px solid var(--ink-line);
  border-radius: 50%;
}
.quote::after {
  content: "";
  position: absolute; left: -180px; bottom: -180px;
  width: 320px; height: 320px;
  border: 1px solid var(--ink-line);
  border-radius: 50%;
}
.quote__inner { max-width: 880px; text-align: center; position: relative; }
.quote__mark { width: 42px; color: var(--accent); margin: 0 auto 1.4rem; }
.quote blockquote {
  font-family: 'Instrument Sans', sans-serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0;
}
.quote__attr {
  margin-top: 2rem; color: var(--accent);
  letter-spacing: 0.18em; font-size: 0.78rem;
  text-transform: uppercase; font-weight: 600;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: clamp(5rem, 10vw, 9rem) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.45);
}
.about__tag {
  position: absolute;
  bottom: -1.2rem; left: -1rem;
  background: var(--ink); color: var(--accent);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 30px -18px rgba(0,0,0,0.4);
}
.about__copy .section-title { margin-top: 0.3rem; }
.about__copy .lede { margin-top: 1.4rem; }
.about__actions {
  margin-top: 2rem;
  display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center;
}
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; margin-inline: auto; }
  .about__tag { left: 1rem; }
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--paper-2); }
.section-head { margin-bottom: 3.2rem; max-width: 64ch; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow,
.story__centered .eyebrow { display: flex; justify-content: center; }
.section-head--center .eyebrow::after,
.story__centered .eyebrow::after {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
}
.industry-card { grid-column: span 2; }
.industry-card:nth-child(4) { grid-column: span 3; }
.industry-card:nth-child(5) { grid-column: span 3; }

@media (max-width: 1000px) {
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .industry-card, .industry-card:nth-child(4), .industry-card:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 600px) {
  .industries__grid { grid-template-columns: 1fr; }
}

.industry-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform .35s var(--t), box-shadow .35s var(--t);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -30px rgba(0,0,0,0.35);
}
.industry-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.industry-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--t), filter .4s var(--t);
}
.industry-card:hover .industry-card__media img { transform: scale(1.05); }
.industry-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
  position: relative;
}
.industry-card__num {
  position: absolute;
  top: -0.8rem; right: 1.4rem;
  background: var(--accent);
  color: var(--paper);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.14em;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}
.industry-card__body h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  margin: 0 0 0.45rem;
}
.industry-card__body p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.industry-card__cta {
  display: inline-flex; align-items: center; gap: 0.25rem;
  margin-top: 1.1rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  transition: gap .25s var(--t);
}
.industry-card:hover .industry-card__cta { gap: 0.55rem; }

/* ============================================================
   SPEAKING TOPICS
   ============================================================ */
.topics { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--paper); }
.topics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 1000px) { .topics__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .topics__grid { grid-template-columns: 1fr; } }
.topic {
  background: var(--paper-2);
  border: 1px solid transparent;
  border-radius: 22px;
  padding: 2rem 1.8rem 1.9rem;
  position: relative;
  transition: transform .3s var(--t), background .3s var(--t), border-color .3s var(--t);
  overflow: hidden;
}
.topic::before {
  content: "";
  position: absolute; inset: auto -40% -60% auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(30,122,64,0.20), transparent 70%);
  opacity: 0;
  transition: opacity .4s var(--t);
  pointer-events: none;
}
.topic:hover {
  transform: translateY(-3px);
  background: var(--paper);
  border-color: var(--line);
}
.topic:hover::before { opacity: 1; }
.topic__num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: inline-block;
  margin-bottom: 1rem;
}
.topic h3 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  margin: 0 0 0.7rem;
  letter-spacing: -0.015em;
}
.topic p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.topic__pill {
  display: inline-block;
  margin-left: 0.6rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--accent);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  vertical-align: middle;
}

/* ============================================================
   MONTAGE
   ============================================================ */
.montage { background: var(--ink); color: var(--paper); padding: clamp(5rem, 10vw, 9rem) 0; }
.montage__inner { display: flex; flex-direction: column; align-items: center; }
.montage__player {
  position: relative;
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.montage__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.7);
  transition: filter .4s var(--t), transform .8s var(--t);
}
.montage__player:hover .montage__poster {
  filter: saturate(1.05) brightness(0.6);
  transform: scale(1.03);
}
.play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  color: var(--paper);
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .3s var(--t), background .3s var(--t);
}
.montage__player:hover .play { transform: translate(-50%, -50%) scale(1.06); background: var(--accent); border-color: var(--accent); }
.play svg { width: 30px; height: 30px; margin-left: 4px; }
.montage__hint {
  position: absolute; bottom: 14px; left: 18px;
  font-size: 0.74rem; color: var(--muted-d);
  letter-spacing: 0.04em;
}

/* ============================================================
   MARQUEE (shared)
   ============================================================ */
.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: inline-flex;
  gap: 3.5rem;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}
.logo-slot {
  flex: 0 0 auto;
  height: 64px;
  min-width: 160px;
  display: grid; place-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding: 0 2rem;
}
.logo-slot:first-child { border-left: none; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============================================================
   BOOK
   ============================================================ */
.book {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 0;
  text-align: center;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.book__bg { position: absolute; inset: 0; z-index: -1; }
.book__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.45);
}
.book__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,18,22,0.5), rgba(14,18,22,0.92));
}
.book .section-title { margin-bottom: 0.4rem; }
.book .section-sub { margin: 1rem auto 0; }
.book .btn { margin-top: 2.2rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
  padding: 8rem 0 4rem;
}
.about-hero__photo { position: absolute; inset: 0; z-index: -1; }
.about-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.05);
}
.about-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,18,22,0.35) 0%, rgba(14,18,22,0.55) 50%, rgba(14,18,22,0.95) 100%),
    linear-gradient(90deg, rgba(14,18,22,0.65) 0%, rgba(14,18,22,0.20) 60%, rgba(14,18,22,0.10) 100%);
}
.about-hero__inner { max-width: var(--maxw); margin: 0 auto; }
.about-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0.4rem 0 1rem;
}
.about-hero__title-thin {
  font-weight: 300;
  color: var(--paper);
}
.about-hero__sub {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-d);
  margin: 0;
  font-weight: 500;
}

.hook { padding: clamp(5rem, 9vw, 7.5rem) 0; }
.hook__inner { max-width: 820px; }
.hook__inner--wide { max-width: 1100px; }

.hook__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.hook__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.45);
}
.hook__copy .story-body { max-width: 60ch; }
@media (max-width: 800px) {
  .hook__grid { grid-template-columns: 1fr; }
  .hook__media { max-width: 480px; margin-inline: auto; }
  .hook__media img { aspect-ratio: 4 / 4.5; }
}
.hook__lede {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--muted);
  margin: 0 0 2.5rem;
}
.hook__lede span {
  display: block;
  color: var(--ink);
  margin-top: 0.4rem;
}
.hook__lede em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-2);
}

.story { padding: clamp(4rem, 8vw, 7rem) 0; }
.story--alt { background: var(--paper-2); }
.story__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.story__grid--media-left,
.story__grid--media-right {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.story__head { padding-top: 0.5rem; }
.story__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.45);
}
.story__grid--media-right .story__media { order: 2; }
.story__grid--media-right .story__copy  { order: 1; }
@media (max-width: 900px) {
  .story__grid,
  .story__grid--media-left,
  .story__grid--media-right { grid-template-columns: 1fr; }
  .story__grid--media-right .story__media,
  .story__grid--media-right .story__copy { order: initial; }
  .story__media { max-width: 540px; margin-inline: auto; }
}
.story__centered { max-width: 760px; margin: 0 auto; text-align: left; }

/* Headline → body breathing room. Without this the section-title hugs the
   first paragraph because both have margin: 0 by default. */
.story__copy   .section-title,
.story__centered .section-title,
.story__head    .section-title,
.story__body    .section-title,
.form-page__title { margin-bottom: 1.4rem; }
.story__copy   .section-title + .story-body,
.story__centered .section-title + .story-body,
.story__body    .section-title + .story-body,
.story__body    > .story-body:first-child,
.story__copy   .lede,
.story__copy   .story-body:first-of-type { margin-top: 0; }

.story-body {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 1.2rem;
  max-width: 60ch;
}
.story-body:last-child { margin-bottom: 0; }
.story-body--lead {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.35;
  margin-top: 1.6rem;
}
.story-body--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-title--center { text-align: center; margin-left: auto; margin-right: auto; max-width: 22ch; }

.pull-quote {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: "";
  position: absolute; left: 50%; top: -1px;
  width: 80px; height: 3px;
  background: var(--accent);
  transform: translateX(-50%);
}
.pull-quote__inner { max-width: 880px; text-align: center; }
.pull-quote__text {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 4.5vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
  color: var(--paper);
}
.pull-quote__text span {
  display: block;
  color: var(--accent);
  font-weight: 300;
  margin-top: 0.3rem;
}

.manifesto {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.manifesto__bg { position: absolute; inset: 0; z-index: -1; }
.manifesto__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7) brightness(0.4);
}
.manifesto__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,18,22,0.55), rgba(14,18,22,0.92));
}
.manifesto__inner { max-width: 920px; }
.manifesto__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0.4rem 0 1.5rem;
}
.manifesto__title span {
  color: var(--accent);
  font-weight: 300;
}
.manifesto__body {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--muted-d);
  max-width: 60ch;
  margin: 0 0 1.2rem;
}
.manifesto__close {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--accent);
  margin: 1.5rem 0 0;
  letter-spacing: -0.01em;
}

/* ============================================================
   INDUSTRY / TOPIC LANDING PAGES
   ============================================================ */
.takeaways {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  counter-reset: takeaway;
}
.takeaways li {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem 1.4rem 1.4rem 4.5rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  counter-increment: takeaway;
}
.takeaways li::before {
  content: counter(takeaway, decimal-leading-zero);
  position: absolute; left: 1.3rem; top: 1.3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.takeaways li strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.story--alt .takeaways li { background: var(--paper); }
.takeaways--center { max-width: 760px; margin: 2rem auto 0; text-align: left; }

/* breadcrumb pill at top of industry pages */
.crumb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-d);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
}
.crumb::before {
  content: "←";
  display: inline-block;
}
.crumb:hover { color: var(--accent); }

/* ============================================================
   BOOK NOW MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(14,18,22,0.78);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
}
.modal.is-open { display: flex; animation: fadeIn .25s var(--t); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__card {
  width: 100%;
  max-width: 760px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.5);
}
.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border: none; background: transparent;
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s var(--t);
}
.modal__close:hover { background: var(--paper-2); }
.modal__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
}
.modal__sub {
  font-family: 'Instrument Sans', sans-serif;
  color: var(--muted);
  margin: 0 0 1.8rem;
  font-size: 1rem;
}
.modal__options {
  display: grid;
  gap: 0.8rem;
}
.modal__option {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: 14px;
  background: var(--paper-2);
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s var(--t), background .2s var(--t), border-color .2s var(--t);
}
.modal__option:hover { transform: translateY(-2px); background: var(--paper); border-color: var(--accent); }
.modal__option-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}
.modal__option-text { display: flex; flex-direction: column; gap: 0.15rem; }
.modal__option-text strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.modal__option-text span {
  font-family: 'Instrument Sans', sans-serif;
  color: var(--muted);
  font-size: 0.9rem;
}
.modal__option-cta {
  margin-left: auto;
  color: var(--accent);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}
body.modal-open { overflow: hidden; }

/* ============================================================
   CONTACT FORMS
   ============================================================ */
.form-page { padding: clamp(7rem, 12vw, 9rem) 0 clamp(4rem, 6vw, 6rem); background: var(--paper-2); }
.form-page__head { max-width: 720px; margin: 0 auto 2.5rem; }
.form-page__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0.4rem 0 0.8rem;
  text-wrap: balance;
}
.form-page__title em { font-style: normal; font-weight: 300; color: var(--accent); }
.form-page__sub {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.1rem; line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  display: grid;
  gap: 1.1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 620px) { .field--row { grid-template-columns: 1fr; } }
.field label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.field label .req { color: var(--accent); font-weight: 700; margin-left: 0.18rem; }
.field input,
.field select,
.field textarea {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color .2s var(--t), background .2s var(--t);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--paper);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 2.4rem; }
.field--inline {
  display: flex; flex-direction: row; gap: 1.4rem; flex-wrap: wrap;
  padding: 0.4rem 0;
}
.field--inline label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 500;
  cursor: pointer;
}
.field--inline input[type="radio"] {
  width: auto;
  accent-color: var(--accent);
}
.form-actions {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  margin-top: 0.8rem;
}
.form-actions .btn { width: auto; }
.form-help {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
}
.honeypot { display: none !important; }
.form-success {
  background: rgba(30,122,64,0.10);
  border: 1px solid var(--accent);
  border-radius: 14px;
  padding: 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--accent-2);
  margin-bottom: 1.5rem;
  display: none;
}
.form-success.is-visible { display: block; }

/* ============================================================
   RESPONSIVE — tablet + mobile refinements
   The base layout uses clamp() generously, so these media queries
   only add fixes for cases where the desktop-first layout doesn't
   collapse cleanly on narrower screens.
   ============================================================ */

/* Tablet (≤900px) */
@media (max-width: 900px) {
  .container { padding: 0 1.5rem; }
  .nav__inner { padding: 0.9rem 1.5rem; gap: 1rem; }
  .nav__logo { height: 48px; }
  .nav.is-scrolled .nav__logo { height: 42px; }

  /* Hero photo: re-center on Jack instead of the 70% offset used at desktop */
  .hero__photo img,
  .about-hero__photo img,
  .book__bg img,
  .manifesto__bg img { object-position: center center; }

  /* Hero padding can shrink a bit on tablets to give the ticker room */
  .hero { padding: 8rem 0 6.5rem; }

  /* Industry asymmetric grid — at this size we already collapsed to 2-up;
     reset spans so cards stay uniform. */
  .industries__grid > .industry-card,
  .industries__grid > .industry-card:nth-child(4),
  .industries__grid > .industry-card:nth-child(5) { grid-column: span 1; }

  /* Advocacy/blog grids that used inline grid-column spans */
  .industry-card[style*="grid-column: span 3"],
  .industry-card[style*="grid-column: span 2"] { grid-column: span 1 !important; }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  body { font-size: 16px; }

  /* Nav — tighter, smaller logo */
  .nav__inner { padding: 0.8rem 1.25rem; gap: 0.75rem; }
  .nav__logo { height: 40px; }
  .nav.is-scrolled .nav__logo { height: 36px; }

  /* Hero — copy stacks at the bottom of the photo so Jack's face stays
     visible above the text instead of being covered by the eyebrow row */
  .hero {
    min-height: 100vh;
    padding: 6.5rem 0 7rem;
    justify-content: flex-end;
  }
  /* Pull the subject up in the frame so face is in the upper third */
  .hero__photo img { object-position: 50% 28%; }

  /* Hero title — kept proportional to the 5:3 ratio with the title-tag below */
  .hero__title {
    display: block;
    font-size: clamp(2.8rem, 12vw, 4.5rem);
    line-height: 0.95;
    margin: 0.3rem 0 0.9rem;
  }
  .hero__title-line { display: inline; }
  .hero__title-line--italic { display: inline; padding-left: 0; }

  /* Eyebrow — quieter so it stops fighting the photo */
  .hero .eyebrow,
  .hero .eyebrow--light {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.7rem;
  }
  .hero .eyebrow::before { width: 16px; }

  .hero__lede { font-size: 1rem; max-width: 38ch; }
  .hero__actions .btn { padding: 0.85rem 1.2rem; font-size: 0.88rem; }

  /* Hero ticker — tighter on tiny screens */
  .hero__ticker { padding: 0.9rem 0; gap: 0; }
  .marquee--hero .logo-slot {
    font-size: 0.95rem;
    padding: 0 1.1rem;
    height: 32px;
  }

  /* About hero — keep it shorter */
  .about-hero { min-height: 60vh; padding: 6.5rem 0 3rem; }
  .about-hero__title { font-size: clamp(3rem, 13vw, 4.2rem); }
  .about-hero__sub { font-size: 0.8rem; letter-spacing: 0.14em; }
  .crumb { font-size: 0.72rem; }

  /* Typography rhythm */
  .section-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .intro__lede, .hook__lede { font-size: clamp(1.45rem, 6vw, 2rem); line-height: 1.22; }
  .pull-quote__text { font-size: clamp(1.5rem, 7vw, 2.4rem); }
  .manifesto__title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .quote blockquote { font-size: clamp(1.2rem, 5vw, 1.5rem); }

  /* Story body — slightly smaller, more breathable */
  .story-body { font-size: 1.02rem; line-height: 1.6; }
  .story-body--lead { font-size: 1.15rem; }

  /* Section paddings — pull in */
  .intro, .hook, .about, .industries, .topics, .montage, .quote, .pull-quote,
  .story, .book, .manifesto {
    padding-top: clamp(3.5rem, 9vw, 5rem);
    padding-bottom: clamp(3.5rem, 9vw, 5rem);
  }

  /* Industry cards */
  .industry-card__body { padding: 1.1rem 1.25rem 1.3rem; }
  .industry-card__body h3 { font-size: 1.25rem; }

  /* Topic cards */
  .topic { padding: 1.5rem 1.35rem 1.55rem; border-radius: 18px; }
  .topic h3 { font-size: 1.2rem; }

  /* Takeaway cards */
  .takeaways li {
    padding: 1.1rem 1.1rem 1.2rem 3.4rem;
    font-size: 1rem;
  }
  .takeaways li::before { left: 1rem; top: 1.1rem; }

  /* Story grids — collapse already happens at 900px; ensure media isn't huge */
  .story__media img { aspect-ratio: 4 / 4.5; }
  .about__photo { aspect-ratio: 4 / 4.5; }

  /* Modal */
  .modal { padding: 1rem; }
  .modal__card { padding: 1.6rem 1.4rem; border-radius: 18px; }
  .modal__title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .modal__option { padding: 1rem 1.1rem; gap: 0.85rem; }
  .modal__option-icon { width: 38px; height: 38px; font-size: 0.8rem; }
  .modal__option-text strong { font-size: 1rem; }
  .modal__option-text span { font-size: 0.85rem; }

  /* Form pages */
  .form-page { padding: 6rem 0 3.5rem; }
  .form-page__title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .contact-form { padding: 1.4rem; gap: 0.9rem; border-radius: 18px; }
  .field input, .field select, .field textarea { padding: 0.8rem 0.9rem; font-size: 0.95rem; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 3rem 0 1.4rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer__logo { width: 180px; }
  .footer__base { flex-direction: column; align-items: flex-start; }

  /* Mobile-menu spacing tweak */
  .nav.is-open .nav__links a { padding: 0.5rem 0; font-size: 1.05rem; }

  /* Center-align section content on mobile so the layout reads consistently
     — left-aligned text blocks next to centered ones felt off on narrow viewports. */
  .intro__inner,
  .hook__inner,
  .section-head,
  .about__copy,
  .story__head,
  .story__copy,
  .story__centered { text-align: center; margin-left: auto; margin-right: auto; }
  .intro__lede span,
  .hook__lede span { display: block; }
  .intro .eyebrow,
  .hook .eyebrow,
  .section-head .eyebrow,
  .about__copy .eyebrow,
  .story__head .eyebrow,
  .story__copy .eyebrow,
  .story__centered .eyebrow { justify-content: center; }
  .section-sub,
  .lede,
  .story-body { margin-left: auto; margin-right: auto; }
  .about__actions { justify-content: center; }

  /* About preview "Smiley Strong" tag stays centered when image is centered */
  .about__media { display: flex; flex-direction: column; align-items: center; }
  .about__tag { position: static; margin-top: -0.6rem; }

  /* Footer columns center on mobile so the 1-col stack reads cleanly */
  .footer__col { text-align: center; align-items: center; }
  .footer__col--brand { align-items: center; }
  .footer__col a,
  .footer__col p { overflow-wrap: break-word; }
  .footer__base { text-align: center; }
}

/* Extra-small phones (≤380px) */
@media (max-width: 380px) {
  .nav__logo { height: 36px; }
  .hero__title { font-size: clamp(2.5rem, 13vw, 3.4rem); }
  .about-hero__title { font-size: clamp(2.6rem, 13vw, 3.5rem); }
  .hero__ticker-label { display: none; }
  .hero .eyebrow,
  .hero .eyebrow--light { font-size: 0.62rem; letter-spacing: 0.14em; }
}

/* Prefers-reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  .marquee__track,
  .industry-card,
  .industry-card__media img,
  .btn,
  .reveal,
  .topic,
  .modal { transition: none !important; animation: none !important; }
}

/* ============================================================
   HERO — title tag (Resilience. Fortitude. Purpose.)
   ============================================================ */
.hero__title-tag {
  /* Three-words tag at "3" in the 5:3 ratio with .hero__title — large enough
     to read as a co-headline rather than a subtitle. */
  display: block;
  margin-top: clamp(0.6rem, 1.4vw, 1rem);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: clamp(1.65rem, 4.8vw, 3.9rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.05;
}
@media (max-width: 640px) {
  .hero__title-tag {
    font-size: clamp(1.7rem, 7.2vw, 2.7rem);
    letter-spacing: 0.015em;
    margin-top: 0.6rem;
  }
}
@media (max-width: 380px) {
  .hero__title-tag { font-size: clamp(1.5rem, 7.8vw, 2.04rem); }
}

/* ============================================================
   MONTAGE — soft variant (no header, blends into page)
   Used on the home page right under the hero ticker.
   ============================================================ */
.montage--soft {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.montage--soft .montage__player {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  isolation: isolate;
}
.montage--soft .montage__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Feather the edges into the page — no harsh block */
  -webkit-mask-image: radial-gradient(ellipse at center, #000 55%, transparent 95%);
          mask-image: radial-gradient(ellipse at center, #000 55%, transparent 95%);
  filter: saturate(1.02) contrast(1.02);
  position: static;
  border-radius: 14px;
}
.montage--soft .play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: var(--paper);
}
.montage--soft .play svg { width: 30px; height: 30px; margin-left: 4px; }
.montage--soft .montage__player:hover .play {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.06);
}
@media (max-width: 640px) {
  .montage--soft { padding: 1.8rem 0 2.4rem; }
  .montage--soft .play { width: 70px; height: 70px; }
  .montage--soft .play svg { width: 24px; height: 24px; }
}

/* ============================================================
   LANDING-STORY — intro + quote + about in one unified canvas
   No color split between them so they read as one statement.
   ============================================================ */
.landing-story {
  background: var(--paper);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(5rem, 9vw, 7.5rem);
}
.landing-story__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

/* lede */
.landing-story__lede { max-width: 920px; margin: 0 auto; text-align: center; }
.landing-story__lede .eyebrow { justify-content: center; }
.landing-story__lede .intro__lede {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--muted);
  margin: 0;
  text-wrap: balance;
}
.landing-story__lede .intro__lede span {
  display: block;
  color: var(--ink);
  margin-top: 0.5rem;
}
.landing-story__lede .intro__lede em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-2);
}

/* quote */
.landing-story__quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.landing-story__quote .quote__mark {
  width: 36px;
  color: var(--accent);
  margin: 0 auto 1.2rem;
}
.landing-story__quote p {
  font-family: 'Instrument Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.landing-story__quote cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
}

/* about preview within unified story */
.landing-story__about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.landing-story__about-media .about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.45);
}
.landing-story__about-copy .section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.landing-story__about-copy .lede { margin-top: 1.2rem; }
.landing-story__about-copy .about__actions { margin-top: 1.8rem; }

@media (max-width: 800px) {
  .landing-story__about { grid-template-columns: 1fr; }
  .landing-story__about-media { max-width: 480px; margin-inline: auto; }
}

/* ============================================================
   LONGFORM — plain paragraph article (About, Industry pages)
   Same font, same size, gentle rhythm. No fancy chapters.
   ============================================================ */
.longform { padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem); background: var(--paper); }
.longform__inner { max-width: 720px; }
.longform p {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 1.4rem;
  text-wrap: pretty;
}
.longform__lede {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 500 !important;
  font-size: clamp(1.45rem, 2.6vw, 2rem) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em;
  color: var(--ink) !important;
  margin-bottom: 2rem !important;
  text-wrap: balance;
}
.longform__figure {
  margin: clamp(2rem, 4vw, 3rem) 0;
}
.longform__figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.longform__cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  justify-content: center;
}
@media (max-width: 640px) {
  .longform p { font-size: 1.05rem; line-height: 1.7; }
  .longform__lede { font-size: 1.3rem !important; }
}

/* About hero — slimmer when on plain about page */
.page-about .about-hero { min-height: 56vh; padding: 7rem 0 3.5rem; }
.page-about .about-hero__title { font-size: clamp(3rem, 8vw, 5.5rem); }

/* Advocacy hero — centered, with the title sized so "Jack works with." fits */
.page-advocacy .about-hero__inner {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.page-advocacy .about-hero__inner .eyebrow { justify-content: center; }
.page-advocacy .about-hero__title { font-size: clamp(2.6rem, 7vw, 5.2rem); }

/* ============================================================
   MEDIA PAGE — one unified grid, logo-led cards
   ============================================================ */
.media-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--paper);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 980px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .media-grid { grid-template-columns: 1fr; } }

.media-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s var(--t), box-shadow .25s var(--t), border-color .25s var(--t);
}
.media-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -30px rgba(0,0,0,0.32);
  border-color: rgba(20,17,15,0.16);
}

/* Logo plate — featured-image area at the top of each card */
.media-card__logo {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.media-card__logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: saturate(1.05);
  transition: transform .35s var(--t);
}
.media-card:hover .media-card__logo img { transform: scale(1.08); }
.media-card__logo--youtube { background: #FF0000; }
.media-card__logo--youtube img { background: #fff; border-radius: 12px; padding: 6px; width: 56px; height: 56px; }

/* Video thumbnail variant — fills the plate, with a play overlay */
.media-card__logo--video {
  background: #000;
  padding: 0;
}
.media-card__logo--video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  transition: transform .45s var(--t), filter .25s var(--t);
}
.media-card:hover .media-card__logo--video img {
  filter: brightness(0.78);
  transform: scale(1.04);
}
.media-card__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 1rem;
  font-weight: 700;
  padding-left: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: transform .25s var(--t), background .25s var(--t), color .25s var(--t);
  z-index: 2;
}
.media-card:hover .media-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent);
  color: var(--paper);
}

/* Category pill — the "text box highlight" */
.media-card__cat {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}

/* Card body */
.media-card__source {
  display: block;
  margin: 1.15rem 1.4rem 0.35rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-2);
}
.media-card h3 {
  margin: 0 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
.media-card__cta {
  margin: 1rem 1.4rem 1.3rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap .25s var(--t);
  align-self: stretch;
}
.media-card:hover .media-card__cta { gap: 0.55rem; }

@media (max-width: 560px) {
  .media-card__logo img { width: 52px; height: 52px; }
  .media-card__logo--youtube img { width: 48px; height: 48px; padding: 5px; }
  .media-card h3 { font-size: 1.08rem; }
}

/* ============================================================
   TAKEAWAY BUBBLES — second scroll on industry pages
   ============================================================ */
.bubbles {
  background: var(--paper-2);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 7rem);
}
.bubble-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  max-width: 1000px;
  margin: 0 auto;
}
.bubble {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.005em;
  transition: transform .25s var(--t), background .25s var(--t), border-color .25s var(--t), color .25s var(--t);
  cursor: default;
}
.bubble:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.bubbles__cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  justify-content: center;
}
@media (max-width: 640px) {
  .bubble { font-size: 0.92rem; padding: 0.8rem 1.15rem; }
}

/* ============================================================
   TEMP — Partnerdash ownership verification strip
   Remove this block (and the .verify-strip div in every HTML page)
   once Jack has taken the screenshot.
   ============================================================ */
.verify-strip {
  text-align: center;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  background: rgba(30,122,64,0.10);
  border-top: 1px solid var(--ink-line);
  padding: 0.75rem 1rem;
  word-break: break-word;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--paper); padding: 4.5rem 0 1.6rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__col { text-align: center; align-items: center; }
  .footer__col--brand { align-items: center; }
  .footer__base { flex-direction: column; align-items: center; text-align: center; }
}
.footer__col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem; margin: 0 0 0.2rem;
}
.footer__col--brand { gap: 0.75rem; }
.footer__logo {
  width: 220px; height: auto; max-width: 100%;
  border-radius: 6px;
  margin: 0 0 0.4rem;
}
.footer__tag {
  color: var(--accent);
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer__sub { color: var(--muted-d); margin: 0.1rem 0 0; font-size: 0.92rem; }
.footer__h {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.footer__col a {
  color: var(--paper);
  text-decoration: none;
  opacity: 0.85;
  font-size: 0.95rem;
  transition: opacity .2s, color .2s;
}
.footer__col a:hover { opacity: 1; color: var(--accent); }
.footer__base {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--ink-line);
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: 0.8rem; color: var(--muted-d);
}
@media (max-width: 600px) { .footer__base { flex-direction: column; } }
