/* ============================================================
   GAIL BRITZ YOGA — style.css  (rebuilt to match original)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* --- Custom Properties --- */
:root {
  --bg-main:         #8a8e75;
  --bg-secondary:    #f1ead8;
  --text-primary:    #ffffff;
  --text-secondary:  #3a3a2e;
  --accent:          #bec5a4;
  --accent-dim:      rgba(190,197,164,0.3);
  --accent-mid:      rgba(190,197,164,0.6);
  --overlay:         rgba(117,121,102,0.62);
  --nav-h:           110px;
  --transition:      0.45s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.25s ease;
  --shadow-soft:     0 8px 40px rgba(0,0,0,0.18);
  --shadow-card:     0 4px 24px rgba(0,0,0,0.22);
  --radius-card:     12px;
  --radius-sm:       6px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 500; }
p  { font-weight: 300; }

/* --- Container --- */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* --- Section Spacing --- */
.section { padding: 100px 0; }
.section--secondary { background: var(--bg-secondary); color: var(--text-secondary); }
.section--dark      { background: var(--bg-main); }
.section--mid       { background: #757966; }

/* --- Section Label --- */
.section__label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.85;
}
.section--secondary .section__label { color: #767c68; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes drawLine {
  to { width: 120px; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.navbar.scrolled {
  background: rgba(90,94,78,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
  height: 80px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1300px, 94%);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 130px;
  margin-left: 1.5rem;
  transition: opacity var(--transition-fast);
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo img {
  width: 130px;
  height: 130px;
  max-width: none;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-left: auto;
}
.nav-links li a {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 4px;
  transition: opacity var(--transition-fast);
}
/* Underline grows from center outward */
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition), left var(--transition);
}
.nav-links li a:hover::after,
.nav-links li a.active::after { width: 100%; left: 0; }
.nav-links li a:hover { opacity: 0.85; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-left: 2rem;
  flex-shrink: 0;
}

/* Book button */
.btn-book {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  background: transparent;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.btn-book:hover {
  background: rgba(255,255,255,0.95);
  color: var(--text-secondary);
  border-color: transparent;
}

/* Butterfly */
.nav-butterfly { opacity: 0.5; cursor: default; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.8px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.8px) rotate(-45deg); }

/* Mobile back button (inner pages) */
.nav-back {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  margin-right: auto;
}

/* Mobile-only BOOK A SESSION inside overlay */
.nav-mobile-book { display: none; }

@media (max-width: 768px) {
  .navbar { z-index: 2001 !important; }
  .btn-book      { display: none; }
  .nav-butterfly { display: none; }
  .nav-back      { display: none !important; }

  .nav-logo img {
    width: 75px;
    height: 75px;
  }
  .nav-logo { width: 75px; }

  .nav-hamburger {
    display: flex;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 2002;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-outline {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--text-primary);
  background: transparent;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.95);
  color: var(--text-secondary);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-ghost {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  background: transparent;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-dark {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.7);
  color: #ffffff;
  background: transparent;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.btn-outline-dark:hover {
  background: #ffffff;
  color: var(--text-secondary);
  border-color: #ffffff;
}

/* ============================================================
   FADE-IN (IntersectionObserver)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger for grid children */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* animate class (for JS scroll reveals) */
.animate { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.35s; }
.animate-delay-4 { transition-delay: 0.5s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #6a6e5b;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(106,110,91,0.22);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
}
.hero-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}
.hero-content h1 {
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.45s forwards;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s ease 0.65s forwards;
}

/* Thin animated line under subtitle */
.hero__line-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.85s forwards;
}
.hero__line {
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.4);
  animation: drawLine 1.6s ease 1.1s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.55;
  animation: bounce 2s ease infinite 2.2s;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.scroll-indicator__line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: #757966;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.testimonials__inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  padding: 0 24px;
}
.testimonials__quote-icon {
  color: var(--accent);
  font-size: 3.5rem;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 1.6rem;
  opacity: 0.65;
  display: block;
}
.testimonials__slider-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-slider {
  position: relative;
  min-height: 220px;
  flex: 1;
}
/* Crossfade via opacity */
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.testimonial-slide.active { opacity: 1; }

.testimonial-text {
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.testimonial-author {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Arrows */
.t-arrow {
  flex-shrink: 0;
  background: none;
  border: 1px solid rgba(241,234,216,0.3);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  padding: 0;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
}
.t-arrow:hover {
  border-color: #f1ead8;
  background: rgba(241,234,216,0.08);
  color: #fff;
}
/* Remove absolute positioning — now in flex row */
.t-prev, .t-next { position: static; transform: none; }

/* Dots */
.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2.8rem;
}
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.t-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* Butterfly decorations */
.section-butterfly {
  position: absolute;
  bottom: 28px; left: 48px;
  opacity: 0.35;
  pointer-events: none;
}

/* ============================================================
   APPROACH (split layout)
   ============================================================ */
.approach { padding: 100px 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split__img-wrap {
  overflow: hidden;
  border-radius: 4px;
}

.approach-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  background: #7a7e6b;
  display: block;
}

/* Service section mini carousel */
.service-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: #7a7e6b;
}
.service-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.service-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.service-carousel__slide.active { opacity: 1; }
.service-carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.service-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.service-carousel__dot.active { background: rgba(255,255,255,0.95); }
.service-carousel__slide video,
.service-carousel video.service-carousel__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Wide landscape variant, used inside retreat cards */
.service-carousel--wide {
  aspect-ratio: 2.4/1;
  min-height: 240px;
  border-radius: 0;
}
.retreat-card__images.retreat-card__images--single {
  display: block;
  grid-template-columns: 1fr;
}
.retreat-card__images--single .service-carousel--wide {
  aspect-ratio: auto;
  height: 100%;
  min-height: 260px;
}
#calReietCarousel .service-carousel__slide:nth-child(2),
#calReietCarousel .service-carousel__slide:nth-child(4),
#calReietCarousel .service-carousel__slide:nth-child(7) {
  object-position: center 75%;
}
#yogaSoundCarousel .service-carousel__slide:nth-child(2) {
  object-position: center 55%;
}
#paddleboardCarousel .service-carousel__slide {
  object-position: center center;
}

.approach-text {}
.approach-text h2 { margin-bottom: 1.2rem; }
.approach-body {
  margin-bottom: 1.2rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.8;
}

.approach-list {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.2rem;
}
.approach-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}
.approach-list li::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}
.wave-divider svg { display: block; width: 100%; }

/* ============================================================
   WHY YOGA (benefits)
   ============================================================ */
.why-yoga {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 100px 0;
}
.why-yoga .section-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
}
.why-yoga h2 {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.benefit-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.benefit-card__icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c6452;
}
.benefit-card__icon svg {
  width: 38px; height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}
.benefit-card__label {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  margin-bottom: 0.55rem;
}
.benefit-card__desc {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-secondary);
  opacity: 0.72;
  max-width: 180px;
  margin: 0 auto;
}

/* ============================================================
   ESSENTIAL OILS
   ============================================================ */
.oils-section {
  background: #757966;
  padding: 100px 0;
  color: var(--text-primary);
}
.oils-section .section-title-wrap {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.oils-section .section__label { color: rgba(255,255,255,0.65); }
.oils-section h2 { color: var(--text-primary); margin-bottom: 1rem; }
.oils-intro {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}
.oils-grid { grid-template-columns: repeat(3, 1fr); max-width: 780px; margin: 0 auto; }
.oils-grid .benefit-card__icon { color: rgba(255,255,255,0.85); }
.oils-grid .benefit-card__label { color: var(--text-primary); }
.oils-grid .benefit-card__desc { color: rgba(255,255,255,0.68); opacity: 1; max-width: 210px; }
.oils-cta {
  text-align: center;
  margin-top: 3.5rem;
}
.oils-cta .btn-outline { border-color: rgba(255,255,255,0.4); color: var(--text-primary); }
.oils-cta .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ============================================================
   CLASSES PREVIEW
   ============================================================ */
.classes-section {
  background: #757966;
  padding: 100px 0;
  text-align: center;
}
.classes-preview__title {
  margin-bottom: 3rem;
}
.classes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.class-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
}
.class-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.class-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: #7a7e6b center/cover no-repeat;
  display: block;
  border-radius: 0;
  position: relative;
}
.class-card__body {
  padding: 1.4rem 1.2rem;
}
.class-card__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.class-card__desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  background: var(--bg-main);
  padding: 100px 0 110px;
  text-align: center;
}
.video-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.video-section__label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  margin-bottom: 1.4rem;
}
.video-section__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 3.2rem;
}
.video-section__player {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.38);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s ease;
}
.video-section__player:hover {
  transform: scale(1.012);
  box-shadow: 0 32px 88px rgba(0,0,0,0.44);
}
.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #7a7e6b center/cover no-repeat;
}
.video-section__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(106,110,91,0.28);
  transition: background 0.35s ease, opacity 0.35s ease;
  border-radius: 14px;
  pointer-events: none;
}
.video-section__player.playing .video-section__play { opacity: 0; pointer-events: none; }
.video-section__player.playing .play-btn { pointer-events: none; }

.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  pointer-events: all;
  cursor: pointer;
}
.video-section__player:hover .play-btn {
  transform: scale(1.1);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.8);
}
.play-btn svg {
  width: 22px; height: 22px;
  margin-left: 3px;
  fill: rgba(255,255,255,0.9);
  flex-shrink: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 100px 0;
  text-align: center;
}
.cta-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-line {
  width: 60px; height: 1px;
  background: rgba(58,58,46,0.25);
  margin: 0 auto 2.8rem;
}
.cta-section--dark {
  background: #757966;
  color: var(--text-primary);
}
.cta-section--dark .cta-line { background: rgba(255,255,255,0.2); }
.cta-section--dark .cta-inner h2 { color: var(--text-primary); }
.cta-section--dark .cta-inner p { color: rgba(255,255,255,0.65); }

.cta-inner h2 { color: var(--text-secondary); margin-bottom: 1rem; }
.cta-inner p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(58,58,46,0.72);
  max-width: 560px;
  margin: 0 auto 2.4rem;
  line-height: 1.75;
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58,58,46,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  background: var(--bg-secondary);
  border-radius: 18px;
  padding: 3rem 3rem 2.8rem;
  max-width: 580px;
  width: 100%;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(58,58,46,0.28);
}
.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(58,58,46,0.18);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.modal-close:hover {
  background: rgba(58,58,46,0.08);
  border-color: rgba(58,58,46,0.35);
}
.modal-close svg { display: block; }
.modal-header { margin-bottom: 2rem; }
.modal-eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #767c68;
  margin-bottom: 0.7rem;
}
.modal-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.modal-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(58,58,46,0.62);
  line-height: 1.65;
}
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 2rem 0 1rem;
  text-align: center;
}
.booking-success svg {
  width: 48px; height: 48px;
  stroke: #767c68;
}
.booking-success p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 320px;
}
@media (max-width: 480px) {
  .modal-card { padding: 2.2rem 1.6rem 2rem; }
}

/* ============================================================
   BOOKING FORM (Formspree)
   ============================================================ */
.booking-form {
  margin-top: 2.4rem;
  text-align: left;
  max-width: 640px;
  margin-inline: auto;
}
.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.booking-form__input,
.booking-form__select,
.booking-form__textarea {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  letter-spacing: 0.02em;
  appearance: none;
  -webkit-appearance: none;
}

/* Inside modal (cream background) */
.modal-card .booking-form__input,
.modal-card .booking-form__select,
.modal-card .booking-form__textarea {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(58,58,46,0.16);
  color: var(--text-secondary);
}
.modal-card .booking-form__input::placeholder,
.modal-card .booking-form__textarea::placeholder { color: rgba(58,58,46,0.4); }
.modal-card .booking-form__select { color: rgba(58,58,46,0.7); }
.modal-card .booking-form__input:focus,
.modal-card .booking-form__select:focus,
.modal-card .booking-form__textarea:focus {
  border-color: #767c68;
  box-shadow: 0 0 0 3px rgba(190,197,164,0.3);
  background: #fff;
}
.modal-card .booking-form__submit {
  background: var(--text-secondary);
  border-color: var(--text-secondary);
  color: var(--bg-secondary);
  width: 100%;
  text-align: center;
}
.modal-card .booking-form__submit:hover {
  background: #5a5a4a;
  border-color: #5a5a4a;
  color: #fff;
}

/* On light (cream) background */
.cta-section .booking-form__input,
.cta-section .booking-form__select,
.cta-section .booking-form__textarea {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(58,58,46,0.18);
  color: var(--text-secondary);
}
.cta-section .booking-form__input::placeholder,
.cta-section .booking-form__select,
.cta-section .booking-form__textarea::placeholder { color: rgba(58,58,46,0.45); }
.cta-section .booking-form__input:focus,
.cta-section .booking-form__select:focus,
.cta-section .booking-form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(190,197,164,0.25);
  background: #fff;
}

/* On dark (sage) background */
.cta-section--dark .booking-form__input,
.cta-section--dark .booking-form__select,
.cta-section--dark .booking-form__textarea {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--text-primary);
}
.cta-section--dark .booking-form__input::placeholder,
.cta-section--dark .booking-form__textarea::placeholder { color: rgba(255,255,255,0.45); }
.cta-section--dark .booking-form__select { color: rgba(255,255,255,0.8); }
.cta-section--dark .booking-form__select option { background: #757966; color: #fff; }
.cta-section--dark .booking-form__input:focus,
.cta-section--dark .booking-form__select:focus,
.cta-section--dark .booking-form__textarea:focus {
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.18);
}

.booking-form__textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 1rem;
  display: block;
}
.booking-form__submit {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  border: 1px solid;
  margin-top: 0.4rem;
}
.cta-section .booking-form__submit {
  background: transparent;
  border-color: rgba(58,58,46,0.45);
  color: var(--text-secondary);
}
.cta-section .booking-form__submit:hover {
  background: var(--text-secondary);
  border-color: var(--text-secondary);
  color: var(--bg-secondary);
}
.cta-section--dark .booking-form__submit {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--text-primary);
}
.cta-section--dark .booking-form__submit:hover {
  background: rgba(255,255,255,0.95);
  border-color: transparent;
  color: var(--text-secondary);
}
@media (max-width: 600px) {
  .booking-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #5d6050;
  padding: 60px 0 40px;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.footer-brand {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}
.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0.4rem auto;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}
.footer-nav a:hover { color: var(--accent); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

/* ============================================================
   SECTION TITLE WRAP (centered)
   ============================================================ */
.section-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title-wrap h2 { margin-bottom: 0.8rem; }
.section-title-wrap p {
  color: rgba(255,255,255,0.62);
  max-width: 540px;
  margin-inline: auto;
  font-size: 0.95rem;
}
.section--secondary .section-title-wrap p { color: rgba(58,58,46,0.65); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .classes-grid   { grid-template-columns: repeat(2, 1fr); }
  .split          { gap: 50px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 80px; }

  /* ── Fullscreen overlay menu ── */
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100vh;
    z-index: 2000;
    background: rgba(106,110,91,0.88);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 2rem 3rem;
    margin-left: 0;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { transform: translateX(0); }

  .nav-links li { width: 100%; text-align: center; }
  .nav-links li a {
    display: block;
    padding: 1.1rem 1.5rem;
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.92) !important;
    opacity: 1;
  }
  .nav-links li a::after { display: none !important; }
  .nav-links li a:active { opacity: 0.6; }

  .nav-mobile-book {
    display: block;
    margin-top: 2rem;
    text-align: center;
  }
  .nav-mobile-book a {
    display: inline-block !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    border-radius: 6px !important;
    padding: 12px 40px !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.12em !important;
    color: #ffffff !important;
    background: transparent !important;
    transition: background 0.25s ease !important;
  }
  .nav-mobile-book a:active { background: rgba(255,255,255,0.12) !important; }
  .nav-mobile-book a::after { display: none !important; }

  /* Other responsive rules */
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .classes-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .testimonials { padding: 70px 0; }
  .testimonial-slider { min-height: 280px; }
}

@media (max-width: 480px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .hero-btns  { flex-direction: column; align-items: center; }
  .footer-nav { gap: 1.2rem; }
  .video-section { padding: 72px 0 80px; }
  .play-btn { width: 56px; height: 56px; }
}

/* ============================================================
   PAGE HERO (inner pages — About, Classes, Journal)
   ============================================================ */
@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  padding: calc(var(--nav-h) + 1.2rem) 0 1.8rem;
}
.page-hero__overlay {
  display: none;
}
.page-hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.page-hero__content h1 {
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.page-hero__content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.page-hero__eyebrow {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.15s forwards;
}

/* ============================================================
   ABOUT — PHILOSOPHY GRID
   ============================================================ */
.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.philosophy__item {
  text-align: center;
  padding: 2rem 1.5rem;
  transition: transform var(--transition-fast);
}
.philosophy__item:hover { transform: translateY(-3px); }
.philosophy__line {
  width: 40px; height: 1px;
  background: #767c68;
  margin: 0 auto 1.8rem;
  transition: width 0.9s ease;
}
.philosophy__item:hover .philosophy__line { width: 70px; }
.philosophy__item h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}
.philosophy__item p {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(58,58,46,0.75);
  line-height: 1.75;
}

/* ============================================================
   ABOUT — QUOTE SECTION
   ============================================================ */
.quote-section {
  background: #757966;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section blockquote {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  max-width: 820px;
  margin: 0 auto 1.4rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.quote-section cite {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
  position: relative;
  z-index: 1;
  display: block;
}

/* ============================================================
   ABOUT — QUALIFICATIONS
   ============================================================ */
.qualifications { background: var(--bg-secondary); color: var(--text-secondary); }

.qual-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}
.qual-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(58,58,46,0.1);
  transition: background var(--transition-fast);
}
.qual-list li:hover { background: rgba(255,255,255,0.8); }
.qual-list--grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0;
  max-width: 560px;
  margin-inline: auto;
}
.qual-list li::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: #767c68;
  flex-shrink: 0;
}

/* Responsive about */
@media (max-width: 768px) {
  .philosophy__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================================
   CLASSES — SERVICE SECTIONS
   ============================================================ */
.service-section {
  padding: 100px 0;
  background: var(--bg-main);
}
.service-section--alt {
  background: #808472;
}

/* Reverse split: image on right */
.split--reverse .split__img-wrap { order: 2; }
.split--reverse .approach-text    { order: 1; }

.service__label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(190,197,164,0.12);
  border: 1px solid rgba(190,197,164,0.3);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}

.service__details {
  list-style: none;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service__details li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service__details li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Button separation in service sections */
.service-section .btn-outline {
  margin-top: 2.8rem;
  display: inline-block;
}

/* ============================================================
   CLASSES — PRICING
   ============================================================ */
.pricing {
  background: var(--bg-secondary);
  padding: 100px 0;
}
.pricing__title {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}
.pricing__sub {
  text-align: center;
  color: rgba(58,58,46,0.65);
  margin-bottom: 3.5rem;
  font-size: 0.92rem;
  font-weight: 300;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 2rem;
}
.pricing-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(58,58,46,0.1);
  border-radius: var(--radius-card);
  padding: 2.4rem 1.8rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(58,58,46,0.12);
  transform: translateY(-4px);
}
.pricing-card__name {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-card__price {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #4c5442;
  margin-bottom: 0.3rem;
}
.pricing-card__unit {
  font-size: 0.78rem;
  color: rgba(58,58,46,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.pricing-card__detail {
  font-size: 0.85rem;
  color: rgba(58,58,46,0.65);
  line-height: 1.75;
  font-weight: 300;
}
.pricing__note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(58,58,46,0.5);
  margin-top: 1.2rem;
  font-style: italic;
}

/* Responsive classes */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .service-section { padding: 70px 0; }
  .split--reverse .split__img-wrap { order: unset; }
  .split--reverse .approach-text    { order: unset; }
}

/* ============================================================
   ABOUT — GALLERY CAROUSEL
   ============================================================ */
.gallery-carousel {
  background: #757966;
  padding: 80px 0 90px;
  overflow: hidden;
}
.gallery-carousel__header {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-carousel__header .section__label {
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.gallery-carousel__header h2 {
  color: var(--text-primary);
}
.gallery-carousel__outer {
  position: relative;
  width: min(1300px, 94%);
  margin-inline: auto;
  padding: 0 60px;
}
.gallery-carousel__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-card);
}
.gallery-carousel__track {
  display: flex;
  gap: 16px;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 calc((100% - 32px) / 3);
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
  min-height: 200px;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-slide:hover img { transform: scale(1.04); }
.gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-slide:hover video { transform: scale(1.04); }
.gallery-slide--placeholder {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  position: relative;
}
.gallery-slide--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.015) 20px,
    rgba(255,255,255,0.015) 21px
  );
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(106,110,91,0.75);
  color: rgba(255,255,255,0.85);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast);
}
.gallery-arrow:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.gallery-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.gallery-arrow--prev { left: 0; }
.gallery-arrow--next { right: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .gallery-slide { flex: 0 0 calc((100% - 16px) / 2); }
}
@media (max-width: 640px) {
  .gallery-slide { flex: 0 0 100%; }
  .gallery-carousel__outer { padding: 0 44px; }
  .gallery-arrow { width: 38px; height: 38px; font-size: 1.2rem; }
}

/* ============================================================
   JOURNAL — FEATURED POST
   ============================================================ */
.featured-post {
  padding: 100px 0 60px;
  background: var(--bg-main);
}
.featured-post__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: box-shadow var(--transition);
  text-decoration: none;
}
.featured-post__card:hover { box-shadow: var(--shadow-card); }
.featured-post__img {
  overflow: hidden;
  min-height: 380px;
  background-size: cover;
  background-position: center;
}
.featured-post__img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}
.featured-post__body {
  padding: 3rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-post__badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(190,197,164,0.12);
  border: 1px solid rgba(190,197,164,0.3);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.featured-post__date {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.featured-post__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.featured-post__excerpt {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ============================================================
   JOURNAL — ARTICLES GRID
   ============================================================ */
.blog-grid {
  padding: 60px 0 100px;
  background: var(--bg-main);
}
.blog-grid__title {
  margin-bottom: 2.4rem;
  color: var(--text-primary);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.article-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.article-card__img {
  overflow: hidden;
}
.article-card__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.article-card:hover .article-card__img img { transform: scale(1.04); }
.article-card__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-card__date {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.article-card__title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: auto;
}
.article-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  transition: opacity 0.25s ease, gap 0.25s ease;
}
.article-card__read::after { content: '→'; }
.article-card__read:hover { opacity: 1; gap: 0.8rem; }

/* ============================================================
   JOURNAL — READ MORE LINK
   ============================================================ */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap var(--transition-fast);
  text-decoration: none;
}
.read-more::after { content: '→'; }
.read-more:hover { gap: 1rem; }

/* ============================================================
   JOURNAL — STAY CONNECTED
   ============================================================ */
.stay-connected {
  background: #757966;
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.stay-connected__label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.15s forwards;
}
.stay-connected h2 {
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
  margin-bottom: 1rem;
}
.stay-connected p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 2.4rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 1s ease 0.45s forwards;
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: 50px;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  text-decoration: none;
}
.btn-instagram svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }
.btn-instagram:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
}

/* --- Newsletter signup --- */
.newsletter-box {
  max-width: 460px;
  margin: 3.2rem auto 0;
  padding-top: 3.2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.newsletter-box__label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.newsletter-box__text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}
.newsletter-box__form {
  display: flex;
  gap: 10px;
}
.newsletter-box__input {
  flex: 1;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-box__input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-box__input:focus { border-color: rgba(255,255,255,0.6); }
.newsletter-box__submit {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  padding: 0 24px;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}
.newsletter-box__submit:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
@media (max-width: 480px) {
  .newsletter-box__form { flex-direction: column; }
}

/* ============================================================
   ARTICLE PAGE (individual post)
   ============================================================ */
.article-page {
  padding-top: var(--nav-h);
  background: var(--bg-main);
  min-height: 100vh;
}
.article-header {
  padding: 72px 0 56px;
  text-align: center;
  border-bottom: 1px solid rgba(190,197,164,0.12);
}
.article-header__label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
  opacity: 0.8;
}
.article-header__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text-primary);
  max-width: 760px;
  margin: 0 auto 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.article-header__date {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.article-featured-img-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.article-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}
.article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}
.article-body p {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}
.article-body h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 3rem 0 1.2rem;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--accent);
  margin: 2.4rem 0 0.8rem;
  letter-spacing: 0.02em;
}
.article-pullquote {
  border-left: 2px solid var(--accent);
  padding: 0.4rem 0 0.4rem 2rem;
  margin: 2.8rem 0;
}
.article-pullquote p {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 0 !important;
}
.article-divider {
  width: 60px;
  height: 1px;
  background: rgba(190,197,164,0.3);
  margin: 3rem auto;
}
.article-back-wrap { text-align: center; padding: 0 0 80px; }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  transition: opacity 0.25s ease;
  text-decoration: none;
}
.article-back:hover { opacity: 1; }
.article-back svg { width: 14px; height: 14px; flex-shrink: 0; stroke: currentColor; }

/* Responsive journal */
@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .articles-grid { grid-template-columns: 1fr; }
  .featured-post__card { grid-template-columns: 1fr; }
  .featured-post__img img { min-height: 260px; }
  .article-header { padding: 52px 24px 40px; }
  .article-body { padding: 48px 24px 72px; }
}

/* ============================================================
   CLASSES — RETREATS SECTION
   ============================================================ */
.retreats-section {
  background: var(--bg-secondary);
  padding: 100px 0 110px;
  color: var(--text-secondary);
}

.retreats-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.retreats__eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #767c68;
  margin-bottom: 1rem;
}
.retreats__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.retreats__sub {
  font-size: 0.97rem;
  color: rgba(58,58,46,0.60);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.78;
  font-weight: 300;
}

/* --- Base Card --- */
.retreat-card {
  border-radius: var(--radius-card);
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(58,58,46,0.08);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.retreat-card:hover {
  box-shadow: 0 12px 52px rgba(58,58,46,0.10);
  transform: translateY(-2px);
}

.retreat-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 260px;
}
.retreat-card__content {
  padding: 2.8rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.retreat-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.retreat-img-placeholder {
  background: linear-gradient(135deg, rgba(58,58,46,0.07) 0%, rgba(58,58,46,0.03) 100%);
  position: relative;
  min-height: 240px;
  transition: background var(--transition);
}
.retreat-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 22px,
    rgba(58,58,46,0.018) 22px,
    rgba(58,58,46,0.018) 23px
  );
}
.retreat-img-placeholder:first-child {
  border-right: 1px solid rgba(58,58,46,0.06);
}
.retreat-img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
  z-index: 1;
}
.retreat-card:hover .retreat-img-placeholder img { transform: scale(1.04); }

/* --- Tier Badges --- */
.retreat-tier {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.retreat-tier--next {
  color: #5c6e52;
  background: rgba(190,197,164,0.22);
  border: 1px solid rgba(190,197,164,0.55);
}
.retreat-tier--upcoming {
  color: #5c6452;
  background: rgba(92,100,82,0.09);
  border: 1px solid rgba(92,100,82,0.22);
}
.retreat-tier--recent {
  color: rgba(58,58,46,0.55);
  background: rgba(58,58,46,0.05);
  border: 1px solid rgba(58,58,46,0.14);
}
.retreat-tier--past {
  color: rgba(58,58,46,0.38);
  background: transparent;
  border: 1px solid rgba(58,58,46,0.10);
}

/* --- Card Typography --- */
.retreat-card__date {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(58,58,46,0.45);
  margin-bottom: 0.6rem;
}
.retreat-card__title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--text-secondary);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
}
.retreat-card__desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.91rem;
  color: rgba(58,58,46,0.65);
  line-height: 1.8;
  font-weight: 300;
}
.retreat-card__btn {
  margin-top: 2rem;
  align-self: flex-start;
}

/* --- HERO card (Coming Soon — most visual weight) --- */
.retreat-card--hero {
  background: #ffffff;
  border: 1px solid rgba(190,197,164,0.45);
  box-shadow: 0 6px 40px rgba(58,58,46,0.08);
  position: relative;
}
.retreat-card--hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(190,197,164,0.5) 20%,
    var(--accent) 50%,
    rgba(190,197,164,0.5) 80%,
    transparent 100%
  );
  z-index: 1;
}
.retreat-card--hero .retreat-card__inner {
  grid-template-columns: 1.25fr 1fr;
  min-height: 320px;
}
.retreat-card--hero .retreat-card__inner:has(> .retreat-card__content:only-child) {
  grid-template-columns: 1fr;
  min-height: 0;
}
.retreat-card--hero .retreat-card__content {
  padding: 3.4rem 3.4rem;
}
.retreat-card--hero .retreat-card__title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--text-secondary);
}
.retreat-card--hero .retreat-img-placeholder {
  background: linear-gradient(135deg, rgba(190,197,164,0.16) 0%, rgba(190,197,164,0.06) 100%);
  min-height: 320px;
}
.retreat-card--hero .retreat-img-placeholder:first-child {
  border-right: 1px solid rgba(190,197,164,0.18);
}
/* Soft "soon" label centered in hero placeholder */
.retreat-card--hero .retreat-img-placeholder--main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(190,197,164,0.12) 0%, transparent 70%);
  z-index: 0;
}

/* --- PAST card (lowest priority) --- */
.retreat-card--past {
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(58,58,46,0.05);
}
.retreat-card--past .retreat-card__inner {
  min-height: 200px;
}
.retreat-card--past .retreat-card__content {
  padding: 2.2rem 2.8rem;
}
.retreat-card--past .retreat-card__title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(58,58,46,0.65);
}
.retreat-card--past .retreat-card__desc {
  color: rgba(58,58,46,0.48);
}
.retreat-card--past .retreat-img-placeholder {
  background: rgba(58,58,46,0.03);
  min-height: 200px;
}
.retreat-card--past .retreat-img-placeholder::after {
  opacity: 0.5;
}
.retreat-card--past:hover {
  transform: none;
  box-shadow: 0 4px 22px rgba(58,58,46,0.06);
}

/* --- Separator between cards --- */
.retreat-separator {
  height: 1px;
  background: rgba(58,58,46,0.07);
  margin: 1.6rem 0;
}

/* --- Responsive retreats --- */
@media (max-width: 768px) {
  .retreat-card__inner,
  .retreat-card--hero .retreat-card__inner { grid-template-columns: 1fr; }
  .retreat-card__images { min-height: 200px; }
  .retreat-img-placeholder,
  .retreat-card--hero .retreat-img-placeholder,
  .retreat-card--past .retreat-img-placeholder { min-height: 160px; }
  .retreat-card__content,
  .retreat-card--hero .retreat-card__content,
  .retreat-card--past .retreat-card__content { padding: 2.4rem 2.2rem; }
}
@media (max-width: 640px) {
  .retreats-section { padding: 72px 0 80px; }
  .retreat-card__images { grid-template-columns: 1fr; }
  .retreat-img-placeholder:first-child { border-right: none; border-bottom: 1px solid rgba(58,58,46,0.06); }
}
