/* ─── Tokens ─── */
:root {
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 96px;
  --inner: min(1100px, 100% - 3rem);

  /* Dark theme (hero, dark bands) */
  --on-dark: #f4f1ea;
  --on-dark-muted: rgba(244, 241, 234, 0.65);
  --on-dark-dim: rgba(244, 241, 234, 0.4);

  /* Light theme (cream bands) */
  --on-light: #141820;
  --on-light-muted: #4a5568;
  --on-light-dim: #718096;

  --cream: #f3efe6;
  --cream-deep: #e8e2d6;
  --card-dark: rgba(255, 255, 255, 0.06);
  --border-dark: rgba(255, 255, 255, 0.1);
  --card-light: rgba(20, 24, 32, 0.04);
  --border-light: rgba(20, 24, 32, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--on-dark);
  background: #0a0c10;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.5rem;
  color: var(--on-dark);
  background: rgba(8, 10, 14, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(8, 10, 14, 0.88);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--on-dark-muted);
  transition: color 0.2s;
}

.site-nav a:hover,
.nav-cta {
  color: var(--on-dark);
}

.brand {
  justify-self: center;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}

@media (min-width: 900px) {
  .brand img {
    width: 72px;
    height: 72px;
  }
}

.location-pill {
  justify-self: end;
  margin: 0;
  font-size: 0.72rem;
  color: var(--on-dark-dim);
  text-align: right;
  max-width: 14rem;
  line-height: 1.35;
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .location-pill {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
    max-width: none;
  }
}

/* ─── Bands (contrasting sections) ─── */
.band {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem;
}

.band-inner {
  width: var(--inner);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Mesh glow orbs */
.band-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.band-glow--a {
  width: 55vw;
  height: 55vw;
  max-width: 600px;
  max-height: 600px;
  top: -10%;
  right: -15%;
  background: radial-gradient(circle, rgba(42, 157, 143, 0.45) 0%, transparent 70%);
}

.band-glow--b {
  width: 45vw;
  height: 45vw;
  bottom: 0;
  left: -10%;
  background: radial-gradient(circle, rgba(126, 184, 218, 0.35) 0%, transparent 70%);
}

.band-glow--c {
  width: 50vw;
  height: 40vw;
  top: 20%;
  right: -5%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.band-glow--d {
  width: 60vw;
  height: 50vw;
  bottom: -20%;
  left: 30%;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.5) 0%, transparent 65%);
}

.band-glow--e {
  width: 70vw;
  height: 50vw;
  top: -10%;
  left: -20%;
  background: radial-gradient(circle, rgba(255, 200, 150, 0.4) 0%, transparent 65%);
}

.band-glow--f {
  width: 50vw;
  height: 50vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(42, 157, 143, 0.25) 0%, transparent 70%);
}

/* Hero — dark + navy mesh */
.band-hero {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 3rem;
  color: var(--on-dark);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(42, 90, 120, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(26, 45, 74, 0.6) 0%, transparent 50%),
    linear-gradient(165deg, #0a0e14 0%, #121a24 40%, #0d1218 100%);
}

/* Cream — light contrast */
.band-cream {
  color: var(--on-light);
  background:
    radial-gradient(ellipse 90% 50% at 0% 0%, rgba(255, 220, 200, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(200, 220, 255, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, #f8f5ef 0%, var(--cream) 50%, #ebe6dc 100%);
}

/* Teal gradient band */
.band-gradient-teal {
  color: var(--on-dark);
  background:
    radial-gradient(ellipse 100% 80% at 0% 100%, rgba(26, 80, 90, 0.8) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(42, 120, 140, 0.5) 0%, transparent 50%),
    linear-gradient(135deg, #0f2830 0%, #1a3d45 35%, #1e4a52 65%, #0d2228 100%);
}

/* Dark band */
.band-dark {
  color: var(--on-dark);
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(60, 80, 120, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, #0c1018 0%, #141c28 50%, #0a0e14 100%);
}

/* Warm pink/peach gradient */
.band-gradient-warm {
  color: var(--on-light);
  background:
    radial-gradient(ellipse 80% 70% at 20% 30%, #fce8e4 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 90% 70%, #e8eef8 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, #f5e6d8 0%, transparent 50%),
    linear-gradient(160deg, #faf0eb 0%, #f5ebe3 40%, #eef2f8 100%);
}

.band-gradient-warm .band-title,
.band-gradient-warm .chapter h3 {
  color: var(--on-light);
}

.band-gradient-warm .chapter p {
  color: var(--on-light-muted);
}

.band-gradient-warm .chapter-close {
  color: var(--on-light);
}

.band-gradient-warm .edu-card {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(20, 24, 32, 0.08);
}

.band-gradient-warm .edu-card h4 {
  color: var(--on-light);
}

.band-gradient-warm .edu-card p {
  color: var(--on-light-muted);
}

/* Story — unified warm section */
.band-story {
  color: var(--on-light);
  padding-top: 4.5rem;
  padding-bottom: 5rem;
  background:
    radial-gradient(ellipse 80% 70% at 20% 30%, #fce8e4 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 90% 70%, #e8eef8 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, #f5e6d8 0%, transparent 50%),
    linear-gradient(160deg, #faf0eb 0%, #f5ebe3 40%, #eef2f8 100%);
}

.band-story .section-eyebrow {
  color: var(--on-light-dim);
}

.band-story h2,
.band-story .story-block h3 {
  color: var(--on-light);
}

.band-story .story-block p {
  color: var(--on-light-muted);
}

.band-story .story-block p.chapter-close {
  color: var(--on-light);
  font-size: 1.05rem;
}

.band-story .edu-card {
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(20, 24, 32, 0.08);
}

.band-story .edu-card h4 {
  color: var(--on-light);
}

.band-story .edu-card p {
  color: var(--on-light-muted);
}

.band-story .section-head {
  margin-bottom: 0;
}

.band-story .section-head h2 {
  margin-bottom: 0;
}

.band-story .band-inner {
  width: min(1100px, 100%);
  max-width: 100%;
}

.story-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 100%;
}

.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  padding: 1.5rem;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(20, 24, 32, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(180, 140, 130, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 800px) {
  .story-block {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    padding: 2rem;
    align-items: start;
  }

  .story-block--reverse .story-block__media {
    order: -1;
  }
}

.story-block--full {
  grid-template-columns: minmax(0, 1fr);
  padding: 2rem;
}

.story-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.story-block__text,
.story-block__media {
  min-width: 0;
  max-width: 100%;
}

.story-block__text p {
  margin: 0 0 1.125rem;
  max-width: 100%;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.story-block__text p:last-child {
  margin-bottom: 0;
}

.story-block__media {
  margin: 0;
  width: 100%;
  max-width: 100%;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 36px rgba(20, 24, 32, 0.12);
}

.story-block__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center 30%);
}

.band-story .edu-grid {
  width: 100%;
  max-width: 100%;
  margin-top: 0.5rem;
  gap: 1rem;
}

/* Slate story gradient */
.band-gradient-slate {
  color: var(--on-dark);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(80, 100, 140, 0.3) 0%, transparent 50%),
    linear-gradient(180deg, #1a2230 0%, #222c3c 50%, #161d28 100%);
}

/* Life — sunset / adventure gradient */
.band-gradient-life {
  color: var(--on-light);
  background:
    radial-gradient(ellipse 90% 60% at 0% 0%, #ffe8d6 0%, transparent 50%),
    radial-gradient(ellipse 80% 70% at 100% 30%, #e8f0ff 0%, transparent 45%),
    radial-gradient(ellipse 60% 50% at 50% 100%, #f5ddd0 0%, transparent 50%),
    linear-gradient(175deg, #fdf6f0 0%, #f5ebe0 30%, #eef2fa 100%);
}

.band-gradient-life .section-eyebrow {
  color: var(--on-light-dim);
}

.band-gradient-life .section-intro a {
  color: #1a5c6b;
  font-weight: 600;
}

/* CTA — deep navy + teal */
.band-cta {
  color: var(--on-dark);
  text-align: center;
  padding-bottom: 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(42, 157, 143, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(126, 184, 218, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, #0a1018 0%, #0f1824 60%, #080c12 100%);
}

.band-footer {
  color: var(--on-dark-dim);
  background: #080c12;
  border-top: 1px solid var(--border-dark);
}

/* ─── Typography per band ─── */
.band-cream .section-eyebrow,
.band-cream .section-intro,
.band-gradient-warm .section-eyebrow,
.band-gradient-life .section-eyebrow {
  color: var(--on-light-muted);
}

.band-cream .section-intro,
.band-gradient-life .section-intro {
  color: var(--on-light-muted);
}

.section-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 0.75rem;
  color: var(--on-dark-dim);
}

.section-head h2,
.band-title,
.hero-title,
.band-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-head h2,
.band-cta h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin: 0 0 1rem;
}

.band-cream h2,
.band-gradient-life h2 {
  color: var(--on-light);
}

.band-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 2rem;
}

.section-intro {
  font-size: 1.1rem;
  max-width: 40em;
  margin: 0;
  line-height: 1.55;
}

/* ─── Marquee ─── */
.marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 2rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  pointer-events: none;
}

.marquee span {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee-footer {
  margin-top: 3rem;
  opacity: 0.5;
}

/* ─── Hero layout ─── */
.hero-layout {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr 0.85fr;
    gap: 3rem;
  }
}

.hero-title {
  font-size: clamp(3.5rem, 11vw, 7.5rem);
  margin: 0 0 1.25rem;
}

.hero-title .line {
  display: block;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--on-dark-muted);
  max-width: 32em;
  margin: 0;
}

/* Photo frames — full photos, no cutouts */
.photo-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  background: #1a2030;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.photo-frame--hero {
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.photo-frame--family {
  aspect-ratio: 4 / 3;
  max-height: 480px;
}

.photo-frame--family img {
  object-position: center 40%;
}

.photo-frame--tall {
  aspect-ratio: 3 / 4;
  min-height: 360px;
}

.photo-frame--tall img {
  object-position: center top;
}

.band-cream .photo-frame {
  box-shadow:
    0 20px 50px rgba(20, 24, 32, 0.15),
    0 0 0 1px var(--border-light);
}

/* Jump cards with photo backgrounds */
.hero-jump {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 700px) {
  .hero-jump {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jump-card {
  position: relative;
  min-height: 200px;
  padding: 1.35rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.jump-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--jump-img);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 0.5s var(--ease);
  transform-origin: center top;
}

.jump-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.15) 100%);
}

@media (hover: hover) {
  .jump-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  }

  .jump-card:hover::before {
    transform: scale(1.06);
  }

  .brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
  }

  .btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(42, 157, 143, 0.35);
  }

  .mosaic-item--cta:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(26, 80, 90, 0.35);
  }
}

.jump-label,
.jump-sub {
  position: relative;
  z-index: 1;
}

.jump-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.jump-sub {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.3rem;
}

/* Stats on cream */
.stats {
  display: grid;
  gap: 1px;
  margin-top: 3rem;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 700px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 2rem 1.5rem;
  margin: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: var(--on-light);
  letter-spacing: -0.03em;
}

.stat-label {
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--on-light);
}

.stat-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--on-light-muted);
}

/* Pillars on teal gradient */
.pillars {
  display: grid;
  gap: 1rem;
}

.pillars article {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

.pillars h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.pillars p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--on-dark-muted);
}

@media (min-width: 700px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .pillars article {
    padding: 1.75rem;
  }
}

/* Split layouts */
.split-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .split-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
  }

  .split-layout--reverse {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .split-layout--reverse .split-media {
    order: 2;
  }
}

.company-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: min(70vh, 640px);
  overflow-y: auto;
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: var(--on-dark-dim) transparent;
}

.company-card {
  padding: 1.5rem;
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

.company-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.company-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-dark-dim);
  margin: 0 0 0.65rem;
}

.company-card p:last-child {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--on-dark-muted);
}

/* Quotes */
.quotes {
  position: relative;
  min-height: 200px;
}

.quote {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 2rem;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}

.quote.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}

.quote p {
  font-size: 1.15rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.quote cite {
  font-style: normal;
  font-weight: 600;
}

.quote span {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.quote-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Story */
.chapter h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.band-cream .chapter h3 {
  color: var(--on-light);
}

.band-cream .chapter p {
  color: var(--on-light-muted);
}

.chapter p {
  margin: 0 0 1rem;
  max-width: 42em;
}

.band-gradient-slate .chapter p {
  color: var(--on-dark-muted);
}

.band-gradient-slate .chapter-close {
  color: var(--on-dark);
  font-size: 1.05rem;
}

.story-rest {
  display: grid;
  gap: 2.5rem;
}

.edu-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .edu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.edu-card {
  padding: 1.25rem;
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
}

.edu-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.edu-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--on-dark-muted);
}

/* Life mosaic */
.life-mosaic {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(200px, 1fr);
}

@media (min-width: 800px) {
  .life-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    grid-auto-rows: 240px;
  }

  .mosaic-item--wide {
    grid-column: span 2;
  }

  .mosaic-item--tall {
    grid-row: span 2;
  }
}

.mosaic-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 12px 40px rgba(20, 24, 32, 0.12);
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center 30%);
}

.mosaic-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.mosaic-item--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--on-light);
  background:
    linear-gradient(135deg, rgba(26, 45, 74, 0.9) 0%, rgba(42, 157, 143, 0.85) 100%);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.mosaic-item--cta span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.mosaic-item--cta strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin-top: 0.25rem;
}

/* CTA */
.cta-layout h2 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin: 0 0 1rem;
}

.cta-lead {
  color: var(--on-dark-muted);
  font-size: 1.1rem;
  margin: 0 0 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #f4f1ea 0%, #d4e8e4 100%);
  color: #0a1018;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 2rem 0 0.75rem;
}

.cta-links a {
  color: var(--on-dark-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.cta-links a:hover {
  color: var(--on-dark);
}

.cta-address {
  font-size: 0.85rem;
  color: var(--on-dark-dim);
  margin: 0;
}

/* Footer */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem 3rem;
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}

/* ─── Mobile & tablet ─── */
@media (max-width: 899px) {
  :root {
    --header-h: 118px;
    --inner: min(1100px, 100% - 2rem);
  }

  .band {
    padding: 3.5rem 1rem;
  }

  .band-inner {
    width: 100%;
    max-width: 100%;
  }

  .band-hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 1rem);
    padding-bottom: 2.5rem;
  }

  .hero .marquee {
    margin-bottom: 1.25rem;
  }

  .marquee span {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }

  .hero-layout {
    gap: 1.5rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .photo-frame--hero,
  .photo-frame--family {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .hero-jump {
    margin-top: 2rem;
    grid-template-columns: 1fr;
  }

  .jump-card {
    min-height: 168px;
    padding: 1.15rem;
  }

  .section-head h2,
  .band-cta h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .section-intro {
    font-size: 1rem;
  }

  .band-title {
    margin-bottom: 1.25rem;
  }

  .stats {
    margin-top: 2rem;
  }

  .stat {
    padding: 1.35rem 1.15rem;
  }

  .split-layout {
    gap: 1.75rem;
  }

  .split-media {
    order: -1;
  }

  .photo-frame--tall {
    min-height: unset;
    max-height: 28rem;
    aspect-ratio: 3 / 4;
  }

  .company-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .company-card {
    padding: 1.25rem;
  }

  .band-story {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .story-flow {
    margin-top: 1.75rem;
    gap: 1.25rem;
  }

  .story-block {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .story-block__media {
    aspect-ratio: 16 / 10;
  }

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

@media (max-width: 599px) {
  :root {
    --header-h: 104px;
    --inner: min(1100px, 100% - 1.5rem);
  }

  .site-header {
    padding: 0.5rem 0.85rem;
    gap: 0.35rem 0.75rem;
    padding-left: max(0.85rem, env(safe-area-inset-left));
    padding-right: max(0.85rem, env(safe-area-inset-right));
  }

  .site-nav {
    gap: 0.5rem 0.85rem;
  }

  .site-nav a {
    font-size: 0.8rem;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .location-pill {
    display: none;
  }

  .band {
    padding: 3rem 0.85rem;
  }

  .pillars article {
    padding: 1.25rem;
  }

  .life-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(200px, auto);
  }

  .mosaic-item--wide,
  .mosaic-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .cta-links {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }

  .cta-links a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn-primary {
    display: block;
    width: 100%;
    max-width: 18rem;
    margin: 0 auto;
    text-align: center;
    padding: 0.95rem 1.5rem;
  }

  .cta-address {
    padding: 0 0.5rem;
    line-height: 1.5;
  }

  .site-footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .jump-card::before { transition: none; }
}

@media print {
  .site-header, .marquee, .hero-jump, .quote-dots, .band-glow { display: none; }
  .band { padding: 1rem 0; }
}
