/* ─────────────────────────────────────────────────────────────
   FONT DECLARATIONS
   Place font files in a /fonts/ folder alongside this CSS.
   AcroterionJF  → accent / script marks
   Scotch Deck Compressed Roman → display headings
───────────────────────────────────────────────────────────── */
:root {
  /* ── Core green palette ── */
  --forest-950: #17371d;
  --forest-900: #1e4524;
  --forest-800: #2c5d2f;
  --forest-700: #3c6d3a;
  --olive-700:  #58792f;
  --olive-600:  #6c8f35;
  --sage-500:   #86b074;
  --sage-400:   #9dc78a;
  --sage-300:   #bed7ad;
  --sage-200:   #dcead0;
  /* ── Light green backdrop tones ── */
  --mist-100:   #edf6df;
  --mist-200:   #e0f0cc;
  --stone-400:  #7b8573;
  --stone-600:  #465042;
  --ink-900:    #182018;
  --white:      #ffffff;
  /* ── Deep-green accent palette — replaces gold/brown ──
     Drawn from the green gradient palette shared by the client.
     Darkest deep forest → lighter vivid green in steps.        */
  --gaccent-deep:   #0f2208;   /* darkest — used for dark bg (topbar, footer, CTA) */
  --gaccent-dark:   #1a3a0a;
  --gaccent-mid:    #2e6012;
  --gaccent-rich:   #4a8a20;   /* main accent colour replacing gold-rich */
  --gaccent-bright: #6aad30;   /* highlight / hover replacing gold-bright */
  --gaccent-light:  #a0cc60;   /* soft highlight replacing gold-light */
  --gaccent-pale:   #d8f0a8;   /* very pale tint replacing gold-pale */

  --shadow-soft:   0 18px 50px rgba(21, 55, 24, 0.10);
  --shadow-strong: 0 30px 80px rgba(18, 50, 21, 0.18);

  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 38px;

  /* ── Typography ── */
  --font-body:    'Raleway', sans-serif;
  --font-display: 'Cormorant Garamond', 'DM Serif Display', serif;
  --font-script:  'Faith', "great-vibes", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(160, 204, 96, 0.40), transparent 34%),
    linear-gradient(180deg, #f4fae8 0%, var(--mist-100) 100%);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 24px;
  top: 24px;
  z-index: 120;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--forest-900);
  color: var(--white);
}

.container {
  width: min(1300px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Topbar: deep forest green ── */
.topbar {
  background: linear-gradient(90deg, var(--gaccent-deep), var(--gaccent-dark) 70%, var(--gaccent-mid));
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(106, 173, 48, 0.22);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  font-size: 0.9rem;
}

.topbar-inner p {
  margin: 0;
}

.topbar-inner a {
  color: var(--gaccent-light);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(242, 250, 232, 0.96);
  border-bottom: 1px solid rgba(44, 93, 47, 0.10);
  box-shadow: 0 12px 40px rgba(16, 50, 19, 0.10);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease;
}

body.is-scrolled .site-header {
  transform: translateY(0);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--forest-900), var(--olive-700));
  color: var(--gaccent-light);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-copy small {
  color: var(--stone-400);
  font-size: 0.77rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  color: var(--stone-600);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gaccent-rich), var(--gaccent-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  padding: 14px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.4s ease, filter 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.01);
}

.button-primary {
  background: linear-gradient(135deg, var(--forest-900), var(--olive-700));
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: var(--gaccent-pale);
  box-shadow: 0 14px 32px rgba(31, 69, 36, 0.25);
}

.button-primary::before {
  background: radial-gradient(circle at center, rgba(106, 173, 48, 0.22), transparent 62%);
}

.button-primary:hover,
.button-primary:focus-visible {
  background-position: 100% 50%;
  box-shadow: 0 18px 42px rgba(31, 69, 36, 0.32);
  filter: saturate(1.06);
}

.button-primary:hover::before,
.button-primary:focus-visible::before {
  opacity: 1;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--forest-900);
  border: 1px solid rgba(44, 93, 47, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 0 14px 28px rgba(22, 49, 27, 0.10);
  background: rgba(255, 255, 255, 0.94);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(44, 93, 47, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--forest-900);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: clip;
  --scene-x: 0px;
  --scene-y: 0px;
  padding: 42px 0 36px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -18% -10% 12%;
  background:
    radial-gradient(circle at 16% 20%, rgba(160, 204, 96, 0.32), transparent 32%),
    radial-gradient(circle at 75% 22%, rgba(108, 173, 48, 0.20), transparent 26%),
    radial-gradient(circle at 62% 72%, rgba(190, 228, 160, 0.34), transparent 28%);
  filter: blur(24px);
  opacity: 0.9;
  pointer-events: none;
  animation: heroMeshShift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.34) 0.8px, transparent 0.8px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 32%);
  background-size: 22px 22px, 100% 100%;
  opacity: 0.12;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 92%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb-one {
  width: 380px;
  height: 380px;
  top: 60px;
  left: -140px;
  background: radial-gradient(circle, rgba(106, 173, 48, 0.26), transparent 70%);
  transform: translate3d(calc(var(--scene-x) * -0.45), calc(var(--scene-y) * -0.45), 0);
  animation: orbFloatOne 14s ease-in-out infinite;
}

.hero-orb-two {
  width: 520px;
  height: 520px;
  right: -220px;
  top: 120px;
  background: radial-gradient(circle, rgba(160, 204, 96, 0.34), transparent 70%);
  transform: translate3d(calc(var(--scene-x) * 0.3), calc(var(--scene-y) * 0.24), 0);
  animation: orbFloatTwo 17s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: start;
  position: relative;
  z-index: 1;
}

body.motion-ready .hero-copy,
body.motion-ready .hero-side,
body.motion-ready .hero-intro-header,
body.motion-ready .section-copy,
body.motion-ready .founder-photo,
body.motion-ready .next-queen-image,
body.motion-ready .next-queen-content,
body.motion-ready .media-stack,
body.motion-ready .section-heading,
body.motion-ready .proof-strip,
body.motion-ready .program-card,
body.motion-ready .gallery-item,
body.motion-ready .gallery-copy,
body.motion-ready .cta-copy,
body.motion-ready .cta-visual,
body.motion-ready .trust-panel,
body.motion-ready .faq-list,
body.motion-ready .contact-copy,
body.motion-ready .contact-form {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.motion-ready .is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .hero-copy > *,
body.motion-ready .hero-intro-header > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

body.motion-ready .hero-copy.is-visible > *,
body.motion-ready .hero-intro-header.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .hero-copy.is-visible > *:nth-child(1),
body.motion-ready .hero-intro-header.is-visible > *:nth-child(1) { transition-delay: 0.08s; }
body.motion-ready .hero-copy.is-visible > *:nth-child(2),
body.motion-ready .hero-intro-header.is-visible > *:nth-child(2) { transition-delay: 0.16s; }
body.motion-ready .hero-copy.is-visible > *:nth-child(3),
body.motion-ready .hero-intro-header.is-visible > *:nth-child(3) { transition-delay: 0.24s; }
body.motion-ready .hero-copy.is-visible > *:nth-child(4),
body.motion-ready .hero-intro-header.is-visible > *:nth-child(4) { transition-delay: 0.32s; }
body.motion-ready .hero-copy.is-visible > *:nth-child(5),
body.motion-ready .hero-intro-header.is-visible > *:nth-child(5) { transition-delay: 0.4s; }

body.motion-ready .hero-copy .hero-point,
body.motion-ready .proof-strip .proof-card,
body.motion-ready .feature-carousel .feature-chip,
body.motion-ready .feature-carousel .pillars-core,
body.motion-ready .feature-carousel .pillar-card,
body.motion-ready .journey-section .section-copy .timeline-item,
body.motion-ready .trust-panel .trust-list > div,
body.motion-ready .contact-copy .contact-card,
body.motion-ready .faq-list details {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.motion-ready .hero-copy.is-visible .hero-point,
body.motion-ready .proof-strip.is-visible .proof-card,
body.motion-ready .feature-carousel.is-visible .feature-chip,
body.motion-ready .feature-carousel.is-visible .pillars-core,
body.motion-ready .feature-carousel.is-visible .pillar-card,
body.motion-ready .journey-section .section-copy.is-visible .timeline-item,
body.motion-ready .trust-panel.is-visible .trust-list > div,
body.motion-ready .contact-copy.is-visible .contact-card,
body.motion-ready .faq-list.is-visible details {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .hero-copy.is-visible .hero-point:nth-child(1),
body.motion-ready .proof-strip.is-visible .proof-card:nth-child(1),
body.motion-ready .feature-carousel.is-visible .pillar-card:nth-child(1),
body.motion-ready .journey-section .section-copy.is-visible .timeline-item:nth-child(1),
body.motion-ready .trust-panel.is-visible .trust-list > div:nth-child(1),
body.motion-ready .contact-copy.is-visible .contact-card:nth-child(1),
body.motion-ready .faq-list.is-visible details:nth-child(1) { transition-delay: 0.08s; }

body.motion-ready .hero-copy.is-visible .hero-point:nth-child(2),
body.motion-ready .proof-strip.is-visible .proof-card:nth-child(2),
body.motion-ready .feature-carousel.is-visible .pillar-card:nth-child(2),
body.motion-ready .journey-section .section-copy.is-visible .timeline-item:nth-child(2),
body.motion-ready .trust-panel.is-visible .trust-list > div:nth-child(2),
body.motion-ready .contact-copy.is-visible .contact-card:nth-child(2),
body.motion-ready .faq-list.is-visible details:nth-child(2) { transition-delay: 0.16s; }

body.motion-ready .hero-copy.is-visible .hero-point:nth-child(3),
body.motion-ready .proof-strip.is-visible .proof-card:nth-child(3),
body.motion-ready .feature-carousel.is-visible .pillar-card:nth-child(3),
body.motion-ready .journey-section .section-copy.is-visible .timeline-item:nth-child(3),
body.motion-ready .trust-panel.is-visible .trust-list > div:nth-child(3),
body.motion-ready .contact-copy.is-visible .contact-card:nth-child(3),
body.motion-ready .faq-list.is-visible details:nth-child(3) { transition-delay: 0.24s; }

body.motion-ready .proof-strip.is-visible .proof-card:nth-child(4),
body.motion-ready .feature-carousel.is-visible .pillar-card:nth-child(4),
body.motion-ready .journey-section .section-copy.is-visible .timeline-item:nth-child(4),
body.motion-ready .faq-list.is-visible details:nth-child(4) { transition-delay: 0.32s; }

body.motion-ready .faq-list.is-visible details:nth-child(5) { transition-delay: 0.4s; }

.eyebrow,
.mini-eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gaccent-rich);
}

.mini-eyebrow {
  font-size: 0.7rem;
  margin-bottom: 12px;
}

.hero h1,
.hero-intro h1,
.section-heading h2,
.section-copy h2,
.cta-copy h2,
.faq-section h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: var(--forest-950);
  text-transform: uppercase;
}

.section-heading h2,
.section-copy h2,
.cta-copy h2,
.faq-section h2,
.contact-copy h2 {
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  line-height: 1.08;
}

/* ── Script accent: vivid green ── */
.script-mark {
  display: block;
  margin-top: 10px;
  color: var(--gaccent-rich);
  font-family: var(--font-script);
  font-size: clamp(2rem, 3.8vw, 2.6rem);
  line-height: 1.0;
  font-weight: 400;
  text-transform: capitalize;
}

.hero-text,
.section-heading p,
.section-copy p,
.cta-copy p,
.contact-copy p,
.faq-list p,
.program-card p,
.proof-card p,
.timeline-item p,
.trust-list span,
.stack-note p,
.gallery-copy li,
.contact-card p,
.site-footer p {
  color: var(--stone-600);
  line-height: 1.75;
}

.hero-text {
  font-size: 1.05rem;
  margin: 24px 0 0;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-point {
  transform: translateZ(0);
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(106, 173, 48, 0.16);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-point:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(21, 55, 24, 0.14);
  border-color: rgba(106, 173, 48, 0.30);
}

.hero-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--forest-900);
}

.hero-point span {
  color: var(--stone-600);
  font-size: 0.92rem;
  line-height: 1.6;
}

.glass-panel {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(237, 246, 223, 0.80));
  border: 1px solid rgba(106, 173, 48, 0.16);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.hero-side {
  position: relative;
  display: grid;
  gap: 22px;
  align-content: start;
}

.contact-form {
  padding: 28px;
}

.hero-note h2,
.contact-form h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-note {
  padding: 24px 26px;
  will-change: transform;
  transition: transform 0.45s ease, box-shadow 0.4s ease;
}

.hero-note p:last-child {
  margin: 12px 0 0;
}

.hero-note:hover {
  box-shadow: 0 36px 80px rgba(18, 50, 21, 0.22);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest-900);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(76, 138, 48, 0.18);
  background: rgba(240, 250, 228, 0.90);
  color: var(--ink-900);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gaccent-rich);
  box-shadow: 0 0 0 4px rgba(106, 173, 48, 0.18);
  background: var(--white);
}

.form-note,
.form-success {
  margin: 0;
  font-size: 0.86rem;
}

.form-note {
  color: var(--stone-400);
}

.form-success {
  color: var(--forest-800);
  font-weight: 700;
  min-height: 1.4em;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
}

.hero-image {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.hero-image img,
.stack-photo img,
.gallery-item img,
.cta-visual img,
.trust-image img,
.contact-photo img {
  height: 100%;
  object-fit: cover;
  --scroll-scale: 1;
  --scroll-shift: 0px;
  --hover-scale: 1;
  transform: translate3d(0, var(--scroll-shift), 0) scale(calc(var(--scroll-scale) * var(--hover-scale)));
  transition: transform 0.7s ease;
  will-change: transform;
}

.hero-image-main img {
  transform: translate3d(calc(var(--scene-x) * 0.18), calc(var(--scene-y) * 0.12 + var(--scroll-shift)), 0) scale(calc(var(--scroll-scale) * var(--hover-scale)));
}

.hero-image-float img {
  transform: translate3d(calc(var(--scene-x) * 0.24), calc(var(--scene-y) * 0.18 + var(--scroll-shift)), 0) scale(calc(var(--scroll-scale) * var(--hover-scale)));
}

.hero-image:hover img,
.stack-photo:hover img,
.gallery-item:hover img,
.cta-visual:hover img,
.trust-image:hover img,
.contact-photo:hover img {
  --hover-scale: 1.03;
}

.hero-image:hover,
.stack-photo:hover,
.gallery-item:hover,
.cta-visual:hover,
.trust-image:hover,
.contact-photo:hover {
  box-shadow: 0 34px 82px rgba(18, 50, 21, 0.2);
}

.hero-image-main {
  position: absolute;
  inset: 0 32px 0 0;
  border: 1px solid rgba(44, 93, 47, 0.08);
  transform: translateZ(0);
}

.hero-image-float {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 42%;
  max-width: 240px;
  aspect-ratio: 0.88;
  border: 8px solid rgba(255, 255, 255, 0.9);
  animation: float-card 4.8s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  padding: 16px 18px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  line-height: 1.2;
}

.hero-badge strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.hero-badge span {
  display: block;
  font-size: 0.82rem;
}

.badge-primary {
  top: 22px;
  right: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest-900);
}

/* ── Badge: deep forest green ── */
.badge-secondary {
  left: -8px;
  bottom: 18px;
  background: linear-gradient(135deg, var(--gaccent-dark), var(--gaccent-rich));
  color: var(--gaccent-pale);
  border: 1px solid rgba(106, 173, 48, 0.30);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.proof-card {
  transform: translateZ(0);
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(106, 173, 48, 0.14);
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.proof-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(21, 55, 24, 0.16);
  border-color: rgba(106, 173, 48, 0.28);
}

/* ── Section numbers / labels: vivid green accent ── */
.proof-card span,
.program-number,
.timeline-item span,
.contact-card span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gaccent-rich);
  font-weight: 800;
}

.proof-card h3,
.program-card h3,
.gallery-copy h3,
.timeline-item h3,
.trust-panel h3,
.contact-form h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.15;
  color: var(--forest-950);
  text-transform: uppercase;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.section-actions-centered {
  justify-content: center;
}

.section {
  padding: 108px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.media-stack {
  position: relative;
  min-height: 620px;
}

.stack-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stack-photo-large {
  inset: 0 60px 70px 0;
  border-radius: 34px;
}

.stack-photo-small {
  right: 0;
  bottom: 0;
  width: 48%;
  max-width: 280px;
  aspect-ratio: 0.86;
  border-radius: 28px;
  border: 8px solid rgba(255, 255, 255, 0.9);
}

/* ── Stack note box: deep forest green ── */
.stack-note {
  position: absolute;
  left: 20px;
  bottom: 28px;
  max-width: 280px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--gaccent-deep) 0%, var(--gaccent-dark) 60%, var(--gaccent-mid));
  color: rgba(255, 255, 255, 0.90);
  box-shadow: 0 20px 50px rgba(15, 34, 8, 0.38);
  border: 1px solid rgba(106, 173, 48, 0.30);
}

.stack-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--gaccent-light);
}

.stack-note p {
  color: rgba(255, 255, 255, 0.74);
}

.program-grid,
.contact-cards {
  display: grid;
  gap: 18px;
}

.pillars-section {
  background:
    radial-gradient(circle at top right, rgba(160, 204, 96, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.80), rgba(224, 240, 204, 0.75));
}

.pillars-shell {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pillars-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.pillars-intro:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(21, 55, 24, 0.14);
}

.pillars-intro h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1.08;
  color: var(--forest-950);
  text-transform: uppercase;
}

.feature-carousel-intro {
  margin: 0;
  color: var(--stone-600);
  line-height: 1.7;
}

.feature-carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(78, 138, 48, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest-900);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.feature-arrow:hover,
.feature-arrow:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.pillars-meter {
  position: relative;
  width: 100%;
  height: 10px;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(190, 228, 160, 0.50);
  overflow: hidden;
}

.pillars-meter span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 25%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gaccent-dark), var(--gaccent-rich));
  transition: transform 0.45s ease;
  transform: translateX(calc(var(--active-index, 0) * 100%));
}

.pillars-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px) minmax(0, 1fr);
  grid-template-rows: auto minmax(160px, 1fr) auto;
  gap: 22px 20px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(224, 240, 204, 0.92));
  border: 1px solid rgba(78, 138, 73, 0.12);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.pillars-stage::before,
.pillars-stage::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.pillars-stage::before {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(106, 173, 48, 0.34);
  box-shadow: 0 0 0 28px rgba(106, 173, 48, 0.07);
}

.pillars-stage::after {
  width: calc(100% - 120px);
  height: calc(100% - 120px);
  background:
    linear-gradient(rgba(106, 173, 48, 0.18), rgba(106, 173, 48, 0.18)),
    linear-gradient(90deg, rgba(106, 173, 48, 0.18), rgba(106, 173, 48, 0.18));
  background-size: 1px 100%, 100% 1px;
  background-repeat: no-repeat;
  background-position: center, center;
  opacity: 0.6;
}

.pillars-core {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: min(100%, 210px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.96), rgba(208, 240, 176, 0.90));
  border: 1px solid rgba(106, 173, 48, 0.18);
  box-shadow: 0 20px 46px rgba(21, 55, 24, 0.12);
  animation: hubFloat 7s ease-in-out infinite;
}

.pillars-core-kicker {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gaccent-rich);
}

.pillars-core strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--forest-950);
  text-transform: uppercase;
}

.pillars-core p {
  margin: 0;
  color: var(--stone-600);
  line-height: 1.65;
}

.pillar-card {
  position: relative;
  z-index: 1;
  min-height: 200px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 250, 220, 0.96));
  border: 1px solid rgba(78, 138, 73, 0.10);
  box-shadow: 0 14px 34px rgba(21, 55, 24, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.pillar-card:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}

.pillar-card:nth-of-type(2) {
  grid-column: 3;
  grid-row: 1;
}

.pillar-card:nth-of-type(3) {
  grid-column: 1;
  grid-row: 3;
}

.pillar-card:nth-of-type(4) {
  grid-column: 3;
  grid-row: 3;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(21, 55, 24, 0.14);
}

.pillar-card.is-active {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(106, 173, 48, 0.26);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(208, 240, 176, 0.96));
  box-shadow: 0 28px 62px rgba(21, 55, 24, 0.18);
}

.feature-slide-index {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(106, 173, 48, 0.18);
  color: var(--gaccent-dark);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.pillar-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  line-height: 1.08;
  color: var(--forest-950);
  text-transform: uppercase;
}

.pillar-card p {
  margin: 0;
  color: var(--stone-600);
  line-height: 1.8;
}

.feature-carousel-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pillars-nav {
  grid-column: 1 / -1;
  justify-content: center;
}

.feature-chip {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(78, 138, 73, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: var(--stone-600);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.feature-chip:hover,
.feature-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(74, 138, 32, 0.26);
  color: var(--forest-900);
}

.feature-chip.is-active {
  background: linear-gradient(135deg, var(--forest-900), var(--olive-700));
  border-color: transparent;
  color: var(--gaccent-pale);
}

.programs {
  background:
    radial-gradient(circle at top right, rgba(160, 204, 96, 0.24), transparent 22%),
    linear-gradient(180deg, rgba(224, 240, 204, 0.56), rgba(237, 246, 223, 0.92));
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 860px;
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-card {
  transform: translateZ(0);
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(237, 246, 223, 0.94));
  border: 1px solid rgba(106, 173, 48, 0.14);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(21, 55, 24, 0.16);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-row span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(160, 204, 96, 0.40);
  color: var(--forest-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.tag-row-soft span {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
  grid-auto-rows: 250px;
}

.gallery-item,
.cta-visual,
.trust-image,
.contact-photo {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.gallery-item img,
.cta-visual img,
.trust-image img,
.contact-photo img {
  width: 100%;
}

.gallery-item-large {
  grid-row: span 2;
}

/* ── Gallery copy card: deep forest green ── */
.gallery-copy {
  grid-row: span 2;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--gaccent-deep) 0%, var(--gaccent-dark) 55%, var(--gaccent-mid));
  color: rgba(255, 255, 255, 0.90);
  box-shadow: var(--shadow-strong);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(106, 173, 48, 0.24);
}

.gallery-copy h3 {
  color: var(--gaccent-light);
}

.gallery-copy:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15, 34, 8, 0.36);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.80);
}

/* ── Checklist dots: bright green ── */
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gaccent-bright);
}

/* ── CTA section: deep forest green ── */
.cta-section {
  background: linear-gradient(135deg, var(--gaccent-deep) 0%, var(--gaccent-dark) 55%, var(--gaccent-mid));
  color: var(--white);
  border-top: 1px solid rgba(106, 173, 48, 0.20);
  border-bottom: 1px solid rgba(106, 173, 48, 0.20);
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 34px;
  align-items: center;
}

.cta-copy h2,
.cta-copy p,
.cta-copy .eyebrow {
  color: var(--white);
}

.cta-copy .eyebrow {
  color: var(--gaccent-light);
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.cta-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.cta-list div {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(106, 173, 48, 0.22);
}

.cta-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gaccent-light);
}

.cta-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.section-actions-light {
  margin-top: 28px;
}

.button-secondary-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gaccent-light);
  border: 1px solid rgba(106, 173, 48, 0.24);
}

.button-secondary-light:hover,
.button-secondary-light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.journey-section {
  background:
    radial-gradient(circle at bottom left, rgba(160, 204, 96, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(237, 246, 223, 0.92));
}

.journey-section .split-layout {
  align-items: stretch;
  min-height: 620px;
}

.journey-section .section-copy {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  height: 100%;
  min-height: 0;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  align-content: start;
  min-height: 0;
  height: min(100%, 460px);
  max-height: 560px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(74, 138, 32, 0.50) rgba(208, 240, 176, 0.62);
}

.timeline::-webkit-scrollbar {
  width: 8px;
}

.timeline::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(208, 240, 176, 0.62);
}

.timeline::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(74, 138, 32, 0.50);
}

.timeline-item {
  transform: translateZ(0);
  padding: 22px 24px;
  border-left: 3px solid var(--gaccent-bright);
  border-radius: 0 24px 24px 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.timeline-item:hover {
  transform: translateX(6px);
  box-shadow: 0 24px 54px rgba(21, 55, 24, 0.12);
  border-color: var(--gaccent-rich);
}

.trust-panel {
  height: 100%;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(224, 240, 204, 0.96));
  border: 1px solid rgba(106, 173, 48, 0.14);
  box-shadow: var(--shadow-strong);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.trust-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 68px rgba(18, 50, 21, 0.16);
}

.trust-list {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.trust-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-900);
}

.trust-image {
  margin-top: auto;
  aspect-ratio: 1.2;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(106, 173, 48, 0.14);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-list details:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(21, 55, 24, 0.10);
  border-color: rgba(74, 138, 32, 0.22);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--forest-900);
  padding-right: 28px;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--gaccent-rich);
  font-size: 1.3rem;
}

.faq-list details[open] summary::after {
  content: '-';
}

.faq-list p {
  margin: 14px 0 0;
}

.contact-section {
  background: linear-gradient(180deg, rgba(224, 240, 204, 0.70), rgba(237, 246, 223, 0.98));
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: 34px;
  align-items: start;
}

.contact-cards {
  /*grid-template-columns: repeat(3, minmax(0, 1fr));*/
  margin: 30px 0;
}

.contact-card {
  transform: translateZ(0);
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(106, 173, 48, 0.14);
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(21, 55, 24, 0.12);
  border-color: rgba(106, 173, 48, 0.28);
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 0 0 6px;
  color: var(--stone-600);
}

.contact-photo {
  aspect-ratio: 1.42;
}

/* ── Contact highlights (3 service pills) ── */
.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 26px;
}

.contact-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(106, 173, 48, 0.06);
  border: 1px solid rgba(106, 173, 48, 0.14);
  transition: background 0.22s ease, border-color 0.22s ease;
}

.contact-highlight:hover {
  background: rgba(106, 173, 48, 0.10);
  border-color: rgba(106, 173, 48, 0.26);
}

.contact-highlight-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-highlight strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest-900);
  margin-bottom: 2px;
}

.contact-highlight span {
  font-size: 0.8rem;
  color: var(--stone-600);
  line-height: 1.55;
}

/* ── Footer: deep forest green ── */
/* ═══════════════════════════════════════════════════════════
   SITE FOOTER – REDESIGNED
═══════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  background: linear-gradient(160deg, var(--forest-950) 0%, #091506 50%, var(--gaccent-deep) 100%);
  color: rgba(255, 255, 255, 0.80);
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 30%, rgba(106, 173, 48, 0.12), transparent 45%),
    radial-gradient(ellipse at 95% 70%, rgba(160, 204, 96, 0.08), transparent 40%);
  pointer-events: none;
}

/* ── Main body: 4 columns ── */
.footer-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 52px;
  align-items: start;
}

/* ── Brand column ── */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.footer-logo-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(160, 204, 96, 0.28);
}

.brand-logo-footer {
  height: 60px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer-tagline {
  margin: 0 0 10px;
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--gaccent-light);
  line-height: 1.7;
}

.footer-tagline em {
  font-style: normal;
  font-weight: 600;
}

.footer-desc {
  margin: 0 0 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.75;
  max-width: 34ch;
}

/* Contact strip */
.footer-contact-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.22s ease;
}

.footer-contact-item:hover {
  color: var(--gaccent-light);
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--gaccent-rich);
}

/* ── Link columns ── */
.footer-col-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gaccent-light);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(160, 204, 96, 0.18);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: color 0.22s ease, padding-left 0.22s ease;
  line-height: 1.4;
}

.footer-nav a:hover {
  color: var(--white);
  padding-left: 5px;
}

/* ── Address ── */
.footer-address {
  font-style: normal;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin: 0 0 22px;
}

/* CTA button in footer */
.footer-cta-btn {
  display: inline-block;
  padding: 11px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gaccent-rich), var(--forest-800));
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 6px 20px rgba(106, 173, 48, 0.30);
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(106, 173, 48, 0.45);
}

/* ── Divider ── */
.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(160, 204, 96, 0.25) 20%, rgba(160, 204, 96, 0.25) 80%, transparent);
  margin: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Bottom bar ── */
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 24px;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-right {
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(160, 204, 96, 0.40) !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-body {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-body {
    grid-template-columns: 1fr;
  }

  .footer-brand-col {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroMeshShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, -3%, 0) scale(1.06);
  }
}

@keyframes hubFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbFloatOne {
  0%,
  100% {
    transform: translate3d(calc(var(--scene-x) * -0.45), calc(var(--scene-y) * -0.45), 0) scale(1);
  }
  50% {
    transform: translate3d(calc(var(--scene-x) * -0.45), calc(var(--scene-y) * -0.45 - 12px), 0) scale(1.04);
  }
}

@keyframes orbFloatTwo {
  0%,
  100% {
    transform: translate3d(calc(var(--scene-x) * 0.3), calc(var(--scene-y) * 0.24), 0) scale(1);
  }
  50% {
    transform: translate3d(calc(var(--scene-x) * 0.3), calc(var(--scene-y) * 0.24 + 14px), 0) scale(1.05);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-layout,
  .cta-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .proof-strip,
  .program-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pillars-shell {
    grid-template-columns: 1fr;
  }

  .pillars-intro {
    max-width: 720px;
  }

  .gallery-copy {
    grid-column: span 2;
    grid-row: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .contact-photo {
    max-width: 720px;
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(242, 250, 232, 0.98);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(79, 138, 73, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 30px;
  }

  .hero::before,
  .hero::after,
  .hero-intro::before,
  .hero-intro::after {
    opacity: 0.7;
  }

  .hero h1,
  .hero-intro h1 {
    font-size: clamp(1.7rem, 8vw, 2.8rem);
  }

  .hero-banner .badge-primary {
    top: 12px;
    right: 12px;
  }

  .hero-banner .badge-secondary {
    left: 12px;
    bottom: 72px;
  }

  .hero-intro {
    padding: 48px 0 44px;
  }

  .script-mark {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .hero-points,
  .proof-strip,
  .program-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .feature-carousel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-carousel-intro {
    max-width: none;
  }

  .pillars-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .pillars-stage::before,
  .pillars-stage::after {
    display: none;
  }

  .pillars-core,
  .pillar-card,
  .pillar-card:nth-of-type(1),
  .pillar-card:nth-of-type(2),
  .pillar-card:nth-of-type(3),
  .pillar-card:nth-of-type(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .pillars-core {
    width: min(100%, 220px);
    margin: 0 auto 8px;
  }

  .journey-section .section-copy {
    display: block;
    height: auto;
  }

  .journey-section .split-layout,
  .trust-panel {
    min-height: 0;
  }

  .timeline {
    height: auto;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .media-stack {
    min-height: 540px;
  }

  .stack-photo-large {
    inset: 0 24px 80px 0;
  }

  .stack-note {
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item-large,
  .gallery-copy {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-item img,
  .cta-visual img,
  .contact-photo img,
  .trust-image img {
    aspect-ratio: 1.05;
  }

}


@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-shell {
    padding: 14px 0;
  }

  .brand-copy small {
    max-width: 180px;
  }

  .contact-form,
  .trust-panel,
  .gallery-copy,
  .program-card,
  .proof-card,
  .pillars-intro,
  .pillars-stage,
  .pillar-card,
  .timeline-item,
  .contact-card {
    padding: 22px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-image-main {
    inset: 0 12px 30px 0;
  }

  .hero-image-float {
    width: 46%;
    bottom: 12px;
  }

  .badge-primary {
    top: 14px;
    right: 8px;
  }

  .badge-secondary {
    left: 0;
    bottom: 0;
  }

  .hero-banner .badge-primary {
    top: 16px;
    right: 16px;
  }

  .hero-banner .badge-secondary {
    left: 16px;
    bottom: 76px;
  }

  .hero-intro {
    padding: 56px 0 52px;
  }

  .media-stack {
    min-height: 470px;
  }

  .section {
    padding: 82px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero::before,
  .hero::after,
  .hero-orb-one,
  .hero-orb-two {
    animation: none !important;
  }

  .hero-image img,
  .stack-photo img,
  .gallery-item img,
  .cta-visual img,
  .trust-image img,
  .contact-photo img {
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO BANNER SLIDER
═══════════════════════════════════════════════════════════ */
.hero-slider-wrap {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  border-radius: var(--radius-lg);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-slider-ctrl {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero-slider-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  cursor: pointer;
  color: var(--forest-900);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.hero-slider-btn:hover {
  background: var(--white);
  transform: scale(1.12);
}

.hero-slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.hero-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-slider-dot.is-active {
  background: var(--white);
  transform: scale(1.4);
}

/* ═══════════════════════════════════════════════════════════
   HERO BANNER – Full-Width Slider
═══════════════════════════════════════════════════════════ */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--forest-950);
}

.hero-banner .hero-slider-wrap {
  position: absolute;
  inset: 0;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-banner .hero-slide {
  border-radius: 0;
}

.hero-banner .badge-primary {
  top: 36px;
  right: 52px;
  left: auto;
  bottom: auto;
}

.hero-banner .badge-secondary {
  left: 52px;
  bottom: 96px;
  right: auto;
  top: auto;
}

/* ═══════════════════════════════════════════════════════════
   HERO INTRO – Brand Content Section
═══════════════════════════════════════════════════════════ */
.hero-intro {
  position: relative;
  overflow: clip;
  --scene-x: 0px;
  --scene-y: 0px;
  padding: 80px 0 72px;
}

.hero-intro::before {
  content: '';
  position: absolute;
  inset: -18% -10% 12%;
  background:
    radial-gradient(circle at 16% 20%, rgba(160, 204, 96, 0.32), transparent 32%),
    radial-gradient(circle at 75% 22%, rgba(108, 173, 48, 0.20), transparent 26%),
    radial-gradient(circle at 62% 72%, rgba(190, 228, 160, 0.34), transparent 28%);
  filter: blur(24px);
  opacity: 0.9;
  pointer-events: none;
  animation: heroMeshShift 18s ease-in-out infinite alternate;
}

.hero-intro::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.34) 0.8px, transparent 0.8px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 32%);
  background-size: 22px 22px, 100% 100%;
  opacity: 0.10;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 92%);
  pointer-events: none;
}

.hero-intro > .container {
  position: relative;
  z-index: 1;
}

.hero-intro-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 0;
}

.hero-intro-header .hero-text {
  max-width: 90ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-intro-header .hero-actions {
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 0;
}

.hero-intro .hero-points {
  margin-top: 52px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.hero-intro .proof-strip {
  margin-top: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   DESERVE – EARN – WIN CTA SECTION
═══════════════════════════════════════════════════════════ */
.deserve-section {
  background: linear-gradient(160deg, #f4fae8 0%, var(--mist-100) 50%, #e8f5d4 100%);
  color: var(--forest-950);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.deserve-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.deserve-orb-one {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -180px;
  background: radial-gradient(circle, rgba(106, 173, 48, 0.22), transparent 70%);
  animation: orbFloatOne 16s ease-in-out infinite;
}

.deserve-orb-two {
  width: 500px;
  height: 500px;
  bottom: -120px;
  right: -140px;
  background: radial-gradient(circle, rgba(160, 204, 96, 0.18), transparent 70%);
  animation: orbFloatTwo 20s ease-in-out infinite;
}

.deserve-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.deserve-eyebrow {
  color: var(--gaccent-rich);
  margin-bottom: 0;
}

/* ── Main headline ── */
.deserve-headline-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.deserve-headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--forest-950);
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.deserve-line {
  display: block;
}

/* ── Inline crown word ── */
.crown-word {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  white-space: nowrap;
}

.crown-text {
  background: linear-gradient(135deg, var(--gaccent-light) 0%, var(--gaccent-pale) 50%, var(--gaccent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Crown image animation */
.crown-anim {
  width: clamp(40px, 5vw, 70px);
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 0 14px rgba(160, 204, 96, 0.70)) drop-shadow(0 0 28px rgba(106, 173, 48, 0.45));
  animation: crownFloat 3s ease-in-out infinite, crownGlow 2.5s ease-in-out infinite alternate;
  transform-origin: center bottom;
}

@keyframes crownFloat {
  0%   { transform: translateY(0px) rotate(-2deg); }
  30%  { transform: translateY(-10px) rotate(1deg); }
  60%  { transform: translateY(-6px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(-2deg); }
}

@keyframes crownGlow {
  from {
    filter: drop-shadow(0 0 10px rgba(160, 204, 96, 0.55)) drop-shadow(0 0 20px rgba(106, 173, 48, 0.35));
  }
  to {
    filter: drop-shadow(0 0 22px rgba(160, 204, 96, 0.90)) drop-shadow(0 0 44px rgba(106, 173, 48, 0.60)) drop-shadow(0 0 6px rgba(216, 240, 168, 1));
  }
}

/* ── Realize wordplay ── */
.deserve-realize-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.deserve-realize {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.deserve-realize-line {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--gaccent-rich);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.deserve-realize-alt {
  color: var(--olive-700);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
}

.deserve-tagline {
  margin: 4px 0 0;
  font-size: 1rem;
  color: var(--stone-600);
  line-height: 1.7;
  max-width: 46ch;
}

.deserve-tagline strong {
  color: var(--forest-900);
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* ── Enroll button ── */
.deserve-enroll-btn {
  font-size: 1.05rem;
  padding: 16px 52px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 32px rgba(106, 173, 48, 0.40), 0 8px 24px rgba(0, 0, 0, 0.30);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.deserve-enroll-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 52px rgba(106, 173, 48, 0.60), 0 16px 40px rgba(0, 0, 0, 0.40);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .crown-anim {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   COURSE DELIVERABLES SECTION
═══════════════════════════════════════════════════════════ */
.deliverables-section {
  background: linear-gradient(180deg, var(--mist-100) 0%, #f4fae8 100%);
}

.deliverables-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.deliverables-subhead {
  margin: 10px 0 0;
  color: var(--gaccent-rich);
  font-size: 1rem;
  font-style: italic;
}

/* ── Stages grid ── */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.deliverable-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  border: 1px solid rgba(106, 173, 48, 0.14);
  border-left: 3px solid var(--gaccent-rich);
  box-shadow: 0 4px 20px rgba(21, 55, 24, 0.06);
  transition: box-shadow 0.28s ease, border-left-color 0.28s ease;
}

.deliverable-card:hover {
  box-shadow: 0 12px 36px rgba(21, 55, 24, 0.12);
  border-left-color: var(--gaccent-bright);
}

/* Stage 7 spans full width */
.deliverable-card--full {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--gaccent-dark) 100%);
  border-left-color: var(--gaccent-light);
  color: var(--white);
}

.deliverable-card--full h3 {
  color: var(--white);
}

.deliverable-card--full p {
  color: var(--sage-200);
}

.deliverable-card--full strong {
  color: var(--gaccent-pale);
}

/* Stage label */
.deliverable-stage {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gaccent-rich);
  background: rgba(106, 173, 48, 0.10);
  border: 1px solid rgba(106, 173, 48, 0.22);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 14px;
}

.deliverable-card--full .deliverable-stage {
  color: var(--gaccent-light);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(160, 204, 96, 0.30);
}

/* Card heading */
.deliverable-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--forest-950);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Card body text */
.deliverable-card p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--stone-600);
  line-height: 1.75;
}

.deliverable-card p:last-child {
  margin-bottom: 0;
}

/* Optional label inline */
.deliverable-optional {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--stone-400);
  letter-spacing: 0.04em;
  text-transform: none;
  font-family: var(--font-body);
}

/* Sub-list inside a card */
.deliverable-list {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.deliverable-list li {
  font-size: 0.88rem;
  color: var(--stone-600);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 768px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .deliverable-card--full {
    grid-column: span 1;
  }
}

/* ═══════════════════════════════════════════════════════════
   COURSE MODEL SECTION
═══════════════════════════════════════════════════════════ */
.course-model-section {
  background: linear-gradient(180deg, var(--forest-900) 0%, var(--gaccent-dark) 100%);
  color: var(--white);
  position: relative;
}

.course-model-section .section-heading h2 {
  color: var(--white);
}

.course-model-section .section-heading p {
  color: var(--sage-300);
}

/* ── 2×2 grid ── */
.course-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.course-model-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(160, 204, 96, 0.16);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  transition: background 0.28s ease, border-color 0.28s ease;
}

.course-model-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(160, 204, 96, 0.30);
}

.course-model-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
  opacity: 0.9;
}

.course-model-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.3;
}

/* Simple list */
.course-model-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.course-model-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--sage-200);
  line-height: 1.6;
}

.course-model-note {
  font-style: italic;
  color: var(--sage-300) !important;
  font-size: 0.85rem !important;
  padding-top: 2px;
}

/* Inline tag pill */
.course-model-tag {
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(106, 173, 48, 0.18);
  color: var(--gaccent-light);
  border: 1px solid rgba(106, 173, 48, 0.28);
  margin-top: 2px;
}

.course-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px;
}

.course-module-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(160, 204, 96, 0.14);
  gap: 4px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.course-module-item:hover {
  background: rgba(106, 173, 48, 0.12);
  border-color: rgba(106, 173, 48, 0.30);
}

.course-module-gem {
  font-size: 0.7rem;
  margin-bottom: 6px;
  color: var(--gaccent-light);
}

.course-module--diamond .course-module-gem {
  color: #b9f2ff;
}

.course-module--gold .course-module-gem {
  color: #f5d97a;
}

.course-module-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.course-module--diamond strong {
  color: #b9f2ff;
}

.course-module--gold strong {
  color: #f5d97a;
}

.course-module-item span {
  font-size: 0.75rem;
  color: var(--sage-300);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 700px) {
  .course-model-grid {
    grid-template-columns: 1fr;
  }

  .course-modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ═══════════════════════════════════════════════════════════
   CURRICULUM PLANS SECTION
═══════════════════════════════════════════════════════════ */
.curriculum-section {
  background: linear-gradient(180deg, #f4fae8 0%, var(--mist-100) 100%);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* ── Card base ── */
.curriculum-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* ── Card header band ── */
.curriculum-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
}

.curriculum-card--diamond .curriculum-card-header {
  background: linear-gradient(135deg, #1a2e3a 0%, #234454 100%);
}

.curriculum-card--gold .curriculum-card-header {
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--gaccent-dark) 100%);
}

.curriculum-gem {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.curriculum-card--diamond .curriculum-gem { color: #a8e6f0; }
.curriculum-card--gold    .curriculum-gem { color: #f5d97a; }

.curriculum-card-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--white);
}

.curriculum-card--diamond h3 { color: #d0f4fc; }
.curriculum-card--gold    h3 { color: #fceeb5; }

/* ── Sessions list ── */
.curriculum-sessions {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(106, 173, 48, 0.12);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.curriculum-sessions li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(106, 173, 48, 0.08);
  transition: background 0.22s ease;
}

.curriculum-sessions li:last-child {
  border-bottom: none;
}

.curriculum-sessions li:hover {
  background: rgba(106, 173, 48, 0.04);
}

/* Big session count bubble */
.curriculum-session-count {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.curriculum-card--diamond .curriculum-session-count {
  background: rgba(168, 230, 240, 0.14);
  color: #1a2e3a;
  border: 1.5px solid rgba(168, 230, 240, 0.40);
}

.curriculum-card--gold .curriculum-session-count {
  background: rgba(245, 217, 122, 0.14);
  color: var(--forest-900);
  border: 1.5px solid rgba(245, 217, 122, 0.45);
}

.curriculum-sessions li > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
}

.curriculum-sessions strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest-950);
  line-height: 1.3;
}

.curriculum-sessions span {
  font-size: 0.82rem;
  color: var(--stone-600);
  line-height: 1.55;
}

@media (max-width: 700px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   INTENSIVE PROGRAMS SECTION
═══════════════════════════════════════════════════════════ */
.intensive-section {
  position: relative;
  padding: 100px 0;
  background: #040e02;
  overflow: hidden;
  color: var(--white);
}

/* Animated mesh background */
.intensive-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(30, 69, 36, 0.70) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(15, 45, 18, 0.80) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 90%, rgba(106, 173, 48, 0.14) 0%, transparent 40%);
  animation: intensiveMesh 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes intensiveMesh {
  0%   { opacity: 0.8; transform: scale(1); }
  50%  { opacity: 1;   transform: scale(1.04) translateX(12px); }
  100% { opacity: 0.9; transform: scale(1.02) translateX(-8px); }
}

/* Floating particle dots */
.intensive-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intensive-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(160, 204, 96, 0.22);
  animation: particleFloat linear infinite;
}

.intensive-particles span:nth-child(1) { width:6px; height:6px; left:12%; top:20%; animation-duration:9s;  animation-delay:0s;   }
.intensive-particles span:nth-child(2) { width:4px; height:4px; left:35%; top:70%; animation-duration:12s; animation-delay:-3s;  }
.intensive-particles span:nth-child(3) { width:8px; height:8px; left:62%; top:15%; animation-duration:10s; animation-delay:-6s;  }
.intensive-particles span:nth-child(4) { width:5px; height:5px; left:80%; top:55%; animation-duration:14s; animation-delay:-2s;  }
.intensive-particles span:nth-child(5) { width:3px; height:3px; left:50%; top:85%; animation-duration:8s;  animation-delay:-5s;  }
.intensive-particles span:nth-child(6) { width:7px; height:7px; left:22%; top:45%; animation-duration:11s; animation-delay:-1s;  }

@keyframes particleFloat {
  0%   { transform: translateY(0px) scale(1);    opacity: 0.5; }
  50%  { transform: translateY(-28px) scale(1.2); opacity: 1;   }
  100% { transform: translateY(0px) scale(1);    opacity: 0.5; }
}

/* Layout */
.intensive-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

.intensive-eyebrow {
  color: var(--gaccent-light);
  text-align: center;
}

.intensive-intro {
  margin: 8px 0 0;
  text-align: center;
  color: var(--sage-300);
  font-size: 0.95rem;
  font-style: italic;
}

/* Cards row */
.intensive-cards {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 900px;
}

/* Individual card */
.intensive-card {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(160, 204, 96, 0.20);
  background: rgba(255, 255, 255, 0.04);
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
  backdrop-filter: blur(6px);
}

.intensive-card:hover {
  border-color: rgba(160, 204, 96, 0.50);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
}

/* Radial glow that follows hover */
.intensive-card-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 173, 48, 0.18), transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.intensive-card:hover .intensive-card-glow {
  opacity: 1;
}

.intensive-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

/* Duration bubble */
.intensive-duration {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(160, 204, 96, 0.36);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(106, 173, 48, 0.10);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.intensive-card:hover .intensive-duration {
  border-color: rgba(160, 204, 96, 0.70);
  background: rgba(106, 173, 48, 0.18);
}

.intensive-days {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.intensive-days-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gaccent-light);
}

.intensive-card-body {
  flex: 1;
}

.intensive-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.2;
}

.intensive-duration-text {
  margin: 6px 0 0;
  font-size: 0.82rem;
  color: var(--sage-400);
  letter-spacing: 0.04em;
}

/* ── Workshop Curriculum full-width panel ── */
.workshop-curriculum {
  width: 100%;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(160, 204, 96, 0.18);
  box-shadow:
    0 0 0 1px rgba(160, 204, 96, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 40px 48px;
  backdrop-filter: blur(10px);
}

.workshop-curriculum-title {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gaccent-light);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(160, 204, 96, 0.18);
}

.workshop-curriculum-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  counter-reset: wc-counter;
}

.workshop-curriculum-list li {
  counter-increment: wc-counter;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  color: var(--sage-200);
  line-height: 1.6;
  transition: color 0.22s ease;
}

.workshop-curriculum-list li:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.workshop-curriculum-list li:nth-last-child(-n+2) {
  border-bottom: none;
}

.workshop-curriculum-list li:hover {
  color: var(--white);
}

.workshop-curriculum-list li::before {
  content: counter(wc-counter, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gaccent-rich);
  line-height: 1.6;
  min-width: 28px;
}

@media (max-width: 700px) {
  .workshop-curriculum {
    padding: 28px 24px;
  }

  .workshop-curriculum-list {
    grid-template-columns: 1fr;
  }

  .workshop-curriculum-list li:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }

  .workshop-curriculum-list li:last-child {
    border-bottom: none;
  }

  .workshop-curriculum-list li:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .workshop-curriculum-list li:last-child {
    border-bottom: none;
  }
}

/* Enquire button */
.intensive-btn {
  align-self: flex-start;
  background: transparent;
  border: 1.5px solid rgba(160, 204, 96, 0.36);
  color: var(--gaccent-light);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 24px;
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.intensive-btn:hover {
  background: var(--gaccent-rich);
  border-color: var(--gaccent-rich);
  color: var(--white);
}

/* OR divider between cards */
.intensive-divider {
  flex-shrink: 0;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.intensive-divider::before,
.intensive-divider::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(160, 204, 96, 0.30), transparent);
}

.intensive-divider span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--sage-400);
  padding: 8px 0;
}

/* Responsive */
@media (max-width: 720px) {
  .intensive-cards {
    flex-direction: column;
    gap: 16px;
  }

  .intensive-divider {
    width: auto;
    flex-direction: row;
    gap: 0;
  }

  .intensive-divider::before,
  .intensive-divider::after {
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, rgba(160, 204, 96, 0.30), transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intensive-bg-mesh,
  .intensive-particles span {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   COURSE CURRICULUM MODULES SECTION
═══════════════════════════════════════════════════════════ */
.course-curriculum-section {
  background: linear-gradient(180deg, #f4fae8 0%, var(--mist-100) 60%, #edf6df 100%);
}

.cc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* ── Card base ── */
.cc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 1px solid rgba(106, 173, 48, 0.12);
  border-top: 3px solid var(--gaccent-rich);
  box-shadow: 0 4px 18px rgba(21, 55, 24, 0.06);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-card:hover {
  box-shadow: 0 14px 40px rgba(21, 55, 24, 0.11);
  transform: translateY(-3px);
}

/* Wide card spans full 3 columns */
.cc-card--wide {
  grid-column: span 3;
}

/* Dark accent card */
.cc-card--dark {
  background: linear-gradient(135deg, var(--forest-900), var(--gaccent-dark));
  border-top-color: var(--gaccent-light);
  border-color: transparent;
}

.cc-card--dark h3 { color: var(--white); }
.cc-card--dark p  { color: var(--sage-200); }

/* Module number */
.cc-card-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--gaccent-rich);
  text-transform: uppercase;
}

.cc-card--dark .cc-card-num {
  color: var(--gaccent-light);
}

/* Card heading */
.cc-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--forest-950);
  line-height: 1.3;
}

/* List */
.cc-card ul {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 7px;
}

.cc-card ul li {
  font-size: 0.87rem;
  color: var(--stone-600);
  line-height: 1.65;
}

/* Paragraph variant (card 13) */
.cc-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--stone-600);
  line-height: 1.75;
}

/* Sub-grid inside wide card (card 07) */
.cc-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.cc-sub h4 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gaccent-mid);
}

/* Responsive */
@media (max-width: 960px) {
  .cc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-card--wide {
    grid-column: span 2;
  }

  .cc-sub-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .cc-grid {
    grid-template-columns: 1fr;
  }

  .cc-card--wide {
    grid-column: span 1;
  }
}

/* ═══════════════════════════════════════════════════════════
   PAGEANT TRAINING PROGRAM – FIXED BANNER BREAK
═══════════════════════════════════════════════════════════ */
.banner-break {
  position: relative;
  min-height: 38vh;
  background-image: url('https://miss-india-training.wigp.co/wp-content/uploads/2024/02/2-2.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay: theme green at ~0.72 opacity */
.banner-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(15, 34, 8, 0.76) 0%,
    rgba(30, 69, 36, 0.65) 50%,
    rgba(15, 34, 8, 0.78) 100%
  );
}

.banner-break-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  padding: 52px 0;
}

.banner-break-eyebrow {
  color: var(--gaccent-light);
  margin-bottom: 12px;
}

.banner-break-heading {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.banner-break-text {
  margin: 0 auto;
  max-width: 74ch;
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.banner-break-text em {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: var(--sage-300);
  font-size: 0.9rem;
}

/* Disable fixed attachment on mobile (iOS doesn't support it) */
@media (max-width: 768px) {
  .banner-break {
    background-attachment: scroll;
    min-height: 32vh;
  }
}

/* ═══════════════════════════════════════════════════════════
   NATIONAL & INTERNATIONAL AFFILIATIONS SHOWCASE
═══════════════════════════════════════════════════════════ */
.affiliations-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--forest-900) 0%, var(--gaccent-dark) 40%, var(--forest-950) 100%);
  color: var(--white);
}

.aff-showcase-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(106, 173, 48, 0.22), transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(160, 204, 96, 0.14), transparent 40%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.8' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: auto, auto, 40px 40px;
  pointer-events: none;
}

.aff-showcase-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

/* ── Heading block ── */
.aff-showcase-heading {
  text-align: center;
  max-width: 1140px;
}

.aff-showcase-eyebrow {
  color: var(--gaccent-light);
}

.aff-showcase-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}

.aff-title-dots {
  color: var(--gaccent-light);
  letter-spacing: 0.2em;
}

.aff-showcase-roles {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--sage-300);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.aff-roles-accent {
  color: var(--gaccent-light);
  font-weight: 700;
  font-size: 1.02rem;
}

/* ── Cards grid ── */
.aff-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.aff-showcase-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.40);
  cursor: default;
}

.aff-card-img {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.aff-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.aff-showcase-card:hover .aff-card-img img {
  transform: scale(1.06);
}

/* Overlay that slides up on hover */
.aff-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  background: linear-gradient(
    to top,
    rgba(8, 24, 4, 0.97) 0%,
    rgba(10, 29, 5, 0.72) 45%,
    transparent 75%
  );
  transition: background 0.4s ease;
}

.aff-showcase-card:hover .aff-card-overlay {
  background: linear-gradient(
    to top,
    rgba(8, 24, 4, 1) 0%,
    rgba(15, 40, 8, 0.80) 55%,
    rgba(106, 173, 48, 0.20) 100%
  );
}

.aff-card-number {
  display: none;
}

.aff-card-overlay h3 {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.aff-card-overlay p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gaccent-light);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* Left-border accent line on hover */
.aff-showcase-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to top, var(--gaccent-bright), var(--gaccent-light));
  border-radius: 0 3px 3px 0;
  transition: height 0.4s ease;
}

.aff-showcase-card:hover::after {
  height: 60%;
}

/* ── CTA ── */
.aff-showcase-cta {
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
  .aff-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aff-card-img {
    aspect-ratio: 4 / 3;
  }

  .aff-card-overlay p {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .aff-showcase-grid {
    grid-template-columns: 1fr;
  }

  .aff-card-img {
    aspect-ratio: 3 / 2;
  }
}

/* ═══════════════════════════════════════════════════════════
   ARE YOU THE NEXT QUEEN? SECTION
═══════════════════════════════════════════════════════════ */
.next-queen-section {
  background: linear-gradient(145deg, var(--forest-900) 0%, var(--gaccent-deep) 55%, #0a1d05 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.next-queen-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 60%, rgba(106, 173, 48, 0.20), transparent 42%),
    radial-gradient(circle at 92% 15%, rgba(160, 204, 96, 0.14), transparent 36%),
    radial-gradient(circle at 55% 85%, rgba(74, 138, 32, 0.10), transparent 30%);
  pointer-events: none;
}

.next-queen-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Image column ── */
.next-queen-image {
  position: relative;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*grid-template-columns: 1fr 0.8fr;*/
  gap: 16px;
}

.next-queen-image-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.next-queen-image-item {
  position: relative;
  margin: 0;
  /*border-radius: var(--radius-lg);*/
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 48px 100px rgba(0, 0, 0, 0.45);
}

.next-queen-image-large {
  grid-row: 1 / -1;
}

.next-queen-image-item img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.next-queen-image-item:hover img {
  transform: scale(1.04);
}

.next-queen-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 29, 5, 0.82) 0%,
    rgba(10, 29, 5, 0.18) 45%,
    transparent 70%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.next-queen-img-badge {
  text-align: center;
  width: 100%;
}

.next-queen-crown {
  display: block;
  font-size: 1.6rem;
  color: var(--gaccent-light);
  margin-bottom: 6px;
}

.next-queen-img-badge p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.next-queen-img-badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--sage-300);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* ── Content column ── */
.next-queen-content .eyebrow {
  color: var(--gaccent-light);
}

.next-queen-content h2 {
  color: var(--white);
  margin-bottom: 0;
}

.next-queen-content .script-mark {
  color: var(--gaccent-light);
  margin-top: 6px;
}

.next-queen-lead {
  font-size: 1rem;
  color: var(--sage-300);
  line-height: 1.7;
  margin: 18px 0 28px;
  font-style: italic;
}

/* ── Interactive checklist ── */
.next-queen-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.next-queen-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(160, 204, 96, 0.14);
  color: var(--sage-200);
  font-size: 0.88rem;
  line-height: 1.65;
  cursor: default;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease, color 0.28s ease;
  position: relative;
}

.next-queen-checklist li::before {
  content: '✦';
  color: var(--gaccent-light);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 4px;
  transition: color 0.28s ease, transform 0.28s ease;
}

.next-queen-checklist li:hover {
  background: rgba(106, 173, 48, 0.14);
  border-color: rgba(106, 173, 48, 0.36);
  transform: translateX(8px);
  color: var(--white);
}

.next-queen-checklist li:hover::before {
  color: var(--gaccent-bright);
  transform: scale(1.3);
}

/* ── CTA ── */
.next-queen-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.next-queen-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--sage-400);
  font-style: italic;
}

/* Responsive */
@media (max-width: 960px) {
  .next-queen-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .next-queen-image img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .next-queen-image img {
    aspect-ratio: 1 / 1;
  }

  .next-queen-checklist li {
    font-size: 0.84rem;
  }

  .next-queen-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════════════════
   FEMINA MISS INDIA SECTION
═══════════════════════════════════════════════════════════ */
.femina-section {
  background: linear-gradient(180deg, var(--forest-900) 0%, var(--gaccent-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.femina-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(106, 173, 48, 0.22), transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(160, 204, 96, 0.16), transparent 38%);
  pointer-events: none;
}

.femina-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  text-align: center;
}

.femina-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.femina-badge-row .eyebrow {
  color: var(--gaccent-light);
  margin: 0;
}

.femina-crown {
  font-size: 1.5rem;
  color: var(--gaccent-light);
  line-height: 1;
}

.femina-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  color: var(--white);
  text-transform: uppercase;
}
.femina-title span{
      font-size: clamp(1.3rem, 2.4vw, 2.4rem) !important;
}

.femina-state {
  color: var(--gaccent-light);
}

.femina-script {
  color: var(--gaccent-light) !important;
  font-size: clamp(1.4rem, 2.8vw, 2.8rem) !important;
}

.femina-scope {
  display: block;
  margin-top: 10px;
  font-size: 0.52em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-300);
  font-family: var(--font-body);
  font-weight: 700;
}

.femina-photo {
  margin: 0 auto;
  max-width: 880px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
  border: 2px solid rgba(160, 204, 96, 0.28);
}

.femina-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.femina-photo figcaption {
  background: rgba(0, 0, 0, 0.32);
  color: var(--sage-300);
  font-size: 0.82rem;
  padding: 10px 18px;
  letter-spacing: 0.04em;
}

.femina-desc {
  color: var(--sage-300);
  font-size: 1rem;
  line-height: 1.78;
  max-width: 74ch;
  margin: 0;
}

.femina-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 880px;
  width: 100%;
}

.femina-stat {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(160, 204, 96, 0.18);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.femina-stat:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(160, 204, 96, 0.32);
}

.femina-stat strong {
  display: block;
  color: var(--gaccent-light);
  font-size: 1rem;
  margin-bottom: 6px;
}

.femina-stat span {
  display: block;
  color: var(--sage-300);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════
   FOUNDER INTRODUCTION SECTION
═══════════════════════════════════════════════════════════ */
.founder-section {
  background: linear-gradient(135deg, #f4fae8 0%, #e8f5d4 60%, var(--mist-100) 100%);
  position: relative;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: start;
}

.founder-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 4px solid rgba(255, 255, 255, 0.90);
  transition: box-shadow 0.35s ease;
  background: linear-gradient(160deg, var(--sage-200), var(--mist-200));
  min-height: 420px;
}

.founder-photo:hover {
  box-shadow: 0 40px 90px rgba(18, 50, 21, 0.22);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 420px;
}

/* Founder name: cursive/script, high specificity to override .section-copy h2 */
h2.founder-name-cursive,
.founder-copy .founder-name-cursive {
  margin: 0 0 8px;
  font-family: var(--font-script) !important;
  font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
  font-weight: 400 !important;
  line-height: 1.1;
  color: var(--gaccent-rich);
  text-transform: none !important;
  letter-spacing: 0;
}

/* Designation: Times New Roman, smaller, italic */
.founder-designation-tnr {
  margin: 0 0 24px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--stone-600);
  line-height: 1.65;
}

/* Sub-list for awards and crowns */
.award-list {
  margin: 8px 0 4px 0;
  padding-left: 20px;
  list-style: disc;
  display: grid;
  gap: 5px;
}

.award-list li {
  padding-left: 0;
  font-size: 0.88rem;
  color: var(--stone-600);
  line-height: 1.55;
}

.award-list li::before {
  display: none;
}

/* Main founder credential list */
.founder-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.founder-list > li {
  position: relative;
  padding-left: 22px;
  color: var(--stone-600);
  font-size: 0.94rem;
  line-height: 1.6;
}

.founder-list > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gaccent-rich), var(--gaccent-bright));
}

.founder-list > li strong {
  color: var(--forest-900);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   PAGEANT AFFILIATIONS SECTION
═══════════════════════════════════════════════════════════ */
.affiliations-section {
  background: linear-gradient(180deg, #f0f8e0 0%, var(--mist-100) 100%);
}

.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.affiliation-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(106, 173, 48, 0.14);
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  cursor: default;
}

.affiliation-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 56px rgba(21, 55, 24, 0.16);
  border-color: rgba(106, 173, 48, 0.28);
}

.affiliation-card figure {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.affiliation-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.affiliation-card:hover figure img {
  transform: scale(1.05);
}

.affiliation-card span {
  display: block;
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest-900);
  letter-spacing: 0.03em;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(106, 173, 48, 0.10);
}

/* ── Affiliations roles strip ── */
.affiliations-roles-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 32px 0 0;
}

.affiliations-roles-strip span {
  padding: 7px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gaccent-dark), var(--gaccent-rich));
  color: var(--gaccent-pale);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Affiliations structured list ── */
.affiliations-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0 52px;
}

.affiliation-detail-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(106, 173, 48, 0.14);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.affiliation-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(21, 55, 24, 0.14);
  border-color: rgba(106, 173, 48, 0.30);
}

.affiliation-detail-img {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

.affiliation-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.affiliation-detail-card:hover .affiliation-detail-img img {
  transform: scale(1.05);
}

.affiliation-detail-content {
  padding: 18px 20px 20px;
  flex: 1;
}

.affiliation-featured {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--forest-900), var(--gaccent-dark));
  border-color: transparent;
  color: var(--white);
  flex-direction: row;
  align-items: stretch;
}

.affiliation-featured .affiliation-detail-img {
  width: 52%;
  aspect-ratio: unset;
  flex-shrink: 0;
}

.affiliation-featured .affiliation-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
}

.affiliation-detail-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--forest-950);
  letter-spacing: 0.04em;
}

.affiliation-featured h3 {
  color: var(--gaccent-pale);
  font-size: 1.1rem;
}

.affiliation-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.affiliation-roles span {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  background: rgba(106, 173, 48, 0.12);
  color: var(--gaccent-mid);
  border: 1px solid rgba(106, 173, 48, 0.22);
}

.affiliation-featured .affiliation-roles span {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gaccent-pale);
  border-color: rgba(160, 204, 96, 0.28);
}

/* ═══════════════════════════════════════════════════════════
   WIGP QUEENS SECTION
═══════════════════════════════════════════════════════════ */
.queens-section {
  background: linear-gradient(180deg, var(--forest-900) 0%, var(--gaccent-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.queens-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(106, 173, 48, 0.20), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(160, 204, 96, 0.14), transparent 36%);
  pointer-events: none;
}

.queens-section > .container {
  position: relative;
  z-index: 1;
}

.queens-section .section-heading h2 {
  color: var(--white);
}

.queens-section .section-heading p {
  color: var(--sage-300);
}

.queens-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.queen-card {
  text-align: center;
  padding: 32px 24px 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(160, 204, 96, 0.20);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
  position: relative;
  overflow: hidden;
}

.queen-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(106, 173, 48, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.queen-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.36);
  background: rgba(255, 255, 255, 0.11);
}

.queen-card:hover::before {
  opacity: 1;
}

.queen-crown {
  font-size: 2rem;
  color: var(--gaccent-light);
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.queen-card-body {
  position: relative;
  z-index: 1;
}

.queen-card-body h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}

.queen-title {
  margin: 0 0 6px;
  font-family: var(--font-script);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gaccent-light);
  line-height: 1.2;
}

.queen-region {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-400);
  margin-top: 6px;
}

/* ── Queen Video Cards ── */
.queens-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.queen-video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(160, 204, 96, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.queen-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
}

.queen-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: var(--forest-950);
}
@media screen and (max-width:600px){
    .queen-video-thumb{
        aspect-ratio: 1/1;
    }
}

.queen-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.queen-video-thumb:hover img {
  transform: scale(1.04);
  opacity: 0.8;
}

.queen-video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.queen-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest-900);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.queen-video-play:hover {
  background: var(--white);
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

.queen-video-info {
  padding: 14px 16px 16px;
}

.queen-video-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
 text-transform: uppercase;
}

.queen-video-info span {
  font-size: 0.78rem;
  color: var(--sage-400);
  /*font-family: var(--font-script);*/
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   VIDEOS SECTION
═══════════════════════════════════════════════════════════ */
.videos-section {
  background: linear-gradient(180deg, var(--gaccent-deep) 0%, var(--forest-900) 100%);
  color: var(--white);
}

.videos-section .section-heading h2 {
  color: var(--white);
}

.videos-section .section-heading p {
  color: var(--sage-300);
}

.videos-section .eyebrow {
  color: var(--gaccent-light);
}

/* Featured video row */
.video-featured-wrap {
  margin-top: 52px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Shared video card */
.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(160, 204, 96, 0.18);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.video-card:hover {
  border-color: rgba(160, 204, 96, 0.36);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  transform: translateY(-4px);
}

.video-card-featured {
  border-color: rgba(160, 204, 96, 0.28);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

/* 16:9 embed wrapper */
.video-embed-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-embed-box iframe,
.video-embed-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Card text area */
.video-card-body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.video-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(160, 204, 96, 0.14);
  border: 1px solid rgba(160, 204, 96, 0.26);
  color: var(--gaccent-light);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card-body strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  line-height: 1.15;
}

.video-card-body p {
  color: var(--sage-300);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* 3-column supporting grid */
.video-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

@media (max-width: 900px) {
  .video-trio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .video-featured-wrap {
    margin-top: 36px;
  }

  .video-trio {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   INSTAGRAM FEED SECTION
═══════════════════════════════════════════════════════════ */
.instagram-section {
  background: linear-gradient(135deg, #f0f8e0 0%, var(--mist-200) 100%);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.instagram-post {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(106, 173, 48, 0.14);
  position: relative;
  cursor: pointer;
}

.instagram-post-inner {
  position: absolute;
  inset: 0;
}

.instagram-post-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-post:hover .instagram-post-inner img {
  transform: scale(1.06);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 34, 8, 0.72));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.instagram-post:hover .instagram-overlay {
  opacity: 1;
}

.instagram-icon {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
}

.instagram-cta {
  text-align: center;
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.instagram-cta p {
  color: var(--stone-600);
  font-size: 0.98rem;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .femina-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-layout {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    max-width: 480px;
    margin: 0 auto;
  }

  .affiliations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .affiliations-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .affiliation-featured {
    grid-column: span 2;
    flex-direction: column;
  }

  .affiliation-featured .affiliation-detail-img {
    width: 100%;
    aspect-ratio: 16/7;
  }

  .queens-grid,
  .queens-videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .femina-stats {
    grid-template-columns: 1fr;
  }

  .affiliations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .affiliations-list {
    grid-template-columns: 1fr;
  }

  .affiliation-featured {
    grid-column: span 1;
  }

  .queens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════
   PRIMARY FOUNDER SECTION
═══════════════════════════════════════════════════════════ */
.founder-prime {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest-950) 0%, var(--forest-900) 40%, var(--gaccent-dark) 100%);
  color: var(--white);
}

.founder-prime-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 60%, rgba(106, 173, 48, 0.18), transparent 50%),
    radial-gradient(ellipse at 100% 10%, rgba(160, 204, 96, 0.10), transparent 45%);
  pointer-events: none;
}

/* ── 1:1 two-column layout ── */
.founder-prime-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Image column ── */
.founder-prime-photo {
  margin: 0;
  position: relative;
}

.founder-prime-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.50);
  border: 3px solid rgba(160, 204, 96, 0.20);
  position: relative;
}

.founder-prime-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(10, 29, 5, 0.50) 100%
  );
  pointer-events: none;
}

.founder-prime-img-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: right top;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.founder-prime-photo:hover .founder-prime-img-wrap img {
  transform: scale(1.03);
}

/* Small badge at bottom of image */
.founder-prime-img-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.founder-prime-img-badge span {
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

/* ── Content column ── */
.founder-prime-eyebrow {
  color: var(--gaccent-light);
  margin-bottom: 10px;
}

/* Name in script/cursive font */
.founder-prime-name {
  margin: 0 0 6px;
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
}

/* Org name */
.founder-prime-org {
  margin: 0 0 0;
  font-family: 'Times New Roman', Times, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--sage-300);
  line-height: 1.7;
}

.founder-prime-org strong {
  font-style: normal;
  color: var(--gaccent-light);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Divider line */
.founder-prime-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(160, 204, 96, 0.50), transparent);
  margin: 22px 0;
}

/* Awards label */
.founder-prime-awards-label {
  margin: 0 0 14px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gaccent-light);
}

/* Credential list */
.founder-prime-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}

.founder-prime-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--sage-200);
  line-height: 1.65;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(160, 204, 96, 0.10);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.founder-prime-list li:hover {
  background: rgba(106, 173, 48, 0.10);
  border-color: rgba(160, 204, 96, 0.28);
  color: var(--white);
}

.fpl-icon {
  flex-shrink: 0;
  font-size: 0.5rem;
  color: var(--gaccent-light);
  margin-top: 7px;
}

.founder-prime-list li strong {
  color: var(--white);
  font-weight: 700;
}

/* Grouped item with sub-list */
.fpl-group > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.fpl-group strong {
  color: var(--white);
  font-size: 0.9rem;
}

.fpl-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  padding-left: 4px;
  border-left: 2px solid rgba(160, 204, 96, 0.30);
  padding-left: 12px;
}

.fpl-sub li {
  font-size: 0.84rem;
  color: var(--sage-300);
  line-height: 1.6;
  position: relative;
  padding-left: 14px;
}

.fpl-sub li::before {
  content: '○';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.55rem;
  color: var(--gaccent-light);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 960px) {
  .founder-prime-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .founder-prime-img-wrap img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .founder-prime-img-wrap img {
    aspect-ratio: 1 / 1;
  }

  .founder-prime-name {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }
}

/* ═══════════════════════════════════════════════════════════
   FIXED CTA BUTTONS
═══════════════════════════════════════════════════════════ */
.fixed-cta {
  position: fixed;
  bottom: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 58px;
  padding: 12px 0 10px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.fixed-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.30);
}

.fixed-cta svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.fixed-cta-label {
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

/* Call – bottom right */
.fixed-cta--call {
  right: 24px;
  background: linear-gradient(145deg, var(--gaccent-rich), var(--forest-800));
  color: var(--white);
}

/* WhatsApp – bottom left */
.fixed-cta--whatsapp {
  left: 24px;
  background: linear-gradient(145deg, #25D366, #128C7E);
  color: var(--white);
}

/* Pulse ring on WhatsApp */
.fixed-cta--whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: ctaPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

/* Pulse ring on Call */
.fixed-cta--call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 2px solid rgba(106, 173, 48, 0.45);
  animation: ctaPulse 2.4s ease-in-out infinite;
  animation-delay: 1.2s;
  pointer-events: none;
}

@keyframes ctaPulse {
  0%   { transform: scale(1);    opacity: 0.8; }
  60%  { transform: scale(1.15); opacity: 0;   }
  100% { transform: scale(1.15); opacity: 0;   }
}

@media (prefers-reduced-motion: reduce) {
  .fixed-cta--call::before,
  .fixed-cta--whatsapp::before {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   BRAND LOGO (header + footer)
═══════════════════════════════════════════════════════════ */
.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

