.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 760px);
  display: grid;
  place-items: center;
  overflow: clip;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-overlay {
  background: linear-gradient(140deg, rgba(35, 23, 8, 0.72), rgba(45, 30, 10, 0.44));
}

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

.hero-figure {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 221, 150, 0.6), rgba(255, 173, 57, 0.1));
  filter: blur(1px);
  animation: floaty 9s ease-in-out infinite;
}

.hero-figure-a {
  width: 220px;
  height: 220px;
  top: 13%;
  right: 8%;
}

.hero-figure-b {
  width: 140px;
  height: 140px;
  bottom: 18%;
  right: 30%;
  animation-delay: 1.5s;
}

.hero-figure-c {
  width: 170px;
  height: 170px;
  top: 24%;
  left: 6%;
  animation-delay: 2.4s;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 3rem;
}

.hero-content h1,
.hero-content p {
  color: #fff;
  max-width: 820px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f3deb3;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.metrics,
.programs,
.founder,
.why,
.testimonials,
.proof,
.media-showcase,
.faq,
.cta-band {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.metric-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.metric-value {
  font-family: "Fraunces", serif;
  color: var(--gold-700);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 0;
}

.metric-label {
  margin: 0.3rem 0 0;
}

.programs-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.program-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fffdf8;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(74, 53, 20, 0.18);
}

.program-card img {
  width: 100%;
  aspect-ratio: 4 / 2.8;
  object-fit: cover;
}

.program-copy {
  padding: 1rem;
}

.founder {
  background: linear-gradient(180deg, #fff8e8, #f4ead0);
}

.founder-grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.founder-grid img {
  border-radius: 18px;
  border: 3px solid #e4cf9f;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.proof-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.proof-card h3,
.proof-card p,
.proof-card a {
  padding-inline: 1rem;
}

.proof-card h3 {
  padding-top: 0.9rem;
}

.proof-card a {
  display: inline-block;
  padding-bottom: 1rem;
}

.why {
  background: linear-gradient(180deg, #fffef9 0%, #f9f1db 100%);
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.why-list li {
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.why-list p {
  margin: 0;
}

.why-dot {
  width: 12px;
  height: 12px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  flex-shrink: 0;
}

.testimonials {
  background: #1f1408;
}

.testimonials .section-heading .kicker,
.testimonials .section-heading h2 {
  color: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 222, 144, 0.56);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.quote {
  color: #f7ebce;
  padding: 1rem 1rem 0.4rem;
  font-size: 0.96rem;
}

.author {
  color: #e9c878;
  padding: 0 1rem 1rem;
  margin: 0;
  font-weight: 700;
}

.media-showcase {
  background: radial-gradient(circle at top right, #fff6df 0%, #f8f1df 42%, #f2e5cb 100%);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-bottom: 1rem;
  align-items: start;
}

.video-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d5bd87;
  box-shadow: var(--shadow);
  background: #fff;
  align-self: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(84, 59, 17, 0.2);
}

.video-card video {
  width: 100%;
  display: block;
  background: #180f05;
  height: auto;
}

.media-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.1rem 0 1rem;
}

.media-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffbf1;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.83rem;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

.media-tab.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #fff;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.45rem;
}

.media-card {
  margin: 0;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid #dec897;
  background: #fff;
  transition: transform 0.2s ease;
}

.media-card:hover {
  transform: scale(1.03);
}

.media-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.62s ease, transform 0.62s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.media-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: #fffef9;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin-top: 0.7rem;
}

.cta-band {
  background: linear-gradient(125deg, #2a1b08, #5f431b);
  color: #fff;
  padding: 3rem 0;
}

.cta-band p,
.cta-band h2 {
  color: #fff;
}

.cta-band-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 1rem;
  align-items: center;
}

.cta-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .metrics-grid,
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why-list {
    grid-template-columns: 1fr;
  }

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

  .media-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 760px) {
  .brand-text {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 84px 0 auto;
    background: #fff8e9;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-open {
    overflow: hidden;
  }

  .hero-trust {
    gap: 0.8rem;
    flex-direction: column;
  }

  .metrics-grid,
  .programs-grid,
  .proof-grid,
  .testimonials-grid,
  .founder-grid,
  .cta-band-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

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

  .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-11px) translateX(4px);
  }
}
