/* ---------- Brand tokens ---------- */
:root {
  --navy: #001739;
  --navy-2: #00234f;
  --blue: #2C258B;
  --off-white: #FDFCF8;
  --teal: #2FC7C0;
  --mint: #8FF3E4;
  --sunset: #FFAA5C;
  --sunrise: #FF6D12;
  --grey-1: #F4F4F4;
  --grey-2: #E6E6E6;
  --grey-3: #6B6E76;
  --black: #0A0C10;

  --font-display: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --max-w: 1180px;
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--off-white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
p { margin: 0 0 16px; }
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  color: var(--blue);
  margin-bottom: 14px;
}
.kicker.light { color: var(--mint); }
.kicker.center { text-align: center; }
.lead {
  font-size: 19px;
  color: var(--grey-3);
  max-width: 640px;
}
.lead.light { color: rgba(253,252,248,0.82); }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.light { color: var(--off-white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--off-white); color: var(--navy); }
.btn-primary:hover { background: var(--mint); }
.hero .btn-primary, .contact .btn-primary { background: var(--sunrise); color: #1a0900; }
.hero .btn-primary:hover, .contact .btn-primary:hover { background: var(--sunset); }
.btn-ghost {
  background: transparent;
  border-color: rgba(253,252,248,0.5);
  color: var(--off-white);
}
.btn-ghost:hover { border-color: var(--off-white); background: rgba(253,252,248,0.08); }
.hero .btn-ghost, .contact .btn-ghost {
  background: rgba(0,10,26,0.4);
  border-color: rgba(253,252,248,0.85);
  backdrop-filter: blur(2px);
}
.hero .btn-ghost:hover, .contact .btn-ghost:hover {
  background: rgba(0,10,26,0.55);
  border-color: var(--off-white);
}
.btn-sm { height: 40px; padding: 0 18px; font-size: 13px; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  z-index: 200;
  background: linear-gradient(90deg, var(--teal), var(--mint));
  transition: width .12s linear;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { transition: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,23,57,0.0);
  backdrop-filter: blur(0px);
  transition: background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,23,57,0.55) 0%, rgba(0,23,57,0.72) 100%), url('assets/gradient/hero-3.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .25s ease;
}
.nav.scrolled {
  background: transparent;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav.scrolled::before {
  opacity: 1;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark {
  width: 26px; height: 26px;
  filter: invert(1) brightness(2);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--off-white);
}
.brand-subtitle {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253,252,248,0.6);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  display: inline-block;
  color: rgba(253,252,248,0.85);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s ease, transform .25s cubic-bezier(.16,.8,.24,1);
}
.nav-links a:hover { color: var(--mint); transform: scale(1.1); }
.nav-toggle { display: none; }
.nav-mobile { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--off-white);
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg-rotator {
  position: absolute; inset: 0;
  -webkit-mask-image: linear-gradient(180deg, black 0%, black calc(100% - 110px), transparent 100%);
  mask-image: linear-gradient(180deg, black 0%, black calc(100% - 110px), transparent 100%);
}
.hero-bg-layer {
  position: absolute; inset: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1.6s ease;
}
.hero-bg-layer.is-active {
  opacity: 1;
}
/* Blur-up loading: a tiny inline placeholder paints instantly and unifies
   the color grade across mismatched source photos; the full-res image
   cross-fades on top once it's actually loaded. */
.bg-ph, .bg-full {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: var(--bg-pos, center);
  filter: saturate(0.88) contrast(1.03);
}
.bg-ph {
  filter: saturate(0.88) contrast(1.03) blur(18px);
  transform: scale(1.12);
}
.bg-full {
  opacity: 0;
  transition: opacity .7s ease;
}
.bg-full.is-loaded {
  opacity: 1;
}
/* Softens visible upscaling artifacts on lower-resolution source photos */
.bg-full-soft {
  filter: saturate(0.88) contrast(1.03) blur(2.5px);
  transform: scale(1.06);
}
/* Strong blur + darken so individual faces aren't identifiable, for
   stock/found photos we don't hold rights or releases for */
.bg-full-privacy {
  filter: saturate(0.8) contrast(1.02) brightness(0.75) blur(7px);
  transform: scale(1.08);
}
.bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--bg-pos, center);
  filter: saturate(0.88) contrast(1.03);
  opacity: 0;
  transition: opacity .7s ease;
}
.bg-video.is-loaded {
  opacity: 1;
}
@media (max-width: 700px) {
  /* Cover-cropping on narrow viewports centers on the clapping figure;
     shift left to keep the champagne pour and white-cap figure in frame. */
  .hero-bg-champagne {
    --bg-pos: 20% 20%;
  }
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,10,26,0.35) 0%, rgba(0,10,26,0.15) 40%, rgba(0,10,26,0.55) 100%);
}
.hero-scrim-photo {
  background:
    linear-gradient(90deg, rgba(0,10,26,0.65) 0%, rgba(0,10,26,0.55) 30%, rgba(0,10,26,0.42) 55%, rgba(0,10,26,0.24) 80%, rgba(0,10,26,0.12) 100%),
    linear-gradient(180deg, rgba(0,10,26,0.2) 0%, rgba(0,10,26,0.05) 30%, rgba(0,10,26,0.4) 100%);
}
@media (max-width: 700px) {
  /* Narrower viewports crop the hero photo tighter, pulling the clapping
     figure into a more central, well-lit position — darken further right
     to keep focus on the left where the headline and champagne pour sit. */
  .hero-scrim-photo {
    background:
      linear-gradient(90deg, rgba(0,10,26,0.7) 0%, rgba(0,10,26,0.62) 35%, rgba(0,10,26,0.55) 65%, rgba(0,10,26,0.38) 90%, rgba(0,10,26,0.3) 100%),
      linear-gradient(180deg, rgba(0,10,26,0.2) 0%, rgba(0,10,26,0.05) 30%, rgba(0,10,26,0.4) 100%);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 60px;
}
.eyebrow {
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12.5px;
  color: var(--mint);
  margin-top: 18px;
  margin-bottom: 22px;
}
/* Hero rotating statement: one sentence at a time, cycling continuously */
.hero-rotator-text {
  display: grid;
  margin-bottom: 22px;
  min-height: 1.05em;
}
.hero-rotator-text > .hero-rolling-line {
  grid-area: 1 / 1;
}
.hero-rolling-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6.4vw, 80px);
  line-height: 1.1;
  max-width: 900px;
  margin: 0;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s cubic-bezier(.16,.8,.24,1), transform 1s cubic-bezier(.16,.8,.24,1);
}
.hero-line-light {
  font-weight: 400;
}
.hero-rolling-line.is-active {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-rolling-line { transition: none; }
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  font-style: italic;
  max-width: 520px;
  color: rgba(253,252,248,0.88);
  margin-top: 17vh;
  margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Watch the Reel trigger */
.watch-reel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,10,26,0.4);
  border: 1px solid rgba(253,252,248,0.85);
  backdrop-filter: blur(2px);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 22px 10px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.watch-reel:hover {
  background: rgba(0,10,26,0.55);
  border-color: var(--off-white);
  transform: translateY(-1px);
}
.watch-reel-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sunrise);
  color: #1a0900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.watch-reel-icon svg { width: 16px; height: 16px; }

/* Embedded reel */
.reel-section { padding: 90px 0; }
.reel-embed {
  max-width: 860px;
  margin: 0 auto;
}
.reel-embed video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ---------- Statement (stacked gradient statements) ---------- */
.quote-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.statement-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, black 70px, black calc(100% - 70px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, black 70px, black calc(100% - 70px), transparent 100%);
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-tint { background: var(--grey-1); }
.section-dark {
  background: var(--navy);
  color: var(--off-white);
}
.section-dark .lead { max-width: 620px; }
.section h2 { font-size: clamp(28px, 4vw, 42px); }
.section-dark h2 { color: var(--off-white); }

/* Photo-gradient section background (reused brand aurora imagery) */
.section-photo {
  position: relative;
  overflow: hidden;
  color: var(--off-white);
  background: var(--navy);
}
.section-photo-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, black 90px, black calc(100% - 90px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, black 90px, black calc(100% - 90px), transparent 100%);
}
.section-photo-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,10,26,0.62) 0%, rgba(0,10,26,0.5) 45%, rgba(0,10,26,0.68) 100%);
}
.section-photo-scrim-deep {
  background: linear-gradient(180deg, rgba(0,23,57,0.44) 0%, rgba(0,23,57,0.47) 100%);
}
.section-photo > .wrap {
  position: relative;
  z-index: 2;
}
.section-photo h2 { color: var(--off-white); }
.section-photo .about-copy p { color: rgba(253,252,248,0.82); }
.section-photo .pillar { border-top-color: rgba(253,252,248,0.3); }
.section-photo .pillar h3 { color: var(--off-white); }
.section-photo .pillar p { color: rgba(253,252,248,0.72); }
.section-photo .card { background: rgba(253,252,248,0.96); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-copy h2 { font-size: clamp(30px, 4.2vw, 46px); }
.about-copy .lead { margin-bottom: 18px; }
.about-copy p { color: var(--grey-3); font-size: 16.5px; }
.bio-copy {
  max-width: 740px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.bio-copy p {
  font-size: 17px;
  line-height: 1.7;
}


.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.pillar { border-top: 2px solid var(--navy); padding-top: 16px; }
.pillar-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sunrise);
  margin-bottom: 10px;
}
.pillar h3 { font-size: 17px; margin-bottom: 6px; }
.pillar p { font-size: 14.5px; color: var(--grey-3); margin: 0; }

/* Cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: var(--off-white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
}
.card-photo-wrap {
  position: relative;
  width: calc(100% + 56px);
  height: 190px;
  margin: -32px -28px 20px;
  overflow: hidden;
}
.card-photo-ph,
.card-photo {
  position: absolute; inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}
.card-photo-ph {
  filter: saturate(0.88) contrast(1.03) blur(14px);
  transform: scale(1.15);
}
.card-photo {
  opacity: 0;
  transition: opacity .6s ease;
}
.card-photo.is-loaded {
  opacity: 1;
}
.card-photo-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,23,57,0.1) 0%, rgba(0,23,57,0.34) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.section-tint .card { background: #fff; }
.card-icon {
  width: 42px; height: 42px;
  color: var(--blue);
  margin-bottom: 18px;
}
.card-icon svg { width: 100%; height: 100%; }
.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--navy);
  display: inline-block;
  transition: transform .25s cubic-bezier(.16,.8,.24,1);
}
.card:hover h3 { transform: scale(1.06); }
.card p { color: var(--grey-3); font-size: 15px; margin: 0; }

.card-story { border-top: 3px solid var(--sunrise); }
.story-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--navy);
  transition: transform .25s cubic-bezier(.16,.8,.24,1);
}
.card-story:hover .story-tag { transform: scale(1.06); }
.card-story p { color: var(--grey-3); font-size: 15px; margin: 0; }

/* Results montage: rotating photo backdrop with cycling client-category phrases */
#results {
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.results-bg-rotator {
  position: absolute; inset: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, black 90px, black calc(100% - 90px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, black 90px, black calc(100% - 90px), transparent 100%);
}
.results-bg-layer {
  position: absolute; inset: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1.6s ease;
}
.results-bg-layer.is-active {
  opacity: 1;
}
/* Paired layers (e.g. the trophy shot behind "Major Champions") render
   above the round-robin rotation so they fully cover it while active */
.results-bg-layer[data-pair-phrase] {
  z-index: 1;
}
.results-phrases {
  display: grid;
  place-items: center;
  min-height: 120px;
  margin-top: 48px;
}
.results-phrase {
  grid-area: 1 / 1;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .5s ease, transform .5s ease;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 6vw, 68px);
  color: var(--off-white);
  text-align: center;
  line-height: 1.05;
  padding: 0 12px;
}
.results-phrase.is-active {
  opacity: 1;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .results-phrase { transition: none; }
}

/* Quote section */
.quote-inner {
  position: relative;
  z-index: 2;
  padding: 130px 24px;
  text-align: center;
}
.quote-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 54px);
  color: var(--off-white);
  margin: 0;
  line-height: 1.2;
}

/* Podcasts */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.podcast-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.podcast-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.podcast-frame-audio {
  aspect-ratio: auto;
  height: 175px;
  background: transparent;
}
.podcast-label {
  margin: 14px 0 0;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--off-white);
  display: inline-block;
  transition: transform .25s cubic-bezier(.16,.8,.24,1);
}
.podcast-embed:hover .podcast-label { transform: scale(1.06); }

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
}
.contact-inner {
  position: relative;
  z-index: 2;
  padding: 150px 24px;
  text-align: center;
}
.contact-inner h2 { font-size: clamp(30px, 5vw, 50px); margin-bottom: 18px; }
.contact-inner .lead { margin: 0 auto 36px; }
.contact-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--navy);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-mark {
  width: 20px; height: 20px;
  filter: invert(1) brightness(2);
  opacity: 0.7;
}
.footer-copy {
  color: rgba(253,252,248,0.55);
  font-size: 13px;
  margin: 0;
  margin-right: auto;
}
.footer-social {
  color: rgba(253,252,248,0.75);
  font-size: 13px;
  font-weight: 600;
}
.footer-social:hover { color: var(--mint); }


/* ---------- Reveal on scroll ---------- */
/* Visible by default (no-JS / progressive enhancement). JS adds .js-reveal to opt in. */
body.js-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16,.8,.24,1), transform .8s cubic-bezier(.16,.8,.24,1);
}
body.js-reveal .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children within a revealed group for a bit more motion */
body.js-reveal .pillars.in .pillar,
body.js-reveal .cards-3.in .card,
body.js-reveal .podcast-grid.in .podcast-embed {
  opacity: 0;
  transform: translateY(18px);
  animation: revealChild .7s cubic-bezier(.16,.8,.24,1) forwards;
}
body.js-reveal .pillars.in .pillar:nth-child(1) { animation-delay: .05s; }
body.js-reveal .pillars.in .pillar:nth-child(2) { animation-delay: .12s; }
body.js-reveal .pillars.in .pillar:nth-child(3) { animation-delay: .19s; }
body.js-reveal .pillars.in .pillar:nth-child(4) { animation-delay: .26s; }
body.js-reveal .pillars.in .pillar:nth-child(5) { animation-delay: .33s; }
body.js-reveal .cards-3.in .card:nth-child(1) { animation-delay: .05s; }
body.js-reveal .cards-3.in .card:nth-child(2) { animation-delay: .15s; }
body.js-reveal .cards-3.in .card:nth-child(3) { animation-delay: .25s; }
body.js-reveal .podcast-grid.in .podcast-embed:nth-child(1) { animation-delay: .05s; }
body.js-reveal .podcast-grid.in .podcast-embed:nth-child(2) { animation-delay: .13s; }
body.js-reveal .podcast-grid.in .podcast-embed:nth-child(3) { animation-delay: .21s; }
body.js-reveal .podcast-grid.in .podcast-embed:nth-child(4) { animation-delay: .29s; }
@keyframes revealChild {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  body.js-reveal .reveal,
  body.js-reveal .pillars.in .pillar,
  body.js-reveal .cards-3.in .card,
  body.js-reveal .podcast-grid.in .podcast-embed {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Subtle parallax drift on hero/section background photos */
.hero-bg, .section-photo-bg, .statement-bg {
  will-change: transform;
  transform: scale(1.08);
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .section-photo-bg, .statement-bg { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav .btn-sm { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--off-white);
    border-radius: 2px;
  }
  .nav-mobile {
    display: none;
    flex-direction: column;
    background: rgba(0,23,57,0.98);
    padding: 8px 24px 24px;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    color: var(--off-white);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 600;
  }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .podcast-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .contact-inner { padding: 100px 24px; }
}
