/* ═══════════════════════════════════════════════════════════════
   SERENOVA — Premium Wellness Landing Page
   Design: Warm luxury spiritual aesthetic
   Fonts: Cormorant Garamond (display) + Jost (body)
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --cloud-gray: #f1f5f9;
  --beige: #fefcfb;
  --white: #ffffff;
  --primary: #38bdf8;
  --primary-light: #bae6fd;
  --deep-blue: #0f172a;
  --dark-blue: #1e3a8a;
  --text-body: #334155;
  --text-muted: #64748b;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 12px rgba(15, 23, 42, .06);
  --shadow-md: 0 8px 32px rgba(15, 23, 42, .12);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, .18);
  --transition: 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-height: 72px;
  --accent: #38bdf8;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

em {
  font-style: italic;
}

/* ─── UTILITIES ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}

.section-eyebrow.light {
  color: rgba(245, 232, 211, .7);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #b8924e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 110, .35);
}

.btn-ghost {
  display: inline-block;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .1em;
  padding: .85rem 2rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255, 255, 255, .4);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .7);
}

.btn-outline {
  display: inline-block;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255, 255, 255, .6);
  transition: var(--transition);
}

.btn-outline:hover {
  background: white;
  color: var(--deep-blue);
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .4s ease, box-shadow .4s ease;
}

.navbar.scrolled {
  background: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height .4s ease;
  position: relative;
  /* Context for centered links */
}

.navbar.scrolled .nav-inner {
  height: 70px;
}

/* No longer needed split bars */

.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  z-index: 101;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  letter-spacing: .08em;
  transition: color .4s ease;
}

.logo-symbol {
  font-size: 2rem;
  color: var(--primary);
  transition: color .4s ease;
}

.navbar.scrolled .logo-text {
  color: var(--deep-blue);
}

.navbar.scrolled .logo-symbol {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2.5rem;
}

.nav-links a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: white;
  transition: opacity .2s;
  white-space: nowrap;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* Submenu Styles */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-arrow {
  font-size: 0.6rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--primary);
  min-width: 200px;
  padding: 1rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.4s;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

.submenu li {
  width: 100%;
}

.submenu li a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: white !important;
  font-size: 0.8rem !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, padding-left 0.3s ease !important;
  width: 100%;
  opacity: 1 !important;
}

.submenu li a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 1.8rem;
}

/* Ensure submenu is visible even when scrolled */
.navbar.scrolled .submenu {
  background: var(--primary);
}

.nav-cta {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid white;
  color: white !important;
  padding: .5rem 1.4rem;
  border-radius: var(--radius-xl);
  transition: background .2s !important;
}

.nav-cta:hover {
  background: white !important;
  color: var(--primary) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  padding: .25rem;
  transition: opacity .2s;
}

.search-btn:hover {
  opacity: 0.7;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: white;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 10, .85);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  padding: .5rem .5rem .5rem 2rem;
  width: min(600px, 90vw);
  gap: 1rem;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  color: var(--deep-blue);
  background: transparent;
}

.search-box button {
  background: var(--primary);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  overflow: hidden;
  padding-top: 120px;
}

.hero-banner {
  position: relative;
  height: 50vh;
  min-height: 400px;
  max-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg img,
.hero-banner:hover .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg,
      rgba(26, 20, 10, .55) 0%,
      rgba(26, 20, 10, .3) 50%,
      rgba(26, 20, 10, .6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  max-width: 800px;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.hero-headline {
  color: white;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .3);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.hero-headline em {
  color: var(--primary-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .78);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .55);
  z-index: 2;
  animation: scrollBounce 2s infinite;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .5));
}

.scroll-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ══════════════════════════════════════════
   HERO CAROUSEL
══════════════════════════════════════════ */
.hero-carousel-container {
  width: 100%;
  max-width: 1000px;
  margin-top: 1px;
  margin-bottom: 49px;
  text-align: left;
  position: relative;
  z-index: 2;
  padding: 0 3rem;
}

.hero-carousel-title {
  color: rgba(255, 255, 255, .9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 50px;
  /* Space for the arrows */
}

.hero-carousel-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  padding: 0.5rem 0;
}

.hero-carousel-track::-webkit-scrollbar {
  display: none;
}

.hero-carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex-shrink: 0;
  width: 90px;
  transition: transform var(--transition);
}

.hero-carousel-item:hover {
  transform: translateY(-5px);
}

.hero-carousel-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.5);
  /* deep blue transparent */
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background var(--transition), border-color var(--transition);
}

.hero-carousel-item:hover .hero-carousel-icon {
  background: rgba(15, 23, 42, 0.8);
  border-color: var(--primary);
}

.hero-carousel-item span {
  color: white;
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
}

.hero-carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 1.8rem;
  line-height: 1;
  padding-bottom: 3px;
  transition: var(--transition);
}

.hero-carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-carousel-btn.prev {
  left: 0;
}

.hero-carousel-btn.next {
  right: 0;
}

@media (max-width: 768px) {
  .hero-carousel-btn {
    display: none;
  }

  .hero-carousel-container {
    padding: 0 1rem;
  }
}

/* ══════════════════════════════════════════
   PROGRAMS SECTION (MEDITATION)
══════════════════════════════════════════ */
.programs-section {
  padding: 7rem 0;
  background: var(--white);
}

.programs-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 260px;
  gap: 1rem;
}

.prog-card--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.prog-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.prog-card img {
  transition: transform var(--transition);
}

.prog-card:hover img {
  transform: scale(1.07);
}

.prog-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 14, 6, .75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.5rem;
  transition: background var(--transition);
}

.prog-card:hover .prog-card__overlay {
  background: linear-gradient(to top, rgba(20, 14, 6, .9) 0%, rgba(20, 14, 6, .2) 60%);
}

.prog-card__overlay h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 400;
}

.prog-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-bottom: .5rem;
  align-self: flex-start;
}

/* ══════════════════════════════════════════
   QUOTE / PREVENTION SECTION
══════════════════════════════════════════ */
.quote-section {
  background: var(--beige);
  padding: 5rem 0;
  text-align: center;
}

.quote-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.quote-deco {
  color: var(--primary);
  font-size: 1.4rem;
}

.quote-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
}

.quote-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--deep-blue);
  letter-spacing: .08em;
}

/* ══════════════════════════════════════════
   YOGA GRID
══════════════════════════════════════════ */
.yoga-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 260px;
  gap: 1rem;
}

.yoga-card--wide {
  grid-column: 1 / 3;
}

.yoga-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.yoga-card img {
  transition: transform var(--transition);
}

.yoga-card:hover img {
  transform: scale(1.07);
}

.yoga-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 14, 6, .72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.5rem;
}

.yoga-card:hover .yoga-card__overlay {
  background: linear-gradient(to top, rgba(20, 14, 6, .88) 0%, rgba(20, 14, 6, .15) 60%);
}

.yoga-card__overlay h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 400;
}

/* ══════════════════════════════════════════
   SERMON AUDIO CARDS
══════════════════════════════════════════ */
.sermon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.sermon-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sermon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.sermon-card__bg {
  position: absolute;
  inset: 0;
}

.sermon-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sermon-card:hover .sermon-card__bg img {
  transform: scale(1.08);
}

.sermon-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 10, 20, 0.92) 0%,
      rgba(10, 10, 20, 0.5) 50%,
      rgba(10, 10, 20, 0.15) 100%);
  transition: background 0.4s ease;
}

.sermon-card:hover .sermon-card__overlay {
  background: linear-gradient(to top,
      rgba(10, 10, 20, 0.97) 0%,
      rgba(10, 10, 20, 0.65) 60%,
      rgba(10, 10, 20, 0.2) 100%);
}

.sermon-card__body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

.sermon-card__tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  width: fit-content;
}

.sermon-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: white;
  line-height: 1.2;
}

.sermon-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.sermon-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--deep-blue);
  border: none;
  border-radius: var(--radius-xl);
  padding: 0.6rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  width: fit-content;
}

.sermon-play-btn:hover {
  background: white;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.35);
}

.sermon-play-btn.playing {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: sermonPulse 2s infinite;
}

.sermon-play-icon {
  font-size: 0.9rem;
  line-height: 1;
}

@keyframes sermonPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
  }
}

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

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

  .sermon-card {
    min-height: 300px;
  }
}

/* ══════════════════════════════════════════
   FEATURE SECTION
══════════════════════════════════════════ */
.feature-section {
  padding: 8rem 0;
  background: var(--beige);
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 5rem;
}

.feature-content {
  padding-right: 2rem;
}

.feature-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.feature-image {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

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

.feature-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--beige) 0%, transparent 30%);
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-title {
  color: var(--deep-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.feature-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
  font-size: 1.05rem;
}

.feature-list {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  padding-left: 1.8rem;
  position: relative;
  color: var(--text-body);
  font-size: .95rem;
  font-weight: 400;
}

.feature-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
  top: 0;
}

.btn-primary-alt {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 1.1rem 3.5rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(56, 189, 248, .2);
}

.btn-primary-alt:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(56, 189, 248, .3);
  filter: brightness(1.05);
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section {
  background: var(--beige);
  padding: 7rem 0;
}

.testimonial-slider {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: all;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--deep-blue);
  margin-bottom: 2rem;
}

.testimonial-quote::before {
  content: '"';
  color: var(--primary);
}

.testimonial-quote::after {
  content: '"';
  color: var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: .75rem;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.testimonial-author strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

.testimonial-author span {
  font-size: .8rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--primary);
  font-size: .9rem;
  letter-spacing: .1em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--primary-light);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.t-prev,
.t-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-light);
  background: transparent;
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-prev:hover,
.t-next:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ══════════════════════════════════════════
   FOUNDER SECTION
══════════════════════════════════════════ */
.founder-section {
  padding: 8rem 0;
  background: var(--deep-blue);
  overflow: hidden;
}

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

.founder-image-wrapper {
  position: relative;
}

.founder-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.founder-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
}

.founder-content {
  color: white;
}

.founder-title {
  color: white;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.founder-text {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.9;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-style: italic;
}

@media (max-width: 1024px) {
  .founder-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .founder-image {
    max-width: 450px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════════
   QUICK TAGS
══════════════════════════════════════════ */
.tags-section {
  background: var(--beige);
  padding: 5rem 0;
}

.tags-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--deep-blue);
  text-align: center;
  margin-bottom: 2rem;
}

.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: .6rem 1.4rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--primary-light);
  font-size: .85rem;
  color: var(--text-body);
  background: white;
  transition: var(--transition);
  cursor: pointer;
}

.tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 110, .25);
}

/* ══════════════════════════════════════════
   SOCIAL IMPACT
══════════════════════════════════════════ */
.impact-section {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.impact-bg {
  position: absolute;
  inset: 0;
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 11, 5, 0.7) 0%, rgba(15, 11, 5, 0.85) 100%);
}

.impact-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 5rem 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.impact-title {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.impact-text {
  color: rgba(255, 255, 255, .7);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.impact-stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 5rem;
  padding: 3rem 2rem;
  background: rgba(15, 11, 5, .6);
  backdrop-filter: blur(8px);
  width: 100%;
}

.impact-stat {
  color: white;
  text-align: center;
}

.impact-stat span.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--primary-light);
}

.impact-stat>span:last-of-type {
  font-size: 1.5rem;
  color: var(--primary-light);
}

.impact-stat p {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-top: .25rem;
}

/* ══════════════════════════════════════════
   REAL VOICES
══════════════════════════════════════════ */
.voices-section {
  padding: 7rem 0;
  background: var(--white);
  overflow: hidden;
}

.voices-scroll-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  padding: 1rem 0;
}

.voices-track {
  display: flex;
  gap: 1.25rem;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  transition: transform .5s ease;
}

.voice-card {
  flex: 0 0 280px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.voice-card>img {
  height: 180px;
  object-fit: cover;
}

.voice-card__body {
  padding: 1.5rem;
}

.voice-stars {
  color: var(--primary);
  font-size: .85rem;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}

.voice-card__body p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-style: italic;
}

.voice-card__body strong {
  display: block;
  font-weight: 500;
  font-size: .9rem;
}

.voice-card__body span {
  font-size: .78rem;
  color: var(--text-muted);
}

.voices-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-light);
  background: white;
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.voices-arrow:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.voices-arrow--prev {
  left: clamp(.5rem, 2vw, 1.5rem);
}

.voices-arrow--next {
  right: clamp(.5rem, 2vw, 1.5rem);
}

/* ══════════════════════════════════════════
   TEACHERS
══════════════════════════════════════════ */
.teachers-section {
  padding: 7rem 0;
  background: var(--beige);
}

.teachers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.teacher-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  cursor: pointer;
}

.teacher-portrait {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-light);
  transition: var(--transition);
  position: relative;
}

.teacher-portrait::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: var(--transition);
}

.teacher-card:hover .teacher-portrait {
  border-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(201, 169, 110, .15);
  transform: scale(1.04);
}

.teacher-portrait img {
  width: 100%;
  height: 100%;
}

.teacher-card strong {
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--deep-blue);
}

.teacher-card span {
  font-size: .8rem;
  color: var(--text-muted);
}

.teachers-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ══════════════════════════════════════════
   WISDOM / BLOG
══════════════════════════════════════════ */
.wisdom-section {
  padding: 7rem 0;
  background: var(--white);
}

.wisdom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.wisdom-card--featured {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.wisdom-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.wisdom-card__img {
  position: relative;
  overflow: hidden;
}

.wisdom-card--featured .wisdom-card__img {
  height: 320px;
}

.wisdom-card:not(.wisdom-card--featured) .wisdom-card__img {
  height: 180px;
}

.wisdom-card__img img {
  transition: transform var(--transition);
}

.wisdom-card:hover .wisdom-card__img img {
  transform: scale(1.06);
}

.wisdom-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 20px;
  font-family: 'Jost', sans-serif;
}

.wisdom-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wisdom-card__body h3 {
  color: var(--deep-blue);
  margin-bottom: .75rem;
  font-size: 1.15rem;
}

.wisdom-card--featured .wisdom-card__body h3 {
  font-size: 1.5rem;
}

.wisdom-card__body p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}

.wisdom-read {
  color: var(--primary);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: gap .2s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
}

.wisdom-read:hover {
  color: #b8924e;
  letter-spacing: .14em;
}

.wisdom-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, var(--cloud-gray) 0%, var(--beige) 100%);
  padding: 6rem 0;
  text-align: center;
}

.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.newsletter-deco {
  color: var(--primary);
  font-size: 1.5rem;
}

.newsletter-inner h2 {
  color: var(--deep-blue);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.newsletter-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: .5rem;
  width: 100%;
  max-width: 460px;
  background: white;
  border-radius: var(--radius-xl);
  padding: .4rem .4rem .4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  color: var(--deep-blue);
  background: transparent;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--dark-blue);
  color: rgba(255, 255, 255, .65);
  padding: 5rem 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.footer-logo .logo-symbol {
  color: var(--primary);
}

.footer-logo .logo-text {
  color: white;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: .75rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-col li a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  transition: color .2s;
}

.footer-col li a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .3);
  transition: color .2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .7);
}

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201, 169, 110, .4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  z-index: 500;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-top:hover {
  background: #b8924e;
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature-section {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 360px;
  }

  .feature-image-overlay {
    background: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: -8px 0 32px rgba(26, 20, 10, .15);
    transition: right .4s ease;
    z-index: 100;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--text-body) !important;
    font-size: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .submenu {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    background: var(--cloud-gray);
    box-shadow: none;
    border-radius: 0;
    margin-top: 0.5rem;
    transition: none;
  }

  .nav-item.active .submenu {
    display: flex;
  }

  .nav-item.active .nav-arrow {
    transform: rotate(180deg);
  }

  .submenu li a {
    color: var(--text-body) !important;
    padding: 0.8rem 1.5rem !important;
    text-transform: none;
    font-weight: 400;
  }

  .submenu li a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 1.8rem !important;
  }

  .nav-arrow {
    color: var(--text-muted);
  }

  .hamburger {
    display: flex;
  }

  .navbar:not(.scrolled) .hamburger span {
    background: white;
  }

  .hamburger.active span {
    background: var(--deep-blue) !important;
  }

  .programs-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 200px 200px;
  }

  .prog-card--large {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
  }

  .yoga-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 200px 200px;
  }
}

@media (max-width: 480px) {
  .programs-masonry {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .prog-card--large {
    grid-column: 1 / -1;
    height: 280px;
  }

  .prog-card {
    height: 220px;
  }

  .yoga-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .yoga-card {
    height: 220px;
  }
}

/* ─── PAGE CONTENT STYLES (For Markdown Pages) ─── */
.page-header {
  padding-top: 140px;
  padding-bottom: 40px;
  background: var(--cloud-gray);
  text-align: center;
}

.page-header h1 {
  color: var(--deep-blue);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.page-content {
  padding: 60px 0 100px;
  max-width: 900px;
  margin: 0 auto;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
  color: var(--deep-blue);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.page-content p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.page-content ul,
.page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.page-content th,
.page-content td {
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 1rem;
  text-align: left;
}

.page-content th {
  background-color: var(--cloud-gray);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  color: var(--deep-blue);
}

.page-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 0 1rem 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  background: var(--cloud-gray);
  margin-bottom: 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.page-content hr {
  border: none;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  margin: 3rem 0;
}

.page-content strong {
  color: var(--deep-blue);
  font-weight: 600;
}

.page-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}

.page-content a:hover {
  text-decoration-color: var(--primary);
}

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

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

.wisdom-card--featured {
  grid-column: 1;
  grid-row: auto;
}

.impact-stats {
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature-section {
  grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {

  .programs-masonry,
  .yoga-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .prog-card,
  .yoga-card {
    height: 220px;
  }

  .prog-card--large,
  .yoga-card--wide {
    grid-column: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .impact-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

/* ══════════════════════════════════════════
   PROGRAMME JOURNEY SECTION
══════════════════════════════════════════ */
.prog-journey-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.prog-journey-bg {
  position: absolute;
  inset: 0;
}

.prog-journey-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.prog-journey-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.72) 100%);
}

.prog-journey-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.prog-journey-header {
  max-width: 720px;
  margin: 0 auto 4rem;
}

.prog-journey-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: white;
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}

.prog-journey-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.prog-journey-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2rem;
}

.prog-journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.prog-journey-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.prog-journey-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
}

.prog-journey-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.prog-journey-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.prog-journey-card__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .prog-journey-grid {
    grid-template-columns: 1fr;
  }

  .prog-journey-section {
    padding: 5rem 0;
  }
}

/* ══════════════════════════════════════════
   PRICE CARDS
══════════════════════════════════════════ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--white);
  border-top: 4px solid var(--accent);
  padding: 3.5rem 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  text-align: left;
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.price-card__eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.price-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--deep-blue);
  line-height: 1.1;
  margin-bottom: 1.8rem;
}

.price-card__desc {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.price-card__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

.price-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.price-card__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  display: block;
}

.price-card__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--deep-blue);
}

.price-card__duration {
  text-align: right;
}

.price-card__duration .price-card__value {
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.btn-price-card {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.3rem;
  border: 1px solid rgba(15, 23, 42, 0.15);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep-blue);
  transition: all 0.3s ease;
  background: transparent;
}

.btn-price-card:hover {
  background: var(--deep-blue);
  color: white;
  border-color: var(--deep-blue);
}

@media (max-width: 768px) {
  .price-card {
    padding: 2.5rem 2rem;
  }

  .price-card__title {
    font-size: 2.2rem;
  }
}