/* ═══════════════════════════════════════════════════════
   MATTHEW KOCHMANN — Editorial Creative Exploration
   Magazine layout · Kinetic type · Narrative scroll
   Oversized typography · Asymmetric bento · Bold color
   ═══════════════════════════════════════════════════════ */

/* ── Fonts ── */
@font-face { font-family: 'Souvenir Std'; src: url('assets/fonts/SouvenirStd-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Souvenir Std'; src: url('assets/fonts/SouvenirStd-LightItalic.woff2') format('woff2'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Souvenir Std'; src: url('assets/fonts/SouvenirStd-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Souvenir Std'; src: url('assets/fonts/SouvenirStd-MediumItalic.woff2') format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Souvenir Std'; src: url('assets/fonts/SouvenirStd-Demi.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Souvenir Std'; src: url('assets/fonts/SouvenirStd-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

@font-face { font-family: 'Basis Grotesque Pro'; src: url('assets/fonts/BasisGrotesquePro-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Basis Grotesque Pro'; src: url('assets/fonts/BasisGrotesquePro-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Basis Grotesque Pro'; src: url('assets/fonts/BasisGrotesquePro-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* ── Tokens ── */
:root {
  --cream:         #F4EEE2;
  --cream-warm:    #EDE6D6;
  --burnt-orange:  #8B3D1F;
  --orange-bright: #A04A24;
  --sage:          #2E4A3A;
  --sage-mid:      #3D6350;
  --sage-light:    #5E8A73;
  --text-primary:  #1E1E1A;
  --text-body:     #3A3930;
  --text-muted:    #7E796D;
  --white:         #FDFBF7;

  --serif:  'Souvenir Std', Georgia, serif;
  --sans:   'Basis Grotesque Pro', 'Helvetica Neue', Arial, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text-primary);
  background: var(--cream);
  background-image:
    url('assets/paper-texture.svg'),
    radial-gradient(ellipse at 20% 0%, rgba(200,188,166,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(200,188,166,0.2) 0%, transparent 50%);
  background-size: 400px 400px, 100% 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════
   OPENING — Full-viewport cinematic name reveal
   Asymmetric: portrait left, oversized name right
   ═══════════════════════════════════════════════════════ */
.opening {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vh, 3rem) clamp(2rem, 6vw, 6rem);
  position: relative;
}

.opening__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(2.5rem, 4.5vw, 4rem);
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  /* Compensate for the sage bar's 18px left overhang so the visible hero mass
     (bar edge → text right edge) is centered under the scroll cue on desktop. */
  padding-left: 18px;
}

/* Portrait wrapper is intrinsic to image; JS sets --img-h to (text-visible-height + 30px) so overhang = 15px each side */
.opening__portrait {
  position: relative;
  align-self: start;
  display: inline-block;
  line-height: 0;
  --img-overhang: 15px;
  margin-top: calc(var(--img-overhang) * -1);
}

/* Image height driven by --img-h CSS variable set from JS. Fallback to a sensible clamp if JS fails. */
.opening__img {
  height: var(--img-h, clamp(440px, 55vh, 560px));
  aspect-ratio: 4 / 5;
  width: auto;
  max-width: clamp(340px, 32vw, 480px);
  object-fit: cover;
  object-position: 50% 42%;
  filter: contrast(1.05) saturate(0.95);
  display: block;
}

/* ── Corner foliage decoration (sage/olive on cream) ── */
.corner-foliage {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(180px, 26vw, 360px);
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.9;
}

/* Sage accent bar — desktop: 15px overhang; mobile (≤900px, image stacks above text): 5px overhang */
/* Width matches .opening__rule (2px) so weights are consistent across the hero */
.opening__portrait::after {
  content: '';
  position: absolute;
  top: -15px;
  bottom: -15px;
  left: -18px;
  width: 2px;
  background: var(--sage);
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
  pointer-events: none;
}
body.loaded .opening__portrait::after {
  opacity: 1;
}

/* ── Kinetic name — oversized Souvenir ── */
.opening__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  color: var(--burnt-orange);
  line-height: 0.93;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

/* Splitting.js — gentle per-character fade */
.opening__name .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

body.loaded .opening__name .char {
  opacity: 1;
  transform: translateY(0);
}

/* Horizontal rule — expands after name loads */
.opening__rule {
  width: 0;
  height: 2px;
  background: var(--sage);
  margin-top: 0.7rem;
  margin-bottom: 0.8rem;
  transition: width 0.8s var(--ease-out) 0.8s;
}
body.loaded .opening__rule {
  width: 60px;
}

.opening__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.18vw, 1.04rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.opening__title--second {
  transition-delay: 0.15s;
}
body.loaded .opening__title {
  opacity: 1;
  transform: translateY(0);
}

/* ── Scroll cue (V2 original) ── */
.opening__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fade-pulse 1.15s var(--ease-out) 1.5s infinite alternate;
}
body.loaded .opening__scroll-cue { opacity: 1; }

@keyframes fade-pulse {
  0% { opacity: 0.95; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0.55; transform: translateX(-50%) translateY(6px); }
}

/* ── Blurb + CTAs in hero ── */
.opening__blurb {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.06rem, 1.24vw, 1.16rem);
  color: #2A2924;
  line-height: 1.5;
  max-width: 580px;
  margin-bottom: 1.3rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out) 0.35s, transform 0.6s var(--ease-out) 0.35s;
}
body.loaded .opening__blurb {
  opacity: 1;
  transform: translateY(0);
}

/* Status tag — soft sage capsule, label not button */
.opening__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0.75rem 0.34rem;
  background: rgba(46, 74, 58, 0.10);
  border: 1px solid rgba(46, 74, 58, 0.14);
  border-radius: 6px;
  color: var(--sage);
  cursor: default;
  pointer-events: none;
  box-shadow: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(0.76rem, 0.88vw, 0.84rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-top: -3rem;
  margin-bottom: 1.3rem;
  max-width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out) 0.4s, transform 0.6s var(--ease-out) 0.4s;
}
.opening__status:hover {
  background: rgba(46, 74, 58, 0.10);
  border-color: rgba(46, 74, 58, 0.14);
  color: var(--sage);
}
body.loaded .opening__status {
  opacity: 1;
  transform: translateY(0);
}
.opening__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3FB160;
  box-shadow: 0 0 0 3px rgba(63, 177, 96, 0.22);
  flex-shrink: 0;
  animation: statusPulse 2.4s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(63, 177, 96, 0.22); }
  50%      { box-shadow: 0 0 0 5px rgba(63, 177, 96, 0.08); }
}
.opening__status-text {
  white-space: normal;
}

/* Wrapper so pill hugs its content and sits left-aligned in the flex column */
.opening__text .opening__status {
  align-self: flex-start;
}

/* Proof line — uppercase credentials strip, transitions to action buttons */
.opening__proof {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burnt-orange);
  line-height: 1.6;
  margin-top: 0.1rem;
  margin-bottom: 1.4rem;
  max-width: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out) 0.5s, transform 0.6s var(--ease-out) 0.5s;
}
body.loaded .opening__proof {
  opacity: 1;
  transform: translateY(0);
}

/* CTA row — NEVER wraps. Everything shrinks proportionally at narrow viewports
   rather than the "Grab 15 Min" link dropping onto its own line. */
.opening__ctas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  min-width: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out) 0.5s, transform 0.6s var(--ease-out) 0.5s;
}
.opening__ctas .cta,
.opening__ctas .cta-link {
  white-space: nowrap;
  flex-shrink: 0;
}
body.loaded .opening__ctas {
  opacity: 1;
  transform: translateY(0);
}

/* Opening CTA hyperlink ("Grab 15 Min") — bolder weight and extra left space
   so it breathes away from the email icon (the link has no button chrome). */
.opening__ctas .cta-link {
  font-weight: 700;
  margin-left: 0.5rem;
}

.cta-link {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 74, 58, 0.35);
  padding-bottom: 2px;
  align-self: center;
  margin-left: 0.75rem;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.cta-link:hover {
  color: var(--burnt-orange);
  border-bottom-color: var(--burnt-orange);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  height: 42px;
  padding: 0 1.3rem;
  border-radius: 3px;
  border: 1.5px solid var(--sage);
  cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.cta--fill {
  background: var(--sage);
  color: var(--cream);
}
.cta--fill:hover {
  background: var(--sage-mid);
  border-color: var(--sage-mid);
}

.cta--outline {
  background: transparent;
  color: var(--sage);
}
.cta--outline:hover {
  background: var(--sage);
  color: var(--cream);
}

.cta--icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 3px;
  color: var(--sage);
}
.cta--icon:hover {
  background: var(--sage);
  color: var(--cream);
}
.cta--icon svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════════════════════
   PULL QUOTE — Full-width dramatic moment
   The "genuine surprise" — oversized italic text,
   sage background, horizontal expand
   ═══════════════════════════════════════════════════════ */
.pullquote {
  background: var(--sage);
  padding: 70px clamp(2rem, 6vw, 6rem) 65px;
  position: relative;
  overflow: hidden;
}

.pullquote__inner {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.pullquote__mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(4rem, 8vw, 8rem);
  color: var(--sage-light);
  opacity: 0.25;
  position: absolute;
  top: -0.3em;
  left: -0.15em;
  line-height: 1;
  user-select: none;
}

.pullquote__text {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--cream);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}



/* ═══════════════════════════════════════════════════════
   WORK — Section header + Bento grid
   ═══════════════════════════════════════════════════════ */
.work {
  /* Bottom padding fixed so the gap to .closing__rule stays ~73px regardless of viewport height */
  padding: clamp(4rem, 8vh, 7rem) clamp(2rem, 6vw, 6rem) 17px;
}

.work__header {
  max-width: 1100px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem) auto;
}

.work__label {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 0.6rem;
}

.work__heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.55rem, 4vw, 3.2rem);
  color: var(--burnt-orange);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* Forced line break — always applies so "Build momentum. Then lead." sits on line 2 at every viewport */
.work__heading-break {
  display: block;
}

/* ── V1-style cards: image top, white body below ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.2vw, 1rem);
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #D2CCC0;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--sage-light);
  box-shadow: 0 8px 24px rgba(30,30,26,0.1), 0 2px 6px rgba(30,30,26,0.05);
}

.card__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.card:hover .card__img {
  transform: scale(1.03);
}

.card__img--top {
  object-position: top;
}

.card__body {
  padding: clamp(0.8rem, 1.3vw, 1.1rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__cat {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 0.25rem;
}

.card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.card__desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.72rem, 0.82vw, 0.78rem);
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════
   CLOSING
   ═══════════════════════════════════════════════════════ */
.closing {
  /* Top padding fixed — pairs with .work padding-bottom to hold ~73px gap to the last card.
     Bottom padding fixed — pairs with .footer padding-top to hold ~73px gap to the footer rule. */
  padding: 54px clamp(2rem, 6vw, 6rem) 70px;
  text-align: center;
}

.closing__inner {
  max-width: 820px;
  margin: 0 auto;
}

.closing__rule {
  width: 50px;
  height: 2px;
  background: var(--sage);
  margin: 0 auto 1.8rem auto;
}

/* Closing headline — wrapper. Font-size acts as the LEDE size.
   Clamp tuned for the 48-char lede "Have a category-defining problem? I'm your fixer."
   Larger min ensures the lede stays readable at all mobile widths. */
.closing__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(0.9rem, 3vw, 1.65rem);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

/* Lede — first sentence: Souvenir Medium (weight 500, matches .opening__name /
   .work__heading / .card__title), roman, sage. Own line, never wraps. */
.closing__lede {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-style: normal;
  color: var(--sage);
  font-size: 1em;
  line-height: 1.25;
  margin-bottom: 0.5em;
  white-space: nowrap;
}

/* Body copy — mirrors .opening__blurb EXACTLY:
   font-family, weight 300 (Light), color, line-height 1.5. Just smaller in size. */
.closing__body {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-style: normal;
  color: #2A2924;
  font-size: 0.86em;
  line-height: 1.5;
  letter-spacing: 0;
}

/* Body-line break — single fixed break after "across strategy," holds across ALL viewports.
   The mobile-specific break spans are kept in the DOM but never shown; the desktop break
   is the only one that renders. */
.closing__break {
  display: none;
}
.closing__break--desktop {
  display: inline;
}

.cta-link-group {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  margin-left: 0.75rem;
  white-space: nowrap;
}
.cta-link-group .cta-link {
  margin-left: 0;
}
.cta-link-ats {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--sage);
  opacity: 0.55;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: opacity 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.cta-link-ats:hover {
  opacity: 1;
  color: var(--burnt-orange);
}

.closing__label {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1rem;
}

.cta--lg {
  font-size: 0.82rem;
  height: 42px;
  padding: 0 1.8rem;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid rgba(62,99,80,0.15);
  padding: 1.5rem clamp(2rem, 6vw, 6rem);
  text-align: center;
}

.footer p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL — GSAP will add .is-revealed
   ═══════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
}

[data-reveal].is-revealed {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet + mobile: stack into single column below 900px */
@media (max-width: 900px) {
  .opening {
    padding: clamp(3rem, 10vw, 4.5rem) clamp(1.5rem, 5vw, 2rem) clamp(3rem, 8vh, 4.5rem);
    justify-content: center;
  }

  .opening__grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.25rem);
    margin-top: 0;
    align-items: start;
    justify-items: start;
    max-width: 520px;
    width: 100%;
    padding-left: 0;
  }

  .opening__portrait {
    order: -1;
    justify-self: start;
    width: fit-content;
    max-width: 100%;
    display: inline-block;
    align-self: start;
    line-height: 0;
    --img-overhang: 15px;
  }

  /* Reset the overhang trick on mobile/tablet — image is stacked, bar sizes to image directly */
  .opening__img {
    width: clamp(200px, 34vw, 300px);
    height: auto;
    aspect-ratio: 4 / 5;
    max-width: 100%;
    object-position: 50% 42%;
    margin: 0;
  }

  .opening__portrait::after {
    top: -5px;
    bottom: -5px;
    height: auto;
  }

  .opening__text {
    text-align: left;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .opening__portrait::after {
    left: -12px;
  }
}

@media (max-width: 640px) {
  .opening__img {
    width: clamp(190px, 48vw, 240px);
  }

  .corner-foliage {
    width: clamp(120px, 34vw, 190px);
    max-width: 34vw;
    opacity: 0.85;
  }

  .opening__blurb {
    margin-top: 0.2rem;
    margin-bottom: 1rem;
    max-width: 34ch;
  }

  .opening__proof {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    margin-top: 0.4rem;
    margin-bottom: 1rem;
    line-height: 1.55;
    white-space: normal;
  }

  /* Mobile CTA row — shrink everything so the whole row (button + 3 icons + link)
     fits on one line down to 320px viewport. Nothing wraps, ever. */
  .opening__ctas {
    gap: 0.35rem;
  }
  .opening__ctas .cta {
    height: 34px;
    padding: 0 0.7rem;
    font-size: 0.72rem;
    border-width: 1px;
  }
  .opening__ctas .cta--icon {
    width: 34px;
    padding: 0;
  }
  .opening__ctas .cta--icon svg {
    width: 15px;
    height: 15px;
  }
  .opening__ctas .cta-link {
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    /* Extra breathing room to the left — the link has no button chrome,
       so the default row gap makes it feel jammed against the email icon's border. */
    margin-left: 0.6rem;
  }

  .opening__portrait::after {
    left: -10px;
  }

  .opening__name {
    font-size: clamp(2.6rem, 13vw, 3.4rem);
    margin-top: 0.5rem;
    line-height: 0.95;
  }

  .opening__scroll-cue {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .pullquote__text {
    font-size: 1.4rem;
  }

  /* Trim ~15% off top/bottom on mobile only — desktop 70/65 stays locked */
  .pullquote {
    padding-top: 60px;
    padding-bottom: 55px;
  }

  /* Tighten closing section vertical spacing on mobile — the desktop 54/70 padding
     leaves too much visual empty space between the button and the footer on phones. */
  .closing {
    padding-top: 40px;
    padding-bottom: 48px;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Body font on mobile: fixed 13px (readable, not em-scaled from the tiny lede).
     This lets the 2-line break at "across strategy," hold down to 320px viewport. */
  .closing__body {
    font-size: 13px;
    line-height: 1.5;
  }

}
