/* ═══════════════════════════════════════
   Wynner's Academy — Awards-Site Aesthetic
   Navy Blue & Orange | GSAP Powered
   ═══════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --navy: #0b1d3a;
  --navy-deep: #050e1d;
  --navy-light: #132b50;
  --navy-mid: #0d2240;
  --orange: #bf3b0d;
  --orange-hover: #d4430f;
  --orange-glow: rgba(191, 59, 13, 0.15);
  --gold: #e0ac37;
  --green: #2a6445;
  --off-white: #f5f5f0;
  --cream: #faf9f6;
  --slate: #64748b;
  --slate-light: #94a3b8;
  --charcoal: #1e293b;
  --white: #ffffff;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-height: 80px;
  --container: 1400px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 50px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--navy-deep);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--navy-deep);
  overflow-x: hidden;
}

body.loaded {
  background: var(--off-white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-out);
}

/* ═══════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.preloader__logo {
  width: 280px;
  height: auto;
}

.preloader__part {
  visibility: hidden;
}

.preloader__tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  min-height: 1.5em;
  opacity: 0;
}

.preloader__tagline-text {
  color: rgba(255, 255, 255, 0.85);
}

.preloader__cursor {
  display: inline-block;
  color: var(--orange);
  font-weight: 300;
  animation: preloaderBlink 0.6s step-end infinite;
  margin-left: 1px;
}

@keyframes preloaderBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ═══════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--orange);
}

.section-tag--light {
  color: var(--gold);
}

.section-tag--light::before {
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  max-width: 720px;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--slate);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

.section-subtitle--light {
  color: var(--slate-light);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  box-shadow: 0 8px 32px rgba(191, 59, 13, 0.3);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11, 29, 58, 0.2);
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }
.btn--sm { padding: 12px 24px; font-size: 0.875rem; }
.btn--lg { padding: 20px 48px; font-size: 1rem; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all 0.5s var(--ease-out);
  opacity: 0;
  transform: translateY(-20px);
}

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

.nav--scrolled {
  background: rgba(5, 14, 29, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1010;
}

.nav__logo-icon img { display: block; }

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.4s var(--ease-out);
}

.nav--scrolled .nav__logo-text {
  color: var(--white);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link.active {
  background: rgba(255, 255, 255, 0.15);
}

.nav__links {
  transition: opacity 0.5s var(--ease-out);
}

/* .nav:not(.nav--scrolled) .nav__links {
  opacity: 0;
  pointer-events: none;
} */

/* Nav scrolled — switch to light text for dark bg */
.nav--scrolled .nav__link {
  color: rgba(255, 255, 255, 0.6);
}

.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link.active {
  color: var(--white);
}

.nav--scrolled .nav__link.active {
  background: rgba(255, 255, 255, 0.08);
}

.nav__link--cta {
  background: var(--white);
  color: var(--orange) !important;
  font-weight: 700;
  padding: 10px 24px;
}

.nav__link--cta:hover {
  background: var(--off-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav--scrolled .nav__link--cta {
  background: var(--orange);
  color: var(--white) !important;
}

.nav--scrolled .nav__link--cta:hover {
  background: var(--orange-hover);
  box-shadow: 0 4px 16px rgba(191, 59, 13, 0.3);
}

/* Mobile Donate + Hamburger wrapper */
.nav__mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 1010;
}

.nav__mobile-donate {
  display: inline-block;
  padding: 8px 18px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.nav__mobile-donate:hover {
  background: var(--orange-hover);
  box-shadow: 0 4px 16px rgba(191, 59, 13, 0.3);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav--scrolled .nav__toggle span {
  background: var(--white);
}

.nav__toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle--active span:nth-child(2) { opacity: 0; }
.nav__toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* ── Split background layers ── */
.hero__bg-navy {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(191, 59, 13, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(42, 100, 69, 0.05) 0%, transparent 50%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-mid) 100%);
  z-index: 0;
}

.hero__bg-orange {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--orange);
  z-index: 0;
}

/* ── Inner layout: text left, image right ── */
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 100vh;
  padding-top: var(--nav-height);
}

.hero__content {
  position: relative;
  flex: 1 1 45%;
  padding: 60px clamp(32px, 5vw, 60px) 60px;
}

.hero__image-wrap {
  position: relative;
  flex: 1 1 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.hero__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1100px;
  border-radius: var(--radius-xl);
}

/* Hide hero elements until animateHero() runs after preloader */
.hero__tag,
.hero__title-line,
.hero__text,
.hero__actions,
.hero__image-wrap {
  opacity: 0;
}

.hero__tag-wrap { overflow: hidden; margin-bottom: 24px; }

.hero__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(224, 172, 55, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(224, 172, 55, 0.15);
}

.hero__ein {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.65;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .hero__ein {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__title-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.hero__title-accent {
  color: var(--orange);
}

.hero__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--slate-light);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */

/* ═══════════════════════════════════════
   PILLARS
   ═══════════════════════════════════════ */
.pillars {
  padding: 140px 0;
  background: var(--off-white);
  position: relative;
}

.pillars__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.pillars__header {
  margin-bottom: 72px;
  max-width: 640px;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillars__card {
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.pillars__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.pillars__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(11, 29, 58, 0.08);
}

.pillars__card:hover::after {
  transform: scaleX(1);
}

.pillars__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillars__card-letter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
}

.pillars__card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.pillars__card-text {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
/* Legacy about section removed - Replaced by Founders Grid further down */
.about {
  padding: 140px 0 100px;
  background: var(--navy);
  color: var(--white);
}

.about__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.about__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.about__header .section-title {
  margin-bottom: 24px;
}

.about__lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--slate-light);
}

.founders__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.founder__card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy-mid);
  transition: all 0.6s var(--ease-out);
}

.founder__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.founder__image {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.founder__card:hover .founder__image img {
  transform: scale(1.05);
}

.founder__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 29, 58, 0.95) 10%, rgba(11, 29, 58, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px 32px;
  z-index: 2;
}

.founder__info {
  width: 100%;
  transition: transform 0.5s var(--ease-out);
}

.founder__card:hover .founder__info {
  transform: translateY(-5px);
}

.founder__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.founder__role {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder__bio {
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.6;
  opacity: 0.7;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.founder__card:hover .founder__bio {
  opacity: 1;
  max-height: 100px;
  margin-top: 12px;
}


/* ═══════════════════════════════════════
   PROGRAMS
   ═══════════════════════════════════════ */
/* ═══ PROGRAMS — SCROLL-LOCKED SHOWCASE ═══ */
.programs {
  padding: 0 0 100px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

/* ═══ IMAGE DIVIDER ═══ */
.divider-image {
  position: relative;
  height: clamp(500px, 75vh, 820px);
  overflow: hidden;
}

.divider-image__inner {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
}

.divider-image__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  display: block;
}

.divider-image__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    var(--navy-deep) 0%,
    rgba(5, 14, 29, 0.15) 20%,
    transparent 40%,
    transparent 75%,
    var(--off-white) 100%
  );
}

@media (max-width: 768px) {
  .divider-image {
    height: clamp(240px, 40vh, 360px);
  }
}

/* Showcase container */
.programs__showcase {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 0;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(40px, 6vw, 120px);
  height: calc(100vh - var(--nav-height, 80px));
  box-sizing: border-box;
}

.showcase__header {
  grid-column: 1 / -1;
  padding: clamp(24px, 3vh, 48px) 0 clamp(16px, 2vh, 28px) 0;
  text-align: center;
}

.showcase__header .section-title {
  max-width: 800px;
  margin: 0 auto;
}

.showcase__header .section-subtitle {
  max-width: 620px;
  margin: 0 auto;
}

/* Left navigation */
.showcase__nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 32px 0;
}

.showcase__nav::before {
  content: '';
  position: absolute;
  top: 56px;
  bottom: 56px;
  left: 50%;
  width: 2px;
  background: rgba(11, 29, 58, 0.08);
  transform: translateX(-50%);
  z-index: 0;
}

.showcase__nav-item {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.showcase__ring {
  position: absolute;
  inset: 0;
  width: 52px;
  height: 52px;
  transform: rotate(-90deg);
}

.showcase__ring-bg {
  stroke: rgba(11, 29, 58, 0.1);
}

.showcase__ring-fill {
  stroke: var(--orange);
  stroke-linecap: round;
}

.showcase__nav-item:nth-child(1) .showcase__ring-fill { stroke: #bf3b0d; }
.showcase__nav-item:nth-child(2) .showcase__ring-fill { stroke: #2a6445; }
.showcase__nav-item:nth-child(3) .showcase__ring-fill { stroke: #e0ac37; }
.showcase__nav-item:nth-child(4) .showcase__ring-fill { stroke: #0b1d3a; }

.showcase__nav-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  color: rgba(11, 29, 58, 0.35);
  transition: color 0.3s ease;
}

.showcase__nav-item.is-active .showcase__nav-num {
  color: var(--navy);
  font-weight: 900;
}

/* Stage area */
.showcase__stage {
  position: relative;
  padding-left: 64px;
}

.showcase__accent {
  position: absolute;
  top: 10%;
  left: 0;
  width: 4px;
  height: 80%;
  background: #bf3b0d;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(191, 59, 13, 0.15),
              0 0 40px rgba(191, 59, 13, 0.05);
}

.showcase__slide {
  position: absolute;
  top: 0;
  left: 64px;
  right: 0;
  bottom: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(40px, 8vw, 160px);
}

.showcase__slide.is-active {
  opacity: 1;
}

.showcase__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(10rem, 18vw, 20rem);
  line-height: 0.8;
  color: rgba(11, 29, 58, 0.03);
  position: absolute;
  top: -5%;
  right: -5%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.showcase__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 3.5vw, 3.75rem);
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

/* Alternating title colors: odd = navy, even = orange */
.showcase__slide:nth-child(odd) .showcase__title { color: var(--navy); }
.showcase__slide:nth-child(even) .showcase__title { color: var(--orange); }

.showcase__desc {
  font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.showcase__highlights {
  list-style: none;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.showcase__highlights li {
  position: relative;
  padding-left: 32px;
  font-size: 1.0625rem;
  color: var(--slate);
  line-height: 2.5;
}

.showcase__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, #bf3b0d);
}

.showcase__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ═══ JOURNEY PATH ═══ */
.journey {
  padding: 80px 0 100px;
  background: var(--navy);
  color: var(--white);
}

.journey__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
}

.journey__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.journey__sub {
  font-size: 1rem;
  color: var(--slate-light);
  max-width: 580px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

/* Path container */
.journey__path-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto 56px;
}

/* SVG line */
.journey__svg {
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 0;
}

.journey__line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

/* Nodes row */
.journey__nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.journey__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  opacity: 0;
}

/* Circle */
.journey__node-circle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  z-index: 2;
}

.journey__node-circle span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gold);
}

/* Shimmer glow ring */
.journey__node-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  opacity: 0;
  background: conic-gradient(from 0deg, transparent 0%, var(--gold) 25%, transparent 50%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.journey__node.is-active .journey__node-circle {
  box-shadow: 0 0 20px rgba(224, 172, 55, 0.5), 0 0 40px rgba(224, 172, 55, 0.2);
  border-color: var(--gold);
  background: rgba(224, 172, 55, 0.15);
}

.journey__node.is-active .journey__node-ring {
  opacity: 1;
  animation: journeyShimmer 1.5s linear infinite;
}

@keyframes journeyShimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Dim non-active nodes */
.journey__node {
  transition: opacity 0.4s ease;
}

.journey__node.is-dimmed {
  opacity: 0.3 !important;
}

/* Text */
.journey__node-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.journey__node-text {
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.5;
  max-width: 200px;
}

/* CTA */
.journey__cta {
  text-align: center;
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 60px;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn--white:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 172, 55, 0.3);
}

/* Journey mobile */
@media (max-width: 768px) {
  .journey__nodes {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .journey__svg {
    display: none;
  }

  .journey__node {
    opacity: 1;
  }
}

/* Programs showcase tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .programs__showcase {
    grid-template-columns: 80px 1fr;
    column-gap: 0;
    padding: 0 clamp(24px, 4vw, 48px);
  }

  .showcase__header {
    padding: 60px 0 24px 0;
    text-align: center;
  }

  .showcase__nav {
    gap: 32px;
  }

  .showcase__nav-item {
    width: 44px;
    height: 44px;
  }

  .showcase__ring {
    width: 44px;
    height: 44px;
  }

  .showcase__stage {
    padding-left: 32px;
  }

  .showcase__slide {
    left: 32px;
    padding-right: 20px;
  }

  .showcase__number {
    font-size: clamp(6rem, 12vw, 10rem);
    top: 0;
    right: -2%;
  }

  .showcase__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
  }

  .showcase__desc {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .showcase__highlights {
    margin-bottom: 28px;
  }

  .showcase__highlights li {
    font-size: 0.9375rem;
    line-height: 2.2;
  }
}

/* Programs showcase mobile */
@media (max-width: 768px) {
  .programs__showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: auto;
    min-height: auto;
    padding-bottom: 48px;
  }

  .showcase__header {
    padding: 0;
  }

  .showcase__header .section-tag {
    font-size: 0.7rem;
  }

  .showcase__header .section-title {
    font-size: clamp(1.5rem, 5.5vw, 2.25rem);
    max-width: none;
  }

  .showcase__header .section-subtitle {
    font-size: 0.9375rem;
    max-width: none;
  }

  .showcase__nav {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 0;
  }

  .showcase__nav::before {
    top: 50%;
    left: 48px;
    right: 48px;
    bottom: auto;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
  }

  .showcase__nav-item {
    width: 36px;
    height: 36px;
  }

  .showcase__ring {
    width: 36px;
    height: 36px;
  }

  .showcase__nav-num {
    font-size: 0.75rem;
  }

  .showcase__stage {
    padding: 16px 0 0;
    min-height: auto;
  }

  .showcase__accent {
    height: 4px;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 2px;
  }

  .showcase__slide {
    position: relative;
    opacity: 1;
    visibility: visible;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .showcase__slide:last-child {
    margin-bottom: 0;
  }

  .showcase__number {
    position: relative;
    top: auto;
    right: auto;
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: rgba(11, 29, 58, 0.06);
    pointer-events: auto;
    line-height: 1;
  }

  .showcase__title {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    margin-bottom: 12px;
  }

  .showcase__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: none;
  }

  .showcase__highlights {
    margin-bottom: 24px;
  }

  .showcase__highlights li {
    font-size: 0.875rem;
    line-height: 2;
    padding-left: 22px;
  }

  .showcase__highlights li::before {
    width: 6px;
    height: 6px;
    top: 10px;
  }

  .showcase__cta .btn {
    font-size: 0.875rem;
    padding: 12px 24px;
  }
}

/* ═══════════════════════════════════════
   TEAM
   ═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   TEAM & FOUNDERS (Unified Design)
   ═══════════════════════════════════════ */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.team__card {
  position: relative;
  background: var(--navy-mid);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.6s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.team__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.team__card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-deep);
}

.team__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.team__card:hover .team__card-image img {
  transform: scale(1.05);
}

.team__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 29, 58, 0.95) 0%, rgba(11, 29, 58, 0.6) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  z-index: 2;
}

.team__card:hover .team__card-overlay {
  opacity: 1;
}

.team__card-details p {
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1.6;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out);
}

.team__card:hover .team__card-details p {
  transform: translateY(0);
}

.team__card-info {
  padding: 24px 32px 32px;
  background: var(--navy-mid);
  flex-grow: 1;
}

.team__card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 4px;
}

.team__card-role {
  display: block;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  padding: 140px 0;
  background: var(--cream);
}

.testimonials__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 72px;
}

.testimonials__header .section-title {
  margin-left: auto;
  margin-right: auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.testimonial__card {
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, 0.06);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transition: all 0.5s var(--ease-out);
}

.testimonial__card:hover {
  box-shadow: 0 20px 48px rgba(11, 29, 58, 0.08);
  transform: translateY(-6px);
}

.testimonial__card--featured {
  background: var(--navy);
  border-color: var(--navy);
}

.testimonial__card--featured .testimonial__quote-icon { color: var(--orange); opacity: 0.4; }
.testimonial__card--featured .testimonial__text { color: rgba(255, 255, 255, 0.9); }
.testimonial__card--featured .testimonial__name { color: var(--white); }
.testimonial__card--featured .testimonial__label { color: var(--slate-light); }
.testimonial__card--featured .testimonial__avatar { background: var(--orange); color: var(--white); }

.testimonial__quote-icon {
  color: var(--navy);
  opacity: 0.12;
  margin-bottom: 24px;
}

.testimonial__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9375rem;
}

.testimonial__label {
  font-size: 0.8125rem;
  color: var(--slate);
}

/* ═══════════════════════════════════════
   FOUNDERS (Equal Partners)
   ═══════════════════════════════════════ */
.about {
  padding: 140px 0 80px;
  background: var(--navy);
}

.founders__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.founder__card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy-mid);
  transition: all 0.6s var(--ease-out);
}

.founder__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.founder__image {
  width: 100%;
  height: 100%;
}

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

.founder__card:hover .founder__image img {
  transform: scale(1.05);
  opacity: 0.4;
}

.founder__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 32px;
  background: linear-gradient(to top, rgba(11, 29, 58, 0.95), transparent);
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
  z-index: 2;
}

.founder__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.founder__role {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder__bio {
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out) 0.1s;
}

.founder__card:hover .founder__bio {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   MISSION & IMPACT
   ═══════════════════════════════════════ */
/* ═══ B.A.I.L.S. HORIZONTAL SCROLL ═══ */
.bails {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.bails__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  padding: 48px clamp(20px, 4vw, 48px) 0;
}

.bails__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 8px 20px 8px 32px;
  position: relative;
  margin-bottom: 16px;
}

.bails__tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

.bails__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.bails__subtitle {
  color: var(--slate-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

/* Progress bar */
.bails__progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  z-index: 10;
}

.bails__progress-bar {
  height: 100%;
  width: 20%;
  background: var(--orange);
  border-radius: 3px;
  transition: none;
}

/* Track */
.bails__track {
  display: flex;
  width: 300vw;
}

/* Panels */
.bails__panel {
  position: relative;
  width: 60vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bails__letter {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 950;
  font-size: clamp(18rem, 30vw, 35rem);
  line-height: 1;
  color: var(--white);
  opacity: 0.04;
  user-select: none;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bails__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  text-align: center;
}

.bails__number {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(191, 59, 13, 0.3);
  border-radius: 20px;
}

.bails__pillar-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.bails__pillar-text {
  font-size: 1.125rem;
  color: var(--slate-light);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* Panel accent variations */
.bails__panel:nth-child(1) .bails__number { color: var(--gold); border-color: rgba(224, 172, 55, 0.3); }
.bails__panel:nth-child(3) .bails__number { color: var(--green); border-color: rgba(42, 100, 69, 0.3); }
.bails__panel:nth-child(4) .bails__number { color: var(--gold); border-color: rgba(224, 172, 55, 0.3); }

/* ═══ B.A.I.L.S. RESPONSIVE FALLBACK ═══ */
@media (max-width: 768px) {
  .bails {
    padding: 80px 0;
  }

  .bails__header {
    position: relative;
    padding: 0 clamp(20px, 4vw, 48px);
    margin-bottom: 48px;
  }

  .bails__progress {
    display: none;
  }

  .bails__track {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 60px;
    padding: 0 clamp(20px, 4vw, 48px);
  }

  .bails__panel {
    width: 100%;
    height: auto;
    padding: 40px 0;
  }

  .bails__letter {
    font-size: 10rem;
  }

  .bails__pillar-title {
    font-size: 2rem;
  }
}

/* ═══════════════════════════════════════
   PARTNER — Premium Cinematic
   ═══════════════════════════════════════ */
.partner {
  padding: 100px 0 140px;
  background: var(--navy-deep);
  overflow: hidden;
}

.partner__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.partner__header {
  text-align: center;
  margin-bottom: 32px;
}

.partner__header .section-title,
.partner__header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Header decorative line */
.partner__header-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  margin: 32px auto;
  border-radius: 2px;
  transform-origin: center;
}

/* Header stat counter */
.partner__header-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}

.partner__stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.partner__stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- Full-Width Sponsor Marquee --- */
.partner__marquee {
  width: 100%;
  padding: 48px 0;
  margin: 48px 0 80px;
  background: linear-gradient(180deg,
    rgba(224, 172, 55, 0.03) 0%,
    rgba(255, 255, 255, 0.015) 50%,
    rgba(224, 172, 55, 0.03) 100%
  );
  border-top: 1px solid rgba(224, 172, 55, 0.12);
  border-bottom: 1px solid rgba(224, 172, 55, 0.12);
  position: relative;
}

.partner__marquee-label {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.7;
}

.partner__marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

/* Fade edges */
.partner__marquee-wrapper::before,
.partner__marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partner__marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--navy-deep), transparent);
}
.partner__marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-deep), transparent);
}

.partner__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 100px;
  animation: marquee 25s linear infinite;
}

.partner__logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  filter: none;
  opacity: 0.85;
  transition: all 0.4s var(--ease-out);
  object-fit: contain;
}

.partner__logo:hover {
  opacity: 1;
  transform: scale(1.08);
}

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

/* --- Impact Tiers --- */
.partner__impact {
  text-align: center;
  margin-bottom: 80px;
}

.partner__impact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: 12px;
}

.partner__impact-sub {
  color: var(--slate-light);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.partner__tiers-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Decorative connecting line (removed) */
.partner__tiers-line {
  display: none;
}

.partner__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.partner__tier {
  padding: 48px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  transition: all 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Top-edge gold glow */
.partner__tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 172, 55, 0.4), transparent);
  transition: all 0.5s var(--ease-out);
}

.partner__tier:hover {
  border-color: rgba(224, 172, 55, 0.25);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3), 0 0 40px rgba(224, 172, 55, 0.06);
}

.partner__tier:hover::before {
  left: 10%;
  right: 10%;
  background: linear-gradient(90deg, transparent, rgba(224, 172, 55, 0.7), transparent);
}

/* Featured tier */
.partner__tier--featured {
  background: rgba(191, 59, 13, 0.05);
  border-color: rgba(191, 59, 13, 0.2);
  transform: scale(1.06);
}

.partner__tier--featured::before {
  background: linear-gradient(90deg, transparent, rgba(191, 59, 13, 0.5), transparent);
}

.partner__tier--featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(180deg, rgba(191, 59, 13, 0.3), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.partner__tier--featured:hover {
  border-color: rgba(191, 59, 13, 0.4);
  background: rgba(191, 59, 13, 0.08);
  transform: scale(1.06) translateY(-12px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3), 0 0 40px rgba(191, 59, 13, 0.1);
}

/* Tier badge */
.partner__tier-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.partner__tier-badge--gold {
  background: linear-gradient(135deg, var(--gold), #f0c95a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tier price */
.partner__tier-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.partner__tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 12px;
}

.partner__tier-desc {
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.7;
}

/* "Most Popular" label */
.partner__tier-popular {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(191, 59, 13, 0.12);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* Tier includes list */
.partner__tier-includes {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partner__tier--featured .partner__tier-includes {
  border-top-color: rgba(191, 59, 13, 0.15);
}

.partner__tier-includes li {
  position: relative;
  padding-left: 24px;
  font-size: 0.85rem;
  color: var(--slate-light);
  line-height: 1.6;
}

.partner__tier-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.85rem;
}

.partner__tier--featured .partner__tier-includes li::before {
  color: var(--orange);
}

/* --- Why Partner --- */
.partner__why {
  margin-top: 0;
  margin-bottom: 0;
}

.partner__why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}

.partner__why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.partner__why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.partner__why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 172, 55, 0.3), transparent);
  transition: all 0.4s var(--ease-out);
}

.partner__why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(224, 172, 55, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.partner__why-card:hover::before {
  left: 10%;
  right: 10%;
  background: linear-gradient(90deg, transparent, rgba(224, 172, 55, 0.5), transparent);
}

.partner__why-icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}

.partner__why-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 8px;
  line-height: 1.1;
}

.partner__why-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.partner__why-card p {
  color: var(--slate-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- CTA --- */
.partner__cta {
  text-align: center;
  margin-top: 100px;
}

.partner__cta-lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--white);
  margin-bottom: 24px;
}

.partner__cta-btn {
  position: relative;
  box-shadow: 0 0 40px rgba(191, 59, 13, 0.25);
}

.partner__cta-btn:hover {
  box-shadow: 0 0 60px rgba(191, 59, 13, 0.4), 0 8px 32px rgba(191, 59, 13, 0.3);
}

.partner__cta-note {
  margin-top: 16px;
  color: var(--slate-light);
  font-size: 0.875rem;
  font-weight: 500;
}

/* --- Partner Responsive --- */
@media (max-width: 1024px) {
  .founders__grid { grid-template-columns: repeat(2, 1fr); }
  .mission__framework { grid-template-columns: 1fr; gap: 60px; }
  .mission__stats { grid-template-columns: repeat(2, 1fr); padding: 40px 20px; }
  .partner__tiers { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .partner__tier--featured { transform: none; }
  .partner__tier--featured:hover { transform: translateY(-8px); }
  .partner__tiers-line { display: none; }
  .partner__why-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .partner__marquee-track { gap: 60px; }
  .partner__logo { height: 45px; max-width: 150px; }
  .partner__marquee-wrapper::before,
  .partner__marquee-wrapper::after { width: 60px; }
}

@media (max-width: 640px) {
  .founders__grid { grid-template-columns: 1fr; }
  .mission__stat-num { font-size: 2.5rem; }
  .partner__stat-number { font-size: 2.5rem; }
  .partner__tier-price { font-size: 2rem; }
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
/* ═══ CONTACT — "Executive Suite" ═══ */
.contact {
  position: relative;
  padding: clamp(100px, 12vh, 160px) 0;
  background: var(--navy-deep);
  overflow: hidden;
}

/* Subtle radial glow behind the section */
.contact::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(224, 172, 55, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Gold accent line at the top */
.contact__accent-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: center;
}

.contact__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

/* ── Left: Info Side ── */
.contact__info {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.contact__info .section-tag {
  color: var(--gold);
  background: rgba(224, 172, 55, 0.08);
  border: 1px solid rgba(224, 172, 55, 0.12);
  margin-bottom: 24px;
  align-self: flex-start;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact__lead {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  color: var(--slate-light);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

/* Contact detail rows */
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact__detail:last-child {
  border-bottom: none;
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(224, 172, 55, 0.08);
  border: 1px solid rgba(224, 172, 55, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-out);
}

.contact__detail:hover .contact__detail-icon {
  background: rgba(224, 172, 55, 0.15);
  transform: scale(1.05);
}

.contact__detail strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.contact__detail p {
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.5;
}

.contact__detail a {
  color: var(--slate-light);
  transition: color 0.3s var(--ease-out);
}

.contact__detail a:hover {
  color: var(--gold);
}

/* Social links */
.contact__socials {
  display: flex;
  gap: 10px;
}

.contact__social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--slate-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-out);
}

.contact__social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(191, 59, 13, 0.3);
}

/* ── Right: Glass Form Card ── */
.contact__form-wrap {
  position: relative;
}

/* Subtle glow behind the card */
.contact__form-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: linear-gradient(135deg, rgba(224, 172, 55, 0.2), rgba(191, 59, 13, 0.1), transparent 60%);
  z-index: 0;
}

.contact__form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(11, 29, 58, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 44px);
}

.contact__form-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form__input {
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.form__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form__input:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(191, 59, 13, 0.15);
}

.form__input--error {
  border-color: #ef4444;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form__select option {
  background: var(--navy);
  color: var(--white);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__error {
  font-size: 0.8125rem;
  color: #ef4444;
  min-height: 18px;
}

/* Submit button glow */
.contact__submit {
  margin-top: 4px;
  box-shadow: 0 0 30px rgba(191, 59, 13, 0.2);
}

.contact__submit:hover {
  box-shadow: 0 0 40px rgba(191, 59, 13, 0.4), 0 8px 32px rgba(191, 59, 13, 0.3);
}

/* ── Contact Form 7 Overrides ────────────── */
.contact__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__form .wpcf7-form p {
  margin: 0;
}

.contact__form .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: all 0.3s var(--ease-out);
  outline: none;
  box-sizing: border-box;
}

.contact__form .wpcf7-form-control:not(.wpcf7-submit)::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.contact__form .wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: var(--orange);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(191, 59, 13, 0.15);
}

.contact__form .wpcf7-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.contact__form .wpcf7-select option {
  background: var(--navy);
  color: var(--white);
}

.contact__form .wpcf7-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form .wpcf7-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  margin-top: 4px;
  box-shadow: 0 0 30px rgba(191, 59, 13, 0.2);
}

.contact__form .wpcf7-submit:hover {
  background: #d4440f;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(191, 59, 13, 0.4), 0 8px 32px rgba(191, 59, 13, 0.3);
}

.contact__form .wpcf7-not-valid-tip {
  font-size: 0.8125rem;
  color: #ef4444;
  margin-top: 4px;
}

.contact__form .wpcf7-response-output {
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 0.875rem;
  margin: 8px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.contact__form .wpcf7-form.sent .wpcf7-response-output {
  border-color: var(--green);
  color: var(--green);
}

.contact__form .wpcf7-form.failed .wpcf7-response-output,
.contact__form .wpcf7-form.invalid .wpcf7-response-output {
  border-color: #ef4444;
  color: #ef4444;
}

.contact__form .wpcf7-spinner {
  display: none;
}

.contact__form .contact__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  margin-top: 4px;
  box-shadow: 0 0 30px rgba(191, 59, 13, 0.2);
}
.contact__form .contact__submit:hover {
  background: #d4440f;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(191, 59, 13, 0.4), 0 8px 32px rgba(191, 59, 13, 0.3);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 64px 0 32px;
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer__logo {
  width: 180px;
  height: auto;
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--slate-light);
  max-width: 320px;
  margin-top: 16px;
  line-height: 1.7;
}

.footer__nav {
  display: flex;
  gap: 64px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s var(--ease-out);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer__designer-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

.footer__designer-link:hover {
  color: var(--orange);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__bg-navy { width: 100%; }
  .hero__bg-orange { display: none; }

  .hero__inner {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }

  .hero__content {
    flex: none;
    padding: 60px clamp(20px, 4vw, 48px) 40px;
    text-align: center;
    align-self: auto;
  }

  .hero__content .hero__actions { justify-content: center; }

  .hero__image-wrap {
    flex: none;
    max-width: 700px;
    width: 95%;
    padding: 0;
    margin-bottom: 0;
  }

  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .partner__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .nav__mobile-actions { display: flex; }
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(5, 14, 29, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
  }

  .nav__links--open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.25rem;
    padding: 12px 24px;
  }


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

  .team__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .team__card-image { aspect-ratio: 3 / 4; }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .programs__bails-inner { padding: 36px 28px; }
  .programs__bails-letters { gap: 10px; }

  .footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .footer__nav { gap: 40px; }

  .pillars,
  .about,
  .programs,
  .team,
  .testimonials,
  .partner,
  .contact {
    padding: 80px 0;
  }

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

  .contact__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .about__image-col {
    grid-template-columns: 1fr;
  }

  .about__image--1 {
    grid-column: 1;
  }

  .contact__form { padding: 28px 24px; }
  .form__row { grid-template-columns: 1fr; }
  .contact__title { font-size: clamp(1.75rem, 6vw, 2.25rem); }
}

/* ═══════════════════════════════════════
   WORDPRESS ADMIN BAR FIX
   ═══════════════════════════════════════ */
body.admin-bar .nav {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }
}
