:root {
  --bg: #040d0a;
  --bg-soft: #081611;
  --bg-panel: rgba(255, 248, 235, 0.045);
  --bg-panel-hover: rgba(255, 248, 235, 0.075);
  --bg-panel-strong: #0c241b;
  --text: #f7f0e3;
  --text-dim: #d1cbc1;
  --muted: #8e9e94;
  --line: rgba(247, 240, 227, 0.08);
  --line-strong: rgba(247, 240, 227, 0.15);
  --gold: #d2a24f;
  --gold-glow: rgba(210, 162, 79, 0.4);
  --gold-strong: #ffc966;
  --green: #1f7652;
  --green-glow: rgba(31, 118, 82, 0.4);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1240px, calc(100vw - 40px));
  --font-body: "DM Sans", "Manrope", system-ui, -apple-system, sans-serif;
  --font-ui: "Antonio", "Manrope", system-ui, sans-serif;
  --font-display: "Piegnot", "Cormorant Garamond", "Bodoni Moda", Georgia, serif;
  --font-impact: "CFC Sharp", "Bebas Neue", "Antonio", sans-serif;
  --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:visited {
  color: inherit;
}

a:focus,
a:active {
  text-decoration: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: 
    radial-gradient(circle at 0% 0%, rgba(31, 118, 82, 0.28), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(210, 162, 79, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(8, 22, 17, 0.4), transparent 28%),
    var(--bg);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.05), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(210, 162, 79, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 36%);
  z-index: 1;
  opacity: 0.7;
}

.bg-decorations {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.09;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--green);
  top: -100px;
  left: -100px;
  animation: float 20s infinite alternate;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  bottom: -100px;
  right: -100px;
  animation: float 25s infinite alternate-reverse;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: var(--green);
  top: 40%;
  right: 10%;
  opacity: 0.1;
  animation: float 30s infinite alternate;
}

@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(50px, 50px) scale(1.1); }
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin: 18px auto 0;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 13, 10, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.28));
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-lockup strong {
  font-family: var(--font-impact);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
}

.brand-lockup span {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: var(--transition);
  position: relative;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 248, 235, 0.05);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(210, 162, 79, 0.85);
  outline-offset: 4px;
}

.desktop-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
}

.button-gold {
  background: linear-gradient(135deg, var(--gold), #f2c97d);
  color: #040d0a;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.button-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px var(--gold-glow);
  background: linear-gradient(135deg, #f2c97d, #ffdb99);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.section {
  padding: 70px 0;
}

.section-soft,
.section-dark {
  position: relative;
  overflow: hidden;
  margin: 18px 0;
  padding: 74px 38px;
  border: 1px solid var(--line);
  border-radius: 32px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.03), rgba(255, 248, 235, 0.012));
}

.section-dark {
  background: linear-gradient(180deg, rgba(12, 36, 27, 0.84), rgba(4, 13, 10, 0.96));
}

.section-soft::before,
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(210, 162, 79, 0.12), transparent 30%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 58px 38px;
  min-height: min(680px, calc(100vh - 118px));
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(8, 22, 17, 0.7), rgba(4, 13, 10, 0.94));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.hero-copy {
  max-width: 560px;
}

.hero-visual {
  align-self: stretch;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 13, 10, 0.94) 0%, rgba(4, 13, 10, 0.72) 42%, rgba(4, 13, 10, 0.82) 100%),
    linear-gradient(180deg, rgba(4, 13, 10, 0.2), rgba(4, 13, 10, 0.84));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.hero-media video,
.hero-media img,
.hero-media-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-fallback {
  background:
    radial-gradient(circle at 78% 20%, rgba(210, 162, 79, 0.12), transparent 16%),
    linear-gradient(90deg, rgba(4, 13, 10, 0.92) 0%, rgba(4, 13, 10, 0.62) 44%, rgba(4, 13, 10, 0.82) 100%),
    linear-gradient(180deg, rgba(4, 13, 10, 0.18), rgba(4, 13, 10, 0.78));
}

.hero-photo {
  object-position: center 38%;
  filter: saturate(0.98) contrast(1.04);
  opacity: 0.24;
}

.hero h1 {
  max-width: none;
  font-size: clamp(3.1rem, 6vw, 5.35rem);
  line-height: 0.92;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.lede {
  font-size: 1.04rem;
  color: var(--text-dim);
  max-width: 44ch;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.hero-metrics li {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.045), rgba(255, 248, 235, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.hero-metrics li:hover {
  background: var(--bg-panel-hover);
  border-color: var(--line-strong);
  transform: translateY(-5px);
}

.hero-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero-side-stack {
  display: grid;
  gap: 18px;
}

.emblem-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 235, 0.045);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.emblem-card p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.55;
}

.emblem-mark {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin: 12px 0 18px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(210, 162, 79, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 248, 235, 0.04), rgba(255, 248, 235, 0.02));
  border: 1px solid rgba(247, 240, 227, 0.08);
}

.hero-metrics span {
  font-size: 0.82rem;
  color: var(--muted);
}

.visual-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visual-aside {
  display: grid;
  gap: 18px;
}

.pitch {
  height: 400px;
  border-radius: 32px;
  background: 
    radial-gradient(circle at center, rgba(31, 118, 82, 0.3), transparent 70%),
    linear-gradient(180deg, rgba(8, 22, 17, 0.4), rgba(4, 13, 10, 0.8)),
    #0a1f18;
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.pitch-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(180deg, black, transparent);
}

.pitch-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--green-glow), transparent 60%);
  opacity: 0.3;
}

.pitch-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--gold);
  animation: pulse 2s infinite alternate;
}

.pitch-dot-1 { top: 30%; left: 20%; animation-delay: 0s; }
.pitch-dot-2 { top: 60%; left: 80%; animation-delay: 0.5s; }
.pitch-dot-3 { top: 80%; left: 40%; animation-delay: 1s; }

@keyframes pulse {
  from { opacity: 0.4; transform: scale(1); }
  to { opacity: 1; transform: scale(1.5); }
}

.pitch::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 25px;
}

.pitch-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.pitch-center-inner {
  width: 120px;
  height: 120px;
  background: rgba(210, 162, 79, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 14px;
}

.pitch-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.pitch-card {
  position: absolute;
  min-width: 190px;
  max-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(247, 240, 227, 0.12);
  border-radius: 22px;
  background: rgba(4, 13, 10, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.pitch-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pitch-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.pitch-card-top {
  top: 26px;
  right: 26px;
}

.pitch-card-bottom {
  bottom: 26px;
  left: 26px;
}

.status-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 235, 0.03);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.status-card:hover {
  background: rgba(255, 248, 235, 0.06);
  border-color: var(--line-strong);
  transform: translateX(10px);
}

.status-card-dark {
  background: linear-gradient(180deg, rgba(12, 36, 27, 0.9), rgba(4, 13, 10, 0.95));
}

.status-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.34rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.status-card p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.5;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.section-heading p,
.timeline-copy p,
.contact-copy p {
  max-width: 700px;
  color: var(--text-dim);
  line-height: 1.6;
}

.card-grid, .pillar-grid, .pathway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.pillar-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

@media (max-width: 900px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

.program-card, .pillar-card, .pathway-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.05), rgba(255, 248, 235, 0.02));
  border: 1px solid var(--line);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.program-card:hover, .pillar-card:hover, .pathway-card:hover {
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.07), rgba(255, 248, 235, 0.03));
  border-color: rgba(210, 162, 79, 0.38);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.program-card h3, .pillar-card h3, .pathway-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 12px 0;
  letter-spacing: 0.01em;
  line-height: 1.08;
}

.card-photo {
  width: 100%;
  height: 122px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(247, 240, 227, 0.08);
}

.compact-overview .section-heading {
  margin-bottom: 20px;
}

.overview-stack {
  display: grid;
  gap: 26px;
}

.overview-block {
  display: grid;
  gap: 16px;
}

.block-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 12px 20px;
}

.block-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.block-heading p {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.5;
}

.card-label,
.pathway-card > span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.program-card p,
.pillar-card p,
.pathway-card p,
.timeline article p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.5;
}

.program-card small {
  margin-top: auto;
  padding-top: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.timeline-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.timeline-copy h2,
.contact-copy h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

.timeline article {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.045), rgba(255, 248, 235, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
}

.timeline article:hover {
  background: var(--bg-panel-hover);
  border-color: var(--gold-glow);
  transform: translateY(-5px);
}

.timeline article span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: #040d0a;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 20px var(--gold-glow);
}

.timeline article h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  line-height: 1.05;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-bottom: 12px;
  transition: var(--transition);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item:hover {
  background: var(--bg-panel-hover);
  border-color: var(--line-strong);
}

.faq-item summary {
  padding: 18px 22px;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 22px 18px;
  color: var(--muted);
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-section {
  position: relative;
}

.gallery-tile {
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #0d2a20, #071410 58%, #040d0a);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  border: 1px solid var(--line);
  transition: var(--transition);
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 13, 10, 0.94), rgba(4, 13, 10, 0.18)),
    radial-gradient(circle at top right, rgba(210, 162, 79, 0.22), transparent 28%);
  z-index: 1;
}

.gallery-tile span, .gallery-tile strong {
  position: relative;
  z-index: 2;
}

.gallery-tile span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-tile strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-tile:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.gallery-tile:hover::after {
  content: "→";
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 2rem;
  color: var(--gold);
  z-index: 2;
  opacity: 0.5;
}

.gallery-tile-lg {
  height: 100%;
}

.gallery-tile:nth-child(1) {
  background: linear-gradient(150deg, #143828, #0b1d16 62%, #040d0a);
}

.gallery-tile:nth-child(2) {
  background: linear-gradient(150deg, #102b20, #071711 62%, #040d0a);
}

.gallery-tile:nth-child(3) {
  background: linear-gradient(150deg, #0f241c, #081510 62%, #040d0a);
}

.gallery-tile:nth-child(4) {
  background: linear-gradient(150deg, #173224, #0a1912 62%, #040d0a);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-card {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.045), rgba(255, 248, 235, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
}

.contact-card:hover {
  background: var(--bg-panel-hover);
  border-color: var(--gold);
}

.contact-card span {
  display: block;
  color: var(--gold);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.contact-card-photo {
  width: 100%;
  height: 112px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(247, 240, 227, 0.08);
}

.contact-card p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.6;
}

.contact-panel {
  padding: 24px;
  background: linear-gradient(135deg, #0c241b, #040d0a);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.contact-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(210, 162, 79, 0.14);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-panel h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.05;
}

.panel-media {
  display: grid;
  gap: 14px;
}

.panel-media-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  line-height: 1.08;
}

.media-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.045), rgba(255, 248, 235, 0.02));
  transition: var(--transition);
}

.media-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210, 162, 79, 0.36);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.media-caption {
  display: grid;
  gap: 6px;
  padding: 16px 18px 18px;
}

.media-caption span {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-caption strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.08;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
}

.button-block {
  width: 100%;
}

.button-disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.7;
}

.site-footer {
  margin-top: 54px;
  padding: 34px 0 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  text-align: right;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1024px) {
  .section-soft,
  .section-dark {
    padding: 64px 28px;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 24px;
    padding: 54px 28px;
    min-height: auto;
  }
  .hero-copy {
    max-width: none;
  }
  .visual-aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-metrics {
    max-width: 720px;
    margin-top: 26px;
  }
  .contact-section {
    grid-template-columns: 1fr;
  }
  .site-footer {
    flex-direction: column;
    gap: 24px;
  }
  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .section-soft,
  .section-dark {
    padding: 52px 20px;
    border-radius: 24px;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(4, 13, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--line);
    flex-direction: column;
    gap: 20px;
    z-index: 100;
  }

  .site-nav.is-open {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }
  
  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
  }

  .site-header {
    top: 10px;
    padding: 10px 20px;
  }
  .hero {
    padding: 46px 20px;
    border-radius: 24px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-metrics,
  .visual-aside,
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .pitch {
    height: 320px;
  }
  .pitch-card {
    min-width: 0;
    max-width: 150px;
    padding: 12px 14px;
  }
  .pitch-card-top {
    top: 18px;
    right: 18px;
  }
  .pitch-card-bottom {
    left: 18px;
    bottom: 18px;
  }
  .desktop-cta {
    display: none;
  }
  .brand-lockup strong {
    font-size: 1.4rem;
  }
  .emblem-mark {
    min-height: 220px;
  }
  .contact-panel,
  .program-card,
  .pillar-card,
  .pathway-card {
    padding: 20px;
  }
  .card-photo {
    height: 132px;
  }
}

/* Native video redesign */

.site-header.site-header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  margin: 0;
  padding: 18px clamp(18px, 3vw, 34px);
  border: 0;
  border-bottom: 1px solid rgba(247, 240, 227, 0.14);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(4, 13, 10, 0.82), rgba(4, 13, 10, 0.1));
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.site-header-overlay.is-scrolled {
  background: rgba(4, 13, 10, 0.9);
  border-bottom-color: rgba(247, 240, 227, 0.18);
}

.site-header.site-header-overlay .brand-mark {
  width: 48px;
  height: 48px;
}

.hero.hero-fullbleed {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 0;
  background: #050d0b;
  box-shadow: none;
}

.hero.hero-fullbleed::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(32px, 4vw, 52px);
  background: var(--bg);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

.hero.hero-fullbleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 13, 10, 0.38) 0%, rgba(4, 13, 10, 0.62) 55%, rgba(4, 13, 10, 0.92) 100%),
    linear-gradient(90deg, rgba(4, 13, 10, 0.88) 0%, rgba(4, 13, 10, 0.55) 42%, rgba(4, 13, 10, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero.hero-fullbleed > * {
  position: relative;
  z-index: 2;
}

.hero.hero-fullbleed .hero-media {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.06) brightness(0.92);
}

.hero.hero-fullbleed .hero-media-fallback {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 70% 10%, rgba(210, 162, 79, 0.12), transparent 18%);
  opacity: 0.55;
}

.hero-photo,
.hero-visual,
.hero-side-stack,
.emblem-card {
  display: none;
}

.hero-inner {
  width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  padding: 148px 0 168px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  max-width: min(980px, 100%);
  text-align: center;
}

.hero-copy .eyebrow {
  justify-content: center;
}

.hero-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  margin-bottom: 18px;
}

.hero-emblem {
  width: clamp(98px, 11vw, 152px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.4));
  flex-shrink: 0;
}

.hero.hero-fullbleed h1 {
  margin: 0;
  max-width: 8.4ch;
  font-family: var(--font-impact);
  font-size: clamp(4.2rem, 9vw, 8.5rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 8px 40px rgba(0,0,0,0.7), 0 0 80px rgba(0,0,0,0.4);
  text-align: left;
}

.hero.hero-fullbleed .lede {
  max-width: 48ch;
  margin: 0 auto 30px;
  font-size: 1.08rem;
  color: rgba(247, 240, 227, 0.88);
}

.hero.hero-fullbleed .hero-actions {
  justify-content: center;
}

.hero.hero-fullbleed .hero-metrics {
  max-width: 860px;
  margin: 34px auto 0;
}

.hero.hero-fullbleed .hero-metrics li {
  background: rgba(4, 13, 10, 0.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.page-shell {
  margin: -52px auto 0;
  position: relative;
  z-index: 4;
}

.compact-overview {
  margin-top: 0;
}

.media-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.media-card {
  align-self: start;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.05), rgba(255, 248, 235, 0.02));
  transition: var(--transition);
}

.media-card-feature-wide {
  grid-column: 1 / -1;
}

.media-card-portrait,
.media-card-wide {
  grid-column: span 4;
}

.media-card-contact {
  width: 100%;
}

.media-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210, 162, 79, 0.42);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.media-video-shell {
  position: relative;
  overflow: hidden;
  background: #020604;
}

.media-video-shell video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-video-shell-feature-wide {
  aspect-ratio: 16 / 7;
}

.media-video-shell-wide {
  aspect-ratio: 16 / 9;
}

.media-video-shell-portrait {
  aspect-ratio: 9 / 13;
}

.media-video-shell-contact {
  aspect-ratio: 9 / 12;
}

.contact-video-slot {
  width: 100%;
}

.contact-video-slot .media-card {
  margin: 0;
}

.media-caption {
  padding: 16px 18px 18px;
}

.panel-media {
  display: grid;
  gap: 14px;
}

.panel-media-copy strong {
  font-size: 1.2rem;
}

.contact-panel .panel-media {
  padding-top: 4px;
}

@media (max-width: 1024px) {
  .hero-inner {
    padding: 138px 0 148px;
  }

  .hero-lockup {
    gap: 18px;
  }

  .hero.hero-fullbleed h1 {
    font-size: clamp(3.3rem, 9vw, 6.1rem);
  }

  .media-card-feature-wide,
  .media-card-wide {
    grid-column: span 12;
  }

  .media-card-portrait {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .site-header.site-header-overlay {
    padding: 12px 18px;
  }

  .site-header.site-header-overlay .site-nav {
    top: 72px;
    left: 18px;
    width: calc(100% - 36px);
    border-radius: 24px;
    background: rgba(4, 13, 10, 0.94);
  }

  .hero-inner {
    padding: 132px 0 132px;
  }

  .hero-lockup {
    flex-direction: column;
    gap: 14px;
  }

  .hero.hero-fullbleed h1 {
    max-width: none;
    text-align: center;
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .hero.hero-fullbleed .hero-metrics {
    grid-template-columns: 1fr;
  }

  .page-shell {
    margin-top: -36px;
  }

  .media-card-feature-wide,
  .media-card-wide,
  .media-card-portrait {
    grid-column: span 12;
  }
}

/* ── Sound toggle ──────────────────────────────── */

.media-video-shell {
  position: relative;
}

.video-sound-toggle {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(4, 13, 10, 0.78);
  border: 1px solid rgba(210, 162, 79, 0.5);
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-sound-toggle:hover {
  background: rgba(4, 13, 10, 0.94);
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(210, 162, 79, 0.3);
}

.video-sound-toggle svg {
  display: block;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   UPGRADE LAYER — Beautiful & Modern
   ══════════════════════════════════════════════════ */

/* — Grain overlay ─────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.058;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='1'/></svg>");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

/* — Reveal animations — translateY + stagger ──── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow line animates in after reveal */
.reveal .eyebrow::before {
  width: 0;
  transition: width 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.reveal.is-visible .eyebrow::before {
  width: 40px;
}

/* — Ticker strip ──────────────────────────────── */
.ticker-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(4,13,10,0.97), rgba(31,118,82,0.055) 50%, rgba(4,13,10,0.97));
  padding: 14px 0;
  user-select: none;
}

.ticker-inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-run 34s linear infinite;
  gap: 0;
  will-change: transform;
}

.ticker-strip:hover .ticker-inner {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-block;
  padding: 0 28px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-sep {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-size: 0.5rem;
  opacity: 0.65;
  line-height: 1;
}

@keyframes ticker-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* — Hero overlay — more cinematic ──────────────── */
.hero.hero-fullbleed::after {
  background:
    radial-gradient(ellipse at 18% 0%, rgba(210, 162, 79, 0.09) 0%, transparent 40%),
    linear-gradient(180deg,
      rgba(4, 13, 10, 0.04) 0%,
      rgba(4, 13, 10, 0.40) 44%,
      rgba(4, 13, 10, 0.80) 72%,
      rgba(4, 13, 10, 0.96) 100%),
    linear-gradient(90deg,
      rgba(4, 13, 10, 0.62) 0%,
      rgba(4, 13, 10, 0.26) 42%,
      rgba(4, 13, 10, 0.52) 100%);
  z-index: 1;
  pointer-events: none;
}

/* — Hero h1 — bigger ceiling ───────────────────── */
.hero.hero-fullbleed h1 {
  font-size: clamp(4.5rem, 10vw, 9.5rem);
}

@media (max-width: 1024px) {
  .hero.hero-fullbleed h1 {
    font-size: clamp(3.6rem, 9vw, 6.5rem);
  }
}

@media (max-width: 768px) {
  .hero.hero-fullbleed h1 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }
}

/* — Hero metrics — premium glassmorphic ─────────── */
.hero.hero-fullbleed .hero-metrics li {
  background: rgba(4, 13, 10, 0.46);
  border: 1px solid rgba(210, 162, 79, 0.16);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.hero.hero-fullbleed .hero-metrics li:hover {
  border-color: rgba(210, 162, 79, 0.36);
  background: rgba(4, 13, 10, 0.62);
  transform: translateY(-5px);
}

/* — Section headings — bolder, editorial ────────── */
.section-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.04;
}

/* — Card photos — taller, scale on hover ────────── */
.card-photo {
  height: 220px;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(247, 240, 227, 0.07);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.program-card:hover .card-photo,
.pillar-card:hover .card-photo {
  transform: scale(1.04);
}

/* Card ambient top glow */
.program-card,
.pillar-card {
  position: relative;
  overflow: hidden;
}

.program-card::before,
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(210,162,79,0.06), transparent);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.program-card > *,
.pillar-card > * {
  position: relative;
  z-index: 1;
}

/* — Pillar grid — 3 equal columns matching program grid ─── */
.pillar-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

/* — Pathway cards — oversized editorial step numbers */
.pathway-card {
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
}

.pathway-card span {
  display: block;
  font-family: var(--font-impact);
  font-size: clamp(4.5rem, 7vw, 6.5rem);
  line-height: 0.9;
  color: rgba(210, 162, 79, 0.1);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  transition: color 0.45s ease;
}

.pathway-card:hover span {
  color: rgba(210, 162, 79, 0.26);
}

.pathway-card h3 {
  font-family: var(--font-impact);
  font-size: 1.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 1;
}

.pathway-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* — Media captions — elevated typography ────────── */
.media-caption {
  padding: 13px 18px 15px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.media-caption span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

.media-caption strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* — Contact section — ambient depth glow ────────── */
.contact-section::after {
  content: "";
  position: absolute;
  bottom: -60px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(31,118,82,0.13), transparent 64%);
  pointer-events: none;
  z-index: 0;
}

.contact-panel-inner {
  position: relative;
  z-index: 1;
}

/* — Button disabled — refined ───────────────────── */
.button-disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.18);
}

/* — Featured strip heading — larger ─────────────── */
.featured-strip-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* — Section-dark enhanced border ────────────────── */
.section-dark {
  border-color: rgba(247, 240, 227, 0.07);
  box-shadow: inset 0 1px 0 rgba(210, 162, 79, 0.06);
}

/* — Smooth card hover elevation ─────────────────── */
.program-card:hover,
.pillar-card:hover,
.pathway-card:hover {
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(210, 162, 79, 0.22);
  border-color: rgba(210, 162, 79, 0.32);
}

/* — Footer — more visual weight ─────────────────── */
.site-footer {
  padding-top: 42px;
  border-top-color: var(--line-strong);
}

.site-footer strong {
  font-size: 1.9rem;
}

.footer-credit {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 240, 227, 0.22);
  margin-top: 6px;
  display: block;
}

/* — Lede text in hero — slightly larger ─────────── */
.hero.hero-fullbleed .lede {
  font-size: 1.12rem;
  color: rgba(247, 240, 227, 0.84);
  line-height: 1.65;
}

/* — FAQ details — polish ─────────────────────────── */
.faq-item {
  border-color: var(--line-strong);
}

.faq-item[open] {
  background: rgba(210, 162, 79, 0.03);
}

/* — Scrollbar — themed ───────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(210, 162, 79, 0.22);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(210, 162, 79, 0.4);
}

/* — Nav Donate highlight ─────────────────────────── */
.site-nav .nav-donate {
  color: var(--gold) !important;
  border: 1px solid rgba(210, 162, 79, 0.28);
  border-radius: 999px;
  padding: 5px 14px !important;
  background: rgba(210, 162, 79, 0.06);
  transition: var(--transition);
}
.site-nav .nav-donate:hover {
  background: rgba(210, 162, 79, 0.14);
  border-color: rgba(210, 162, 79, 0.5);
  color: var(--gold-strong) !important;
}

/* — Overview video mosaic — uniform 2×2 card grid ── */
/* Force all overview video cards to equal half-width */
.media-mosaic .media-card {
  grid-column: span 6 !important;
}

/* All overview video shells use 16:9 — consistent, no tall/wide distortion */
.media-mosaic .media-video-shell {
  aspect-ratio: 16 / 9;
}

/* Override portrait/wide per-card aspect shells inside mosaic */
.media-mosaic .media-video-shell-portrait,
.media-mosaic .media-video-shell-wide,
.media-mosaic .media-video-shell-feature-wide {
  aspect-ratio: 16 / 9;
}

@media (max-width: 900px) {
  .media-mosaic .media-card {
    grid-column: span 12 !important;
  }
}

/* — Media caption — block layout with description ── */
.media-caption {
  display: block;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--line);
}

.caption-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.caption-meta span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

.caption-meta strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.media-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.58;
  max-width: 52ch;
}

/* Featured video card — keep description visible */
.featured-video-grid .media-caption {
  padding: 16px 22px 20px;
}

.featured-video-grid .caption-meta strong {
  font-size: 1.15rem;
}

.featured-video-grid .media-description {
  font-size: 0.88rem;
  max-width: 66ch;
}

/* — Card photo — object-position via JS inline style; CSS is fallback ── */
.card-photo {
  object-position: center center;
}

/* ══════════════════════════════════════════════════
   NEW FEATURES LAYER
   ══════════════════════════════════════════════════ */

/* — Header actions (lang toggle + CTA) ──────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* — Language toggle button ───────────────────────── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle:hover {
  border-color: rgba(210, 162, 79, 0.5);
  color: var(--gold);
  background: rgba(210, 162, 79, 0.06);
}

.lang-toggle.is-active {
  border-color: rgba(210, 162, 79, 0.55);
  color: var(--gold);
  background: rgba(210, 162, 79, 0.1);
}

@media (max-width: 768px) {
  .lang-toggle {
    height: 28px;
    padding: 0 10px;
    font-size: 0.62rem;
  }
}

/* — Email notify form ────────────────────────────── */
.notify-wrap {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.notify-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.notify-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.notify-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(247, 240, 227, 0.15);
  background: rgba(255, 248, 235, 0.05);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
}

.notify-input::placeholder {
  color: var(--muted);
}

.notify-input:focus {
  border-color: rgba(210, 162, 79, 0.55);
  background: rgba(255, 248, 235, 0.08);
}

.notify-submit {
  height: 44px;
  padding: 0 22px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  border-radius: 999px;
}

.notify-success {
  color: var(--gold);
  font-size: 0.88rem;
  margin: 10px 0 0;
  padding: 12px 16px;
  background: rgba(210, 162, 79, 0.08);
  border: 1px solid rgba(210, 162, 79, 0.2);
  border-radius: 12px;
  line-height: 1.5;
}

.notify-direct {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.notify-direct a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(210, 162, 79, 0.3);
  transition: color 0.2s ease;
}

.notify-direct a:hover {
  color: var(--gold-strong);
}

/* — Footer email link ────────────────────────────── */
.footer-email {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(247, 240, 227, 0.35);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: var(--gold);
}

/* — prefers-reduced-motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal.is-visible {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .ticker-inner,
  .blob,
  .blob-1,
  .blob-2,
  .blob-3,
  .pitch-dot {
    animation: none !important;
  }
  .hero-copy {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .sticky-cta,
  .scroll-indicator,
  .mission-quote {
    transition: none !important;
    transform: none !important;
  }
}

/* ══════════════════════════════════════════════════
   CINEMATIC EDITORIAL LAYER — Phase 1
   ══════════════════════════════════════════════════ */

:root {
  --ink: #040807;
  --bone: #f5eedc;
  --oxblood: #5c1a1a;
  --oxblood-soft: rgba(92, 26, 26, 0.35);
  --glass: rgba(255, 248, 235, 0.055);
  --glass-strong: rgba(255, 248, 235, 0.11);
  --gold-dim: rgba(210, 162, 79, 0.55);
  --text-hero: clamp(3.6rem, 11.5vw, 10rem);
  --text-editorial: clamp(2.4rem, 6.2vw, 5.4rem);
  --text-quote: clamp(1.8rem, 4.2vw, 3.6rem);
  --space-section: clamp(80px, 12vw, 160px);
}

/* — Hero v2: Editorial magazine layout ──────────── */
.hero.hero-fullbleed .hero-inner {
  align-items: flex-end;
  padding: 140px 0 120px;
}

.hero.hero-fullbleed .hero-copy {
  text-align: left;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow   stat"
    "lockup    stat"
    "lede      stat"
    "actions   stat";
  align-items: end;
  gap: 22px 40px;
}

.hero.hero-fullbleed .eyebrow {
  grid-area: eyebrow;
  justify-content: flex-start;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero.hero-fullbleed .eyebrow::before,
.hero.hero-fullbleed .eyebrow::after {
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.8;
}

.hero.hero-fullbleed .hero-lockup {
  grid-area: lockup;
  justify-content: flex-start;
  align-items: flex-end;
  gap: clamp(16px, 2vw, 28px);
  margin: 0 0 6px;
}

.hero.hero-fullbleed .hero-emblem {
  width: clamp(70px, 8vw, 118px);
  transform: translateY(-6%);
}

.hero.hero-fullbleed h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  font-style: italic;
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--bone);
  max-width: 11ch;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 20px 60px rgba(0, 0, 0, 0.7);
  text-align: left;
}

.hero.hero-fullbleed .lede {
  grid-area: lede;
  max-width: 54ch;
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(245, 238, 220, 0.86);
  text-align: left;
}

.hero.hero-fullbleed .hero-actions {
  grid-area: actions;
  justify-content: flex-start;
  margin-top: 14px;
}

/* Hero floating stat card (replaces inline metrics on desktop) */
.hero-stat-card {
  grid-area: stat;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid var(--glass-strong);
  border-radius: 20px;
  padding: 22px 26px;
  min-width: 220px;
  max-width: 280px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  align-self: end;
  display: none;
}

.hero-stat-card .stat-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.hero-stat-card .stat-number {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  line-height: 1;
  color: var(--bone);
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-stat-card .stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.45;
}

@media (min-width: 900px) {
  .hero-stat-card {
    display: block;
  }
}

@media (max-width: 899px) {
  .hero.hero-fullbleed .hero-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "lockup"
      "lede"
      "actions";
    gap: 18px;
  }
  .hero.hero-fullbleed .hero-lockup {
    align-items: center;
  }
}

/* Hide the old .hero-metrics under the new hero; they shift to mobile only */
.hero.hero-fullbleed .hero-metrics {
  display: none;
}

/* — Scroll indicator ──────────────────────────────── */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 238, 220, 0.45);
  z-index: 3;
  animation: scrollNudge 2.8s ease-in-out infinite;
  pointer-events: none;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold-dim));
}

@keyframes scrollNudge {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.45; }
  50%      { transform: translate(-50%, 8px); opacity: 0.85; }
}

/* — Mission statement section (new) ─────────────── */
.mission-section {
  position: relative;
  padding: var(--space-section) 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(92, 26, 26, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(210, 162, 79, 0.08), transparent 55%),
    var(--ink);
  overflow: hidden;
}

.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 8%),
    linear-gradient(0deg, var(--bg) 0%, transparent 8%);
  pointer-events: none;
}

.mission-inner {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.mission-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.mission-tag::before,
.mission-tag::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-dim);
}

.mission-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--text-editorial);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: 0 auto;
  max-width: 18ch;
}

.mission-quote .accent {
  color: var(--gold);
  font-style: italic;
}

.mission-attribution {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 44px;
}

.mission-attribution::before {
  content: "— ";
  color: var(--gold);
}

/* — Sticky floating donate CTA ─────────────────── */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 20px;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #1a1208;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow:
    0 18px 40px rgba(210, 162, 79, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.sticky-cta:hover {
  box-shadow:
    0 22px 50px rgba(210, 162, 79, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px) scale(1.02);
}

.sticky-cta svg {
  width: 16px;
  height: 16px;
}

.sticky-cta-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid var(--gold-strong);
  opacity: 0;
  animation: ctaPulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes ctaPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.2); }
}

@media (max-width: 520px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
    padding: 12px 18px 12px 16px;
    font-size: 0.72rem;
  }
}

/* — Split-text reveal ─────────────────────────── */
.split-text {
  display: inline-block;
}

.split-text .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--word-i, 0) * 50ms);
}

.split-text.is-visible .word {
  opacity: 1;
  transform: translateY(0);
}

/* — Editorial type helper ─────────────────────── */
.editorial-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════
   SCROLLYTELLING PATHWAY — Phase 2
   ══════════════════════════════════════════════════ */

.scroll-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  margin-top: 44px;
  align-items: flex-start;
}

.scroll-story-stage {
  position: sticky;
  top: 12vh;
  height: calc(100vh - 22vh);
  min-height: 420px;
  max-height: 720px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.scroll-story-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(4, 8, 7, 0.85) 100%),
    linear-gradient(90deg, rgba(4, 8, 7, 0.3), transparent 40%);
  pointer-events: none;
  z-index: 2;
}

.scroll-story-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 2.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.92) contrast(1.05);
}

.scroll-story-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.scroll-story-badge {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(10, 6, 3, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-strong);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-story-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}

.scroll-story-steps {
  display: flex;
  flex-direction: column;
}

.scroll-story-step {
  min-height: 74vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  opacity: 0.28;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-story-step.is-active {
  opacity: 1;
}

.scroll-story-step .step-number {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3.8rem, 7.5vw, 6.4rem);
  line-height: 0.9;
  color: var(--gold);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.scroll-story-step h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1;
  color: var(--bone);
  margin: 0 0 22px;
  letter-spacing: -0.015em;
}

.scroll-story-step p {
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.62;
  color: var(--text-dim);
  max-width: 46ch;
  margin: 0;
}

/* Pathway finale block */
.pathway-finale {
  margin-top: 60px;
  padding: 48px 36px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(92, 26, 26, 0.2), transparent 70%),
    rgba(10, 6, 3, 0.4);
  border: 1px solid var(--glass-strong);
  border-radius: 24px;
}

.pathway-finale p {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.3;
  margin: 0;
  color: var(--text);
  max-width: 38ch;
  margin-inline: auto;
}

.pathway-finale .accent {
  color: var(--gold);
  font-weight: 600;
}

/* Mobile: stage becomes shorter, stacks above */
@media (max-width: 899px) {
  .scroll-story {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .scroll-story-stage {
    position: sticky;
    top: 70px;
    height: 48vh;
    min-height: 320px;
    max-height: 420px;
    margin-bottom: 30px;
  }
  .scroll-story-step {
    min-height: 60vh;
  }
}

/* ══════════════════════════════════════════════════
   BENTO PROGRAMS + EDITORIAL PILLARS — Phase 3
   ══════════════════════════════════════════════════ */

/* — Programs: Asymmetric bento ────────────────── */
#program-grid.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
  margin-top: 44px;
}

#program-grid.bento-grid .program-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  background: var(--ink);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

#program-grid.bento-grid .program-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
#program-grid.bento-grid .program-card:nth-child(2) { grid-column: span 4; grid-row: span 2; }
#program-grid.bento-grid .program-card:nth-child(3) { grid-column: span 6; grid-row: span 1; }

#program-grid.bento-grid .card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: saturate(0.95) contrast(1.03);
}

#program-grid.bento-grid .program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 7, 0) 58%, rgba(4, 8, 7, 0.70) 100%);
  z-index: 1;
  pointer-events: none;
}

#program-grid.bento-grid .program-card > * {
  position: relative;
  z-index: 2;
}

#program-grid.bento-grid .program-card:hover .card-photo {
  transform: scale(1.08);
}

#program-grid.bento-grid .program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.55);
}

#program-grid.bento-grid .program-card .card-label {
  display: inline-flex;
  padding: 5px 11px;
  background: rgba(10, 6, 3, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-strong);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  width: max-content;
}

#program-grid.bento-grid .program-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1;
  margin: 0 0 10px;
  color: var(--bone);
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

#program-grid.bento-grid .program-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(245, 238, 220, 0.82);
  margin: 0 0 10px;
  max-width: 48ch;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

#program-grid.bento-grid .program-card small {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: none;
}

/* Third card: standard full-bleed, same as cards 1 and 2 */

@media (max-width: 899px) {
  #program-grid.bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  #program-grid.bento-grid .program-card:nth-child(1),
  #program-grid.bento-grid .program-card:nth-child(2),
  #program-grid.bento-grid .program-card:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
  }
}

/* — Pillars: Editorial split-screen ──────────── */
#pillar-grid.editorial-split {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vw, 60px);
  margin-top: 44px;
}

#pillar-grid.editorial-split .pillar-card {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  min-height: auto;
}

#pillar-grid.editorial-split .pillar-card:nth-child(even) {
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
}

#pillar-grid.editorial-split .pillar-card:nth-child(even) .card-photo {
  order: 2;
}

#pillar-grid.editorial-split .card-photo {
  position: relative;
  width: 100%;
  height: clamp(320px, 42vw, 540px);
  object-fit: cover;
  border-radius: 24px;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.5);
}

#pillar-grid.editorial-split .pillar-card:hover .card-photo {
  transform: scale(1.02);
}

#pillar-grid.editorial-split .pillar-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  margin: 0 0 24px;
  color: var(--bone);
  letter-spacing: -0.02em;
}

#pillar-grid.editorial-split .pillar-card h3::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 18px;
  transform: translateY(-10px);
}

#pillar-grid.editorial-split .pillar-card p {
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0;
  max-width: 48ch;
}

@media (max-width: 899px) {
  #pillar-grid.editorial-split .pillar-card,
  #pillar-grid.editorial-split .pillar-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #pillar-grid.editorial-split .pillar-card:nth-child(even) .card-photo {
    order: 0;
  }
  #pillar-grid.editorial-split .card-photo {
    height: 60vw;
    max-height: 420px;
  }
  #pillar-grid.editorial-split .pillar-card h3::before {
    width: 32px;
  }
}

/* ══════════════════════════════════════════════════
   GALLERY + SOCIAL PROOF + FINAL CTA — Phase 5
   ══════════════════════════════════════════════════ */

.gallery-section {
  width: var(--container);
  margin: clamp(80px, 12vw, 140px) auto 0;
  padding-bottom: clamp(40px, 6vw, 80px);
}

.block-heading.center-heading {
  text-align: center;
  margin-bottom: 48px;
}

.block-heading.center-heading h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--text-editorial);
  line-height: 1;
  margin: 0 0 14px;
  color: var(--bone);
  letter-spacing: -0.02em;
}

.block-heading.center-heading p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  color: var(--muted);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: zoom-in;
  background: var(--ink);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--glass-strong);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s ease;
  filter: saturate(0.92) contrast(1.03);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.06);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(4, 8, 7, 0.5));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after { opacity: 1; }

/* Asymmetric spans */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(7) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(8) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(9) { grid-column: span 3; grid-row: span 1; }

@media (max-width: 899px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* — Lightbox overlay ──────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 8, 7, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lightbox.is-open {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 94vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-strong);
  border: 1px solid var(--glass-strong);
  color: var(--bone);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(210, 162, 79, 0.2);
  transform: scale(1.06);
}

/* — Social Proof Band ─────────────────────────── */
.social-proof {
  width: var(--container);
  margin: 40px auto clamp(60px, 8vw, 100px);
}

.social-proof-inner {
  padding: 42px 40px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(31, 118, 82, 0.18), transparent 70%),
    rgba(10, 6, 3, 0.5);
  border: 1px solid var(--glass-strong);
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

.social-proof-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 40px,
    rgba(247, 240, 227, 0.015) 40px 41px
  );
  pointer-events: none;
}

.social-proof-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
}

.social-proof-counter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.counter-number {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.9;
  color: var(--bone);
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--bone) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-proof-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-dim);
  max-width: 32ch;
  line-height: 1.3;
}

/* — "Any amount" block in contact ─────────────── */
.any-amount {
  margin-top: 18px;
  padding: 18px 22px;
  background:
    linear-gradient(135deg, rgba(210, 162, 79, 0.08), rgba(31, 118, 82, 0.06));
  border: 1px solid rgba(210, 162, 79, 0.2);
  border-radius: 16px;
  text-align: center;
}

.any-amount-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}

.any-amount-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.4;
  color: var(--bone);
  margin: 0;
}

/* ══════════════════════════════════════════════════
   COMPACT + PERFORMANCE OVERRIDE LAYER (final pass)
   ══════════════════════════════════════════════════ */

/* Token refinements */
:root {
  --gold: #f4c050;
  --gold-strong: #ffd274;
  --space-section: clamp(28px, 5vw, 56px);
  --text-hero: clamp(2.8rem, 7vw, 5.4rem);
  --text-editorial: clamp(1.8rem, 3.8vw, 3rem);
  --text-quote: clamp(1.5rem, 3vw, 2.4rem);
}

/* Kill scroll-repaint costs */
html { scroll-behavior: auto !important; }
body {
  background-attachment: scroll !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(31, 118, 82, 0.2), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(244, 192, 80, 0.14), transparent 26%),
    var(--bg) !important;
}
body::before { display: none !important; }
.bg-decorations { display: none !important; }

.grain-overlay {
  opacity: 0.012 !important;
  mix-blend-mode: normal !important;
}

/* Blur reduction globally — 6px max, no saturate() */
.site-header,
.hero-stat-card,
.sticky-cta,
.scroll-story-badge,
.gallery-item,
.lightbox,
#program-grid.bento-grid .program-card .card-label,
.social-proof-inner,
.any-amount,
.faq-item summary,
.contact-panel,
.notify-wrap {
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

/* Hero: compact, non-100vh */
.hero.hero-fullbleed { min-height: 64svh !important; }
.hero.hero-fullbleed .hero-inner {
  min-height: auto !important;
  padding: clamp(60px, 9vw, 95px) 0 clamp(40px, 6vw, 65px) !important;
  align-items: center !important;
}
.hero.hero-fullbleed .hero-copy {
  gap: 14px 28px !important;
}
.scroll-indicator { display: none !important; }

/* Hero h1 — sans-serif, readable, strong contrast */
.hero.hero-fullbleed h1 {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(2.4rem, 6vw, 4.6rem) !important;
  line-height: 0.98 !important;
  letter-spacing: 0.005em !important;
  text-transform: none !important;
  color: #ffffff !important;
  max-width: 14ch !important;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.9),
    0 8px 32px rgba(0,0,0,0.8),
    0 0 80px rgba(0,0,0,0.6) !important;
}

.hero.hero-fullbleed .lede {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem) !important;
  line-height: 1.5 !important;
  max-width: 50ch !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.85), 0 4px 20px rgba(0,0,0,0.7) !important;
}

.hero.hero-fullbleed .hero-emblem {
  width: clamp(60px, 6vw, 88px) !important;
}

.hero-stat-card {
  padding: 16px 20px !important;
  min-width: 180px !important;
  max-width: 240px !important;
  border-radius: 14px !important;
  background: rgba(4, 8, 7, 0.82) !important;
  border: 1px solid rgba(244, 192, 80, 0.25) !important;
}
.hero-stat-card .stat-eyebrow,
.hero-stat-card .stat-number,
.hero-stat-card .stat-label {
  text-shadow: none !important;
}
.hero-stat-card .stat-number {
  color: #ffffff !important;
}
.hero-stat-card .stat-label {
  color: rgba(245, 238, 220, 0.92) !important;
}
.hero-stat-card .stat-number {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem) !important;
}
.hero-stat-card .stat-label {
  font-size: 0.76rem !important;
  line-height: 1.4 !important;
}

/* Mission: compact */
.mission-section {
  padding: clamp(30px, 5vw, 58px) 0 !important;
}
.mission-tag { margin-bottom: 12px !important; }
.mission-attribution { margin-top: 18px !important; }
.mission-quote {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem) !important;
  line-height: 1.2 !important;
  max-width: 28ch !important;
  letter-spacing: 0 !important;
}
.mission-quote .accent {
  color: var(--gold) !important;
  font-style: normal !important;
  font-weight: 700 !important;
}

/* Ticker strip tighter */
.ticker-strip { padding: 10px 0 !important; }

/* Section shell tighter */
.section.section-soft.compact-overview {
  padding-top: clamp(18px, 3vw, 36px) !important;
  padding-bottom: clamp(18px, 3vw, 36px) !important;
}
.section-heading {
  margin-bottom: clamp(16px, 2.5vw, 28px) !important;
}
.section-heading h2 {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem) !important;
  line-height: 1.1 !important;
  margin: 6px 0 10px !important;
  max-width: 26ch !important;
}
.section-heading p {
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
  max-width: 55ch !important;
}

.overview-stack { gap: clamp(28px, 4vw, 48px) !important; }
.overview-block { margin-bottom: 0 !important; }
.block-heading { margin-bottom: 16px !important; }
.block-heading h3 {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(1.4rem, 2.6vw, 2rem) !important;
  line-height: 1.1 !important;
  margin: 0 0 6px !important;
}
.block-heading p {
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
  max-width: 58ch !important;
}

/* Video mosaic tighter */
.media-mosaic {
  margin-bottom: clamp(24px, 4vw, 40px) !important;
  gap: 10px !important;
}
.media-card {
  border-radius: 14px !important;
}

/* Programs bento: tighter, cleaner */
#program-grid.bento-grid {
  grid-auto-rows: 240px !important;
  gap: 10px !important;
  margin-top: 18px !important;
}
#program-grid.bento-grid .program-card {
  padding: 14px 16px !important;
  border-radius: 14px !important;
}
#program-grid.bento-grid .program-card h3 {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem) !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  margin: 0 0 6px !important;
}
#program-grid.bento-grid .program-card p {
  font-size: 0.84rem !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}
#program-grid.bento-grid .program-card .card-label {
  padding: 4px 9px !important;
  font-size: 0.56rem !important;
  margin-bottom: 8px !important;
}

/* Pillars split: tighter, sans-serif */
#pillar-grid.editorial-split {
  gap: clamp(20px, 3vw, 38px) !important;
  margin-top: 18px !important;
}
#pillar-grid.editorial-split .card-photo {
  height: clamp(200px, 28vw, 340px) !important;
  border-radius: 16px !important;
}
#pillar-grid.editorial-split .pillar-card h3 {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem) !important;
  line-height: 1.1 !important;
  margin: 0 0 12px !important;
  letter-spacing: 0 !important;
}
#pillar-grid.editorial-split .pillar-card h3::before {
  width: 32px !important;
  transform: translateY(-6px) !important;
}
#pillar-grid.editorial-split .pillar-card p {
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
}

/* Pathway: compact 2-column (image + 2x2 step grid with click-to-switch) */
.scroll-story {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 20px !important;
  margin-top: 18px !important;
  align-items: stretch !important;
}
.scroll-story-stage {
  position: relative !important;
  top: auto !important;
  height: 100% !important;
  min-height: 320px !important;
  max-height: none !important;
  border-radius: 16px !important;
}
.scroll-story-steps {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
  align-content: stretch !important;
}
.scroll-story-step {
  min-height: auto !important;
  padding: 14px 16px !important;
  opacity: 1 !important;
  background: rgba(255, 248, 235, 0.04) !important;
  border: 1px solid rgba(255, 248, 235, 0.08) !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
  justify-content: flex-start !important;
}
.scroll-story-step:hover {
  background: rgba(244, 192, 80, 0.08) !important;
  border-color: rgba(244, 192, 80, 0.3) !important;
}
.scroll-story-step.is-active {
  background: rgba(244, 192, 80, 0.12) !important;
  border-color: rgba(244, 192, 80, 0.5) !important;
}
.scroll-story-step .step-number {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem) !important;
  line-height: 1 !important;
  margin: 0 0 4px !important;
  color: var(--gold) !important;
}
.scroll-story-step h3 {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem) !important;
  line-height: 1.1 !important;
  margin: 0 0 6px !important;
  letter-spacing: 0 !important;
}
.scroll-story-step p {
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
  max-width: none !important;
}

.scroll-story-badge {
  padding: 5px 10px !important;
  font-size: 0.54rem !important;
  left: 14px !important;
  top: 14px !important;
}

@media (max-width: 899px) {
  .scroll-story {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .scroll-story-stage {
    height: 220px !important;
    min-height: 220px !important;
    margin-bottom: 0 !important;
  }
  .scroll-story-steps { grid-template-columns: 1fr 1fr !important; }
  .scroll-story-step { padding: 10px 12px !important; }
  .scroll-story-step p { font-size: 0.72rem !important; }
}

/* Pathway finale tighter */
.pathway-finale {
  margin-top: 22px !important;
  padding: 22px 20px !important;
  border-radius: 14px !important;
}
.pathway-finale p {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: clamp(1.02rem, 1.8vw, 1.4rem) !important;
  line-height: 1.3 !important;
  max-width: 40ch !important;
}
.pathway-finale .accent { color: var(--gold) !important; font-weight: 700 !important; }

/* Gallery: even grid, all 9 visible, compact */
.gallery-section {
  width: var(--container) !important;
  margin: clamp(36px, 5vw, 60px) auto 0 !important;
  padding-bottom: 0 !important;
}
.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-rows: 180px !important;
  gap: 10px !important;
}
.gallery-item {
  grid-column: span 1 !important;
  grid-row: span 1 !important;
  border-radius: 12px !important;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(7),
.gallery-item:nth-child(8),
.gallery-item:nth-child(9) {
  grid-column: span 1 !important;
  grid-row: span 1 !important;
}
@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 150px !important;
  }
  .gallery-item:nth-child(n) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}
.block-heading.center-heading {
  margin-bottom: 18px !important;
}
.block-heading.center-heading h3 {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
  letter-spacing: 0 !important;
}
.block-heading.center-heading p {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-size: 0.92rem !important;
}

/* Social proof compact */
.social-proof {
  margin: 20px auto clamp(30px, 5vw, 50px) !important;
}
.social-proof-inner {
  padding: 22px 22px !important;
  border-radius: 18px !important;
}
.social-proof-label {
  font-size: 0.62rem !important;
  margin-bottom: 10px !important;
}
.counter-number {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem) !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: var(--gold) !important;
}
.social-proof-text {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-size: 0.88rem !important;
  max-width: 34ch !important;
}

/* Contact: single column stacked, tighter padding */
.contact-section {
  display: block !important;
  padding: clamp(30px, 5vw, 56px) 0 !important;
}
.contact-section > .contact-copy,
.contact-section > .contact-panel {
  max-width: var(--container) !important;
  margin: 0 auto !important;
  width: 100% !important;
}
.contact-copy { margin-bottom: 24px !important; }
.contact-copy h2 {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  line-height: 1.1 !important;
  margin: 4px 0 8px !important;
}
.contact-copy p {
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
  max-width: 60ch !important;
  margin: 0 0 16px !important;
}
.faq-list { gap: 8px !important; }
.faq-item { border-radius: 10px !important; }
.faq-item summary {
  padding: 12px 16px !important;
  font-size: 0.95rem !important;
  font-family: var(--font-ui) !important;
  font-weight: 600 !important;
}
.faq-item[open] summary { padding-bottom: 8px !important; }
.faq-item p {
  padding: 0 16px 14px !important;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
}

.contact-panel { padding: 0 !important; }
.contact-panel-inner {
  padding: clamp(20px, 3vw, 32px) !important;
  border-radius: 18px !important;
}
.contact-panel-inner h3 {
  font-family: var(--font-ui) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem) !important;
  line-height: 1.15 !important;
}
.contact-cards { gap: 12px !important; margin: 16px 0 !important; }
.contact-card {
  padding: 14px 16px !important;
  border-radius: 14px !important;
}
.contact-card-photo {
  height: 140px !important;
  border-radius: 10px !important;
  object-fit: cover !important;
}
.contact-cards .contact-card:nth-child(1) .contact-card-photo {
  object-position: center 70% !important;
}
.contact-cards .contact-card:nth-child(2) .contact-card-photo {
  object-position: center 55% !important;
}
.contact-card span {
  font-size: 0.66rem !important;
  margin-top: 10px !important;
}
.contact-card p {
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
}
.any-amount {
  padding: 12px 16px !important;
  border-radius: 12px !important;
}
.any-amount-eyebrow { font-size: 0.58rem !important; margin-bottom: 6px !important; }
.any-amount-text {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
}
.notify-wrap { margin-top: 14px !important; }
.notify-label { font-size: 0.66rem !important; margin-bottom: 8px !important; }
.notify-form { gap: 8px !important; }
.notify-input { padding: 10px 14px !important; font-size: 0.92rem !important; }
.notify-submit { padding: 10px 18px !important; font-size: 0.78rem !important; }
.notify-direct { font-size: 0.82rem !important; margin-top: 8px !important; }

/* Footer tighter */
.site-footer {
  padding: 20px 0 30px !important;
  margin-top: 30px !important;
}

/* Language toggle: explicit bilingual label, always visible */
.lang-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 7px 14px !important;
  font-family: var(--font-ui) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 999px !important;
  color: var(--gold) !important;
  background: rgba(10, 6, 3, 0.5) !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}
.lang-toggle:hover {
  background: var(--gold) !important;
  color: #1a1208 !important;
  transform: translateY(-1px) !important;
}
.lang-toggle.is-active {
  background: var(--gold) !important;
  color: #1a1208 !important;
}
.lang-toggle svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0 !important;
}
@media (max-width: 520px) {
  .lang-toggle {
    display: inline-flex !important;
    font-size: 0.58rem !important;
    padding: 6px 10px !important;
    gap: 4px !important;
  }
  .lang-toggle svg { width: 12px !important; height: 12px !important; }
  .header-actions .desktop-cta { display: none !important; }
}

/* Sticky CTA: explicit, no blur overuse */
.sticky-cta {
  padding: 11px 18px 11px 16px !important;
  font-size: 0.72rem !important;
}

/* FAQ details styling */
details.faq-item summary::after {
  content: "+" !important;
  float: right !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
}
details.faq-item[open] summary::after { content: "−" !important; }

/* ══════════════════════════════════════════════════
   LAYOUT HOTFIXES — spacing, alignment, crops
   ══════════════════════════════════════════════════ */

/* 1. Hero: proper full-bleed with overlay stats bar at bottom */
.hero.hero-fullbleed {
  min-height: 80svh !important;
  position: relative !important;
}
.hero.hero-fullbleed .hero-inner {
  padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 7vw, 90px) !important;
}

/* 2. Block heading: stack h3 above p (not side-by-side) */
.block-heading {
  display: block !important;
  flex-wrap: unset !important;
  justify-content: unset !important;
  align-items: unset !important;
  gap: 0 !important;
}
.block-heading h3 { margin: 0 0 6px !important; }
.block-heading p  { margin: 0 !important; }

/* 3. Gallery heading: centered stack */
.gallery-section .block-heading.center-heading { text-align: center !important; }
.gallery-section .block-heading.center-heading h3,
.gallery-section .block-heading.center-heading p { text-align: center !important; }

/* 4. Pillar cards: text anchors to top of image, not center */
#pillar-grid.editorial-split .pillar-card {
  align-items: start !important;
}
#pillar-grid.editorial-split .pillar-card h3 {
  margin-top: 0 !important;
}

/* 5. Program bento photo crops — show players mid-body, not sky or feet */
#program-grid.bento-grid .program-card:nth-child(1) .card-photo {
  object-position: center 70% !important;  /* youth orange — players visible */
}
#program-grid.bento-grid .program-card:nth-child(2) .card-photo {
  object-position: center 62% !important;  /* teen yellow — cut sky, show squad */
}
#program-grid.bento-grid .program-card:nth-child(3) .card-photo {
  object-position: center 58% !important;  /* senior full-width — show whole group */
}

/* 6. "Introducing the Youth" video card crop (3rd card in mosaic) */
.media-mosaic .media-card:nth-child(3) video,
.media-mosaic .media-card:nth-child(3) img {
  object-position: center 25% !important;
}

/* 7. Section-heading: enforce consistent left-aligned stacked layout */
.section-heading {
  display: block !important;
}
.section-heading .eyebrow,
.section-heading h2,
.section-heading p {
  display: block !important;
  text-align: left !important;
  max-width: 60ch !important;
}

/* 8. Mission section: hidden (replaced by gap-stats-bar) */
.mission-section { display: none !important; }

/* 9. Pathway section heading + para: stack cleanly */
#pathway .block-heading {
  max-width: 100% !important;
}
#pathway .block-heading p {
  max-width: 62ch !important;
  color: var(--muted) !important;
}

/* 10. Video card: consistent 16:9 aspect, no overflow */
.media-card video,
.media-card img:not(.contact-card-photo):not(.card-photo):not(.hero-emblem) {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

/* 11. Pillar image aspect: consistent height, correct subject framing */
#pillar-grid.editorial-split .pillar-card:nth-child(1) .card-photo { object-position: center 45% !important; }  /* organized structure — group */
#pillar-grid.editorial-split .pillar-card:nth-child(2) .card-photo { object-position: center 35% !important; }  /* real coaching — coaches group */
#pillar-grid.editorial-split .pillar-card:nth-child(3) .card-photo { object-position: center 50% !important; }  /* development pathway — squad */

/* 12. Pathway tabs: image fills container properly */
.scroll-story-image { object-position: center 60% !important; }
.scroll-story-stage::after { z-index: 2 !important; }

/* 13. Gallery photos: show team, not ground/sky */
.gallery-item img { object-position: center 35% !important; }

/* ══ GAP STATS BAR — overlaid directly on hero video ══ */
.gap-stats-bar { display: none; } /* old external bar removed */

.hero-gap-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: linear-gradient(to bottom, rgba(4, 8, 6, 0) 0%, rgba(4, 8, 6, 0.92) 40%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
}

.gap-bar-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  padding: 18px 0;
  flex-wrap: wrap;
}

.gap-bar-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}

.gap-bar-number {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.gap-bar-stat--gold .gap-bar-number { color: var(--gold); }
.gap-bar-stat--red  .gap-bar-number { color: #e05555; }

.gap-bar-label {
  font-family: var(--font-ui);
  font-size: clamp(0.62rem, 0.9vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 238, 220, 0.6);
  max-width: 16ch;
  line-height: 1.25;
}

.gap-bar-sep {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 238, 220, 0.25);
  flex-shrink: 0;
}

.gap-bar-caption {
  width: 100%;
  text-align: center;
  padding: 0 0 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(245, 238, 220, 0.38);
  letter-spacing: 0.04em;
}

@media (max-width: 560px) {
  .gap-bar-inner { padding: 14px 0; gap: 12px; }
  .gap-bar-number { font-size: 1.4rem; }
  .gap-bar-caption { display: none; }
}

/* 14. Pillar text wrapper: keep h3+p in col 2 together, top-aligned */
#pillar-grid.editorial-split .pillar-card {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  align-items: start !important;
}
.pillar-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-self: start !important;
  padding-top: 12px !important;
}
.pillar-text h3 { margin: 0 0 14px !important; }
.pillar-text p  { margin: 0 !important; font-size: 0.96rem !important; line-height: 1.62 !important; color: rgba(245, 238, 220, 0.78) !important; }

/* Even pillar cards: image on right, text on left (explicit grid placement) */
#pillar-grid.editorial-split .pillar-card:nth-child(even) .card-photo {
  grid-column: 2 !important;
  grid-row: 1 !important;
}
#pillar-grid.editorial-split .pillar-card:nth-child(even) .pillar-text {
  grid-column: 1 !important;
  grid-row: 1 !important;
}
#pillar-grid.editorial-split .pillar-card:nth-child(even) .pillar-text h3::before {
  margin-right: 18px !important;
}

/* 15. Coach interview (5th video card) → full width so it doesn't float half-empty */
.media-mosaic .media-card:nth-child(5) {
  grid-column: 1 / -1 !important;
}

/* ═══════════════════════════════════════════════════════════
   WHOLE-PAGE COMPACT PASS — April 2026
   Reduces page height by ~1300px (22% shorter)
   ═══════════════════════════════════════════════════════════ */

/* 1. Remove hero ::before diagonal wedge — gap-bar gradient handles the fade */
.hero.hero-fullbleed::before { display: none !important; }

/* 2. Video mosaic: 5:2 aspect ratio (was 16:9) + hide descriptions + tighter captions
      Saves ~600px across 5 cards */
.media-mosaic .media-video-shell,
.media-mosaic .media-video-shell-portrait,
.media-mosaic .media-video-shell-wide,
.media-mosaic .media-video-shell-feature-wide {
  aspect-ratio: 5 / 2 !important;
}
.media-description { display: none !important; }
.media-caption { padding: 10px 14px 12px !important; }
.media-mosaic {
  gap: 8px !important;
  margin-bottom: clamp(14px, 2.5vw, 26px) !important;
}

/* 3. Bento programs: shorter rows (was 240px) — saves ~150px */
#program-grid.bento-grid { grid-auto-rows: 190px !important; }

/* 4. Pillar photos: compact height on desktop only
      Eliminates the 150–200px empty gap that forms below short body text */
@media (min-width: 900px) {
  #pillar-grid.editorial-split .card-photo {
    height: clamp(160px, 15vw, 200px) !important;
  }
  #pillar-grid.editorial-split { gap: clamp(12px, 1.8vw, 22px) !important; }
}

/* 5. Gallery: tighter rows (was 180px) — saves ~90px */
.gallery-grid { grid-auto-rows: 150px !important; }
.gallery-section { margin-top: clamp(16px, 2.5vw, 30px) !important; }
.block-heading.center-heading { margin-bottom: 12px !important; }

/* 6. Overview section: tighter top/bottom padding */
.section.section-soft.compact-overview {
  padding-top: clamp(12px, 1.8vw, 20px) !important;
  padding-bottom: clamp(12px, 1.8vw, 20px) !important;
}

/* 7. Pathway: tighter finale + overview stack */
.pathway-finale {
  margin-top: 8px !important;
  padding: 16px 16px !important;
}
.overview-stack { gap: clamp(20px, 3vw, 36px) !important; }

/* 8. Contact section: less vertical breathing room */
.contact-section { padding: clamp(12px, 2vw, 22px) 0 !important; }

/* 9. Footer: tighter */
.page-shell { padding-bottom: 28px !important; margin-top: 0 !important; }
.site-footer { margin-top: 18px !important; }

/* Remove gap-bar and ticker (April 2026) */
.hero-gap-bar { display: none !important; }
.ticker-strip  { display: none !important; }

/* Bento card 3 (Senior Club Environment): span 2 rows so the team photo shows */
#program-grid.bento-grid .program-card:nth-child(3) {
  grid-row: span 2 !important;
}

/* Competitive Dev card (2) — taller to see team, crop positioned on players */
#program-grid.bento-grid .program-card:nth-child(2) {
  grid-column: span 4;
  grid-row: span 3;
}
#program-grid.bento-grid .program-card:nth-child(2) .card-photo {
  object-position: center 70% !important;  /* Yellow team positioned in view */
}

/* Senior Club card (3) — landscape, crop on green squad */
#program-grid.bento-grid .program-card:nth-child(3) {
  grid-column: span 6;
  grid-row: span 2;
}
#program-grid.bento-grid .program-card:nth-child(3) .card-photo {
  object-position: center 50% !important;  /* Green squad centered */
}
#pillar-grid.editorial-split .pillar-card:nth-child(3) .card-photo {
  object-position: center 38% !important;  /* Dev Pathway yellow kids — show faces */
}

/* Leadership section */
.leadership-section {
  width: var(--container);
  margin: clamp(20px, 3vw, 40px) auto 0;
  padding-bottom: clamp(16px, 2.5vw, 30px);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

@media (min-width: 600px) {
  .leadership-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

.leader-card {
  background: rgba(255, 248, 235, 0.04);
  border: 1px solid rgba(247, 240, 227, 0.1);
  border-radius: 16px;
  overflow: visible;
  transition: transform 0.35s ease, border-color 0.35s ease;
  text-align: center;
}

.leader-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 192, 80, 0.35);
}

.leader-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid rgba(244, 192, 80, 0.5);
  display: block;
  margin: 20px auto 0;
  background: #ffffff;
}

.leader-info {
  padding: 12px 16px 18px;
}

.leader-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 4px;
}

.leader-role {
  font-family: var(--font-ui);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}

.leader-bio {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 0;
}

/* Contact person block */
.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(244, 192, 80, 0.06);
  border: 1px solid rgba(244, 192, 80, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.contact-person-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.contact-person-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-person-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.contact-person-role {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-person-phone {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  margin-top: 2px;
}

.contact-person-phone:hover { color: var(--gold); }

.contact-person-facebook {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: #4f86f7;
  text-decoration: none;
  display: block;
  margin-top: 4px;
}
.contact-person-facebook:hover { text-decoration: underline; }

.leader-facebook {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: #4f86f7;
  text-decoration: none;
}
.leader-facebook:hover { text-decoration: underline; }

