/* ============================================
   THE BREATH SOUND CLUB — Global Stylesheet
   Luxury Wellness / Editorial Aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;1,200;1,300&display=swap');

/* --- CSS Variables --- */
:root {
  /* ============================================
     PALETTE — 5 source swatches (mood board)
     Each pairs with a defined text color (see below).
     Change these 5 hex values to re-skin the entire site.
     ============================================ */
  --color-midnight-roast: #403B31;   /* dark warm brown   — text-on: WHITE */
  --color-eucalyptus-fog: #4D6768;   /* dark teal         — text-on: WHITE */
  --color-almond-cream:   #A69586;   /* warm taupe        — text-on: WHITE */
  --color-porcelain-oat:  #D9D0C7;   /* pale warm linen   — text-on: MIDNIGHT-ROAST */
  --color-feather-cloud:  #F2F2F2;   /* soft light cloud  — text-on: MIDNIGHT-ROAST */
  --color-white:          #FFFFFF;   /* pure white        — text-on: MIDNIGHT-ROAST */

  /* RGB triplets — for use inside rgba() with opacity */
  --color-midnight-roast-rgb: 64, 59, 49;
  --color-eucalyptus-fog-rgb: 77, 103, 104;
  --color-almond-cream-rgb:   166, 149, 134;
  --color-porcelain-oat-rgb:  217, 208, 199;
  --color-feather-cloud-rgb:  242, 242, 242;
  --color-white-rgb:          255, 255, 255;
  --color-black-rgb:          0, 0, 0;

  /* --- Text pairings (use these instead of hard-coding) --- */
  --text-on-dark:  var(--color-white);             /* for midnight-roast / eucalyptus-fog / almond-cream bgs */
  --text-on-light: var(--color-midnight-roast);    /* for porcelain-oat / feather-cloud / white bgs */

  /* --- Legacy aliases (keep existing CSS working; remap to the 5 new colors) --- */
  --color-charcoal:    var(--color-midnight-roast); /* primary body text */
  --color-navy:        var(--color-eucalyptus-fog); /* dark sections (footer) */
  --color-navy-dark:   var(--color-eucalyptus-fog); /* primary buttons */
  --color-offwhite:    var(--color-feather-cloud);  /* light section bg */
  --color-cream:       var(--color-porcelain-oat);  /* very-light bg / cream text */
  --color-midnight:    var(--color-midnight-roast); /* H3 on dark bgs */
  --color-terracotta:  var(--color-almond-cream);   /* accent (nav links, decorative lines) */
  --color-blush-dark:  var(--color-almond-cream);   /* warm mid bg */
  --color-blush-light: var(--color-porcelain-oat);  /* soft warm bg */
  --color-sage:        var(--color-porcelain-oat);  /* light text on dark / muted accent */
  --color-dusty-rose:  var(--color-almond-cream);   /* hover / soft accent */

  /* ============================================
     TYPOGRAPHY
     All font families, sizes and weights live as variables here.
     Never hardcode font properties elsewhere — always reference these.
     ============================================ */

  /* --- Families --- */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Raleway', 'Helvetica Neue', sans-serif;

  /* --- Size scale (px-based, exhaustive) --- */
  --fs-08: 8px;
  --fs-11: 11px;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-26: 26px;
  --fs-28: 28px;
  --fs-30: 30px;
  --fs-32: 32px;
  --fs-36: 36px;
  --fs-38: 38px;
  --fs-40: 40px;
  --fs-42: 42px;
  --fs-44: 44px;
  --fs-48: 48px;
  --fs-52: 52px;
  --fs-55: 55px;
  --fs-60: 60px;
  --fs-64: 64px;
  --fs-56:  56px;
  --fs-108: 108px;
  --fs-120: 120px;

  /* --- Semantic aliases (legacy + readability) --- */
  --text-xs:   var(--fs-12);
  --text-sm:   var(--fs-13);
  --text-base: var(--fs-14);
  --text-md:   var(--fs-16);
  --text-lg:   var(--fs-22);
  --text-xl:   var(--fs-30);
  --text-2xl:  var(--fs-55);
  --text-3xl:  var(--fs-48);

  /* --- Weights --- */
  --weight-xlight:   200;
  --weight-light:    300;
  --weight-regular:  400;
  --weight-semibold: 600;
  --weight-bold:     700;

  --section-padding-x: 41px;
  --section-padding-y: 41px;
  --gap-sm: 16px;
  --gap-md: 28px;
  --gap-lg: 40px;

  --transition-links: opacity 0.3s linear;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: var(--color-charcoal);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-links);
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-regular);
  line-height: 0.85;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

h2 {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: var(--weight-regular);
  line-height: 1.15;
  color: var(--color-charcoal);
}

h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-regular);
  line-height: 1.17;
  color: var(--color-midnight);
}

h4 {
  font-family: var(--font-body);
  font-size: var(--fs-15);
  font-weight: var(--weight-regular);
  line-height: 1.2;
  color: var(--color-charcoal);
}

p {
  margin-bottom: 1.2em;
  line-height: 1.7;
}

.text-justify {
  text-align: justify;
}

blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--color-charcoal);
}

/* --- Decorative Rule --- */
.decorative-rule {
  width: 120px;
  height: 1px;
  background-color: var(--color-blush-light);
  border: none;
  margin-bottom: 20px;
}

.solo-offering .decorative-rule {
  height: 0.5px;
}

.decorative-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons ---
   Primary: Almond Cream bg, white text  (CTA emphasis)
   Secondary: Feather Cloud bg, Midnight-Roast text  (low-emphasis CTA) */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: var(--color-white);
  background-color: var(--color-almond-cream);
  padding: 14px 44px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-links);
  text-transform: none;
  letter-spacing: normal;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: var(--color-midnight-roast);
  background-color: var(--color-feather-cloud);
  padding: 14px 44px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-links);
  text-transform: none;
  letter-spacing: normal;
}

.btn-secondary:hover {
  opacity: 0.85;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px var(--section-padding-x);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--color-white-rgb), 0.97);
  transition: padding 0.3s ease;
}

.site-header.scrolled {
  padding: 16px var(--section-padding-x);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  position: relative;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 32px;
  flex: 1;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  color: var(--color-terracotta);
  text-transform: capitalize;
  letter-spacing: 0.05em;
  transition: var(--transition-links);
}

.logo {
  margin: 0 40px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--fs-20);
  font-weight: var(--weight-regular);
  color: var(--color-charcoal);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: var(--fs-08);
  font-weight: var(--weight-light);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-sage);
  text-align: center;
  margin-top: 4px;
}


/* Mobile menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-terracotta);
  margin: 6px 0;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-body);
  font-size: var(--fs-18);
  font-weight: var(--weight-xlight);
  color: var(--color-cream);
  text-transform: capitalize;
  letter-spacing: 0.1em;
}

/* --- Language Switch --- */
.lang-switch {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-11);
  font-weight: var(--weight-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lang-switch__link {
  color: var(--color-charcoal);
  opacity: 0.45;
  transition: opacity 0.3s linear, color 0.3s linear;
}

.lang-switch__link:hover {
  opacity: 0.85;
}

.lang-switch__link.is-active {
  opacity: 1;
  color: var(--color-terracotta);
}

.lang-switch__sep {
  opacity: 0.4;
}

@media (max-width: 900px) {
  .lang-switch {
    display: none;
  }
}

.mobile-menu__lang {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(var(--color-porcelain-oat-rgb), 0.18);
  font-family: var(--font-body);
  font-size: var(--fs-13);
  font-weight: var(--weight-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mobile-menu__lang a {
  font-size: var(--fs-13);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  color: var(--color-cream);
}

.mobile-menu__lang a.is-active {
  opacity: 1;
  color: var(--color-cream);
}

.mobile-menu__lang span {
  color: var(--color-cream);
  opacity: 0.4;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--color-white);
  padding: 0 var(--section-padding-x) var(--section-padding-x);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: var(--section-padding-x);
  right: var(--section-padding-x);
  bottom: var(--section-padding-x);
  background: linear-gradient(
    160deg,
    var(--color-eucalyptus-fog) 0%,
    var(--color-eucalyptus-fog) 25%,
    var(--color-almond-cream) 60%,
    var(--color-almond-cream) 80%,
    var(--color-porcelain-oat) 100%
  );
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  animation: heroFadeIn 1.8s ease-out both;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(var(--color-eucalyptus-fog-rgb), 0.35) 0%,
      rgba(var(--color-eucalyptus-fog-rgb), 0.15) 30%,
      rgba(var(--color-midnight-roast-rgb), 0.1) 50%,
      rgba(var(--color-midnight-roast-rgb), 0.25) 75%,
      rgba(var(--color-eucalyptus-fog-rgb), 0.55) 100%
    ),
    linear-gradient(
      to right,
      rgba(var(--color-eucalyptus-fog-rgb), 0.2) 0%,
      transparent 30%,
      transparent 70%,
      rgba(var(--color-eucalyptus-fog-rgb), 0.2) 100%
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--section-padding-x);
  text-align: center;
}

.hero-location {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  color: rgba(var(--color-white-rgb), 0.7);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: heroContentUp 1s ease-out 0.4s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: var(--weight-light);
  color: var(--color-white);
  text-align: center;
  line-height: 0.88;
  letter-spacing: 0.01em;
  animation: heroContentUp 1s ease-out 0.6s both;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-xlight);
  color: rgba(var(--color-white-rgb), 0.65);
  margin-top: 28px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroContentUp 1s ease-out 0.8s both;
}

.hero-cta {
  display: inline-block;
  margin-top: 44px;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid rgba(var(--color-white-rgb), 0.35);
  border-radius: 0;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
  animation: heroContentUp 1s ease-out 1s both;
}

.hero-cta:hover {
  background: rgba(var(--color-white-rgb), 0.12);
  border-color: rgba(var(--color-white-rgb), 0.6);
  opacity: 1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroContentUp 1s ease-out 1.3s both;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(var(--color-white-rgb), 0.5));
  animation: scrollPulse 2.5s ease-in-out infinite 2.3s;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes heroContentUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* --- Icon Navigation Row --- */
.icon-nav-section {
  background: var(--color-white);
  padding: 60px var(--section-padding-x) 20px;
  text-align: center;
}

.icon-nav-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.icon-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: default;
}

.icon-nav-item svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-terracotta);
  stroke-width: 1;
  fill: none;
}

.icon-nav-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  color: var(--color-charcoal);
  text-transform: capitalize;
}

/* --- Section Layouts --- */
.section {
  padding: var(--section-padding-y) var(--section-padding-x);
}

.section--white { background-color: var(--color-white); }
.section--offwhite { background-color: var(--color-offwhite); }
.section--blush { background-color: var(--color-blush-dark); }
.section--blush-light { background-color: var(--color-blush-light); }
.section--sage { background-color: var(--color-sage); }

/* Retreat earthy override — uses the palette's dark warm brown (Midnight Roast) */
.retreat-chapter.section--blush,
.retreat-list-section.section--blush,
.retreat-investment.section--blush {
  background-color: var(--color-midnight-roast);
}

/* Retreat content on deep forest — white text for readability */
.retreat-chapter.section--blush,
.retreat-chapter.section--blush-light,
.retreat-list-section.section--blush,
.retreat-list-section.section--blush-light,
.retreat-investment.section--blush,
.retreat-investment.section--blush-light {
  color: var(--color-white);
}

.retreat-chapter.section--blush h1,
.retreat-chapter.section--blush h2,
.retreat-chapter.section--blush h3,
.retreat-chapter.section--blush h4,
.retreat-chapter.section--blush em,
.retreat-chapter.section--blush-light h1,
.retreat-chapter.section--blush-light h2,
.retreat-chapter.section--blush-light h3,
.retreat-chapter.section--blush-light h4,
.retreat-chapter.section--blush-light em,
.retreat-investment.section--blush em,
.retreat-investment.section--blush-light em {
  color: var(--color-white);
}

.retreat-chapter.section--blush p,
.retreat-chapter.section--blush li,
.retreat-chapter.section--blush-light p,
.retreat-chapter.section--blush-light li,
.retreat-list-section.section--blush p,
.retreat-list-section.section--blush li,
.retreat-list-section.section--blush-light p,
.retreat-list-section.section--blush-light li,
.retreat-investment.section--blush p,
.retreat-investment.section--blush-light p {
  color: var(--color-white);
  opacity: 1;
  font-weight: var(--weight-regular);
}

.retreat-chapter.section--blush strong,
.retreat-chapter.section--blush-light strong,
.retreat-investment.section--blush strong,
.retreat-investment.section--blush-light strong {
  color: var(--color-white);
  font-weight: var(--weight-semibold);
}

.retreat-chapter.section--blush .retreat-bullets li::before,
.retreat-chapter.section--blush-light .retreat-bullets li::before {
  border-color: var(--color-white);
}
.section--navy { background-color: var(--color-navy); }

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  background-color: inherit;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
  background-color: inherit;
}

.two-col--40-60 {
  grid-template-columns: 2fr 3fr;
}

.two-col--60-40 {
  grid-template-columns: 3fr 2fr;
}

.col-text {
  padding: 20px 30px;
}

.col-text p {
  text-align: justify;
}

/* Staggered Image Pattern */
.staggered-images {
  position: relative;
  min-height: 500px;
  background-color: inherit;
}

.staggered-images .img-large,
.staggered-images .img-small {
  padding: 30px;
  background-color: inherit;
}

.staggered-images .img-large {
  width: 70%;
  position: relative;
  z-index: 2;
}

.staggered-images .img-small {
  width: 50%;
  position: absolute;
  bottom: 30px;
  right: -40px;
  z-index: 1;
}

.staggered-images--reverse .img-large {
  margin-left: auto;
}

.staggered-images--reverse .img-small {
  left: 0;
  right: auto;
}

/* Three Column Layout */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* Four Column Layout */
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

/* --- Benefits Section --- */
.benefits-section {
  padding: 60px var(--section-padding-x);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-title-col {
  padding: 20px 30px 20px 0;
}

.benefits-title-col h2 {
  color: var(--color-cream);
  font-size: var(--text-xl);
}

.benefit-list {
  padding: 20px 30px;
}

.benefit-list li {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: var(--color-cream);
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.benefit-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--color-cream);
}

/* --- Mission Banner --- */
.mission-banner {
  position: relative;
  padding: 80px var(--section-padding-x);
  background-color: var(--color-blush-light);
  text-align: center;
}

.mission-banner .section-inner {
  position: relative;
  z-index: 1;
}

.mission-banner h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.mission-banner p {
  color: var(--color-white);
  font-weight: var(--weight-regular);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* --- How It Works / Process --- */
.process-section {
  padding: 80px var(--section-padding-x);
  text-align: center;
}

.process-section h2 {
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 0 16px;
}

.process-step svg {
  width: 64px;
  height: 64px;
  stroke: var(--color-terracotta);
  stroke-width: 1;
  fill: none;
  margin: 0 auto 20px;
}

.process-step h4 {
  margin-bottom: 12px;
  font-weight: var(--weight-regular);
}

.process-step p {
  font-size: var(--text-sm);
  font-weight: var(--weight-light);
  text-align: center;
}

/* --- Pillars Grid --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-card {
  text-align: center;
  padding: 0 12px;
}

.pillar-card svg {
  width: 64px;
  height: 64px;
  stroke: var(--color-terracotta);
  stroke-width: 1;
  fill: none;
  margin: 0 auto 20px;
}

.pillar-card h4 {
  margin-bottom: 16px;
  font-weight: var(--weight-regular);
}

.pillar-card p {
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  text-align: center;
  margin-bottom: 12px;
}

/* --- Testimonials Carousel --- */
.testimonials-section {
  padding: 100px var(--section-padding-x);
}

.testimonials-section .decorative-rule {
  background-color: var(--color-white);
  opacity: 0.5;
}

.testimonials-heading {
  color: var(--color-white);
  font-size: var(--text-xl);
}

.carousel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

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

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.carousel-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.carousel-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: var(--weight-light);
  color: var(--color-white);
  line-height: 1.7;
  margin: 0 0 32px;
}

.carousel-author {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  color: var(--color-charcoal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.carousel-btn {
  background: none;
  border: 1px solid rgba(var(--color-midnight-roast-rgb), 0.2);
  color: var(--color-charcoal);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: var(--fs-18);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  border-color: var(--color-charcoal);
  background: rgba(var(--color-midnight-roast-rgb), 0.08);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-midnight-roast-rgb), 0.25);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.carousel-dot.active {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

/* --- Roots Divider --- */
.roots-divider {
  position: relative;
  height: 350px;
  background: var(--color-white);
  overflow: visible;
}

.roots-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 350px;
  width: auto;
  mix-blend-mode: multiply;
  opacity: 0.8;
  pointer-events: none;
}

.roots-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-blush-dark);
  mix-blend-mode: color;
  opacity: 0.8;
  pointer-events: none;
}

/* --- Classes, Events & Retreats --- */
.cer-intro {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: var(--weight-light);
  color: var(--color-charcoal);
  max-width: 500px;
  margin: 16px auto 0;
}

.schedule-table--centered {
  text-align: center;
}

.schedule-table--centered th,
.schedule-table--centered td {
  text-align: center;
}

/* --- Flyer Carousel (Events + Retreats) --- */
.flyer-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.flyer-viewport {
  overflow: hidden;
}

.flyer-track {
  display: flex;
  gap: var(--gap-lg);
  transition: transform 0.5s ease;
}

.flyer-slide {
  flex: 0 0 340px;
  text-align: center;
}

.flyer-slide--retreat {
  flex: 0 0 100%;
  display: flex;
  gap: var(--gap-lg);
  text-align: left;
  align-items: flex-start;
}

.flyer-slide--retreat .flyer-img {
  width: 380px;
  flex-shrink: 0;
}

.flyer-slide--retreat .flyer-info {
  flex: 1;
}

.flyer-img {
  width: 100%;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s linear;
}

.flyer-img:hover {
  opacity: 0.85;
}

.flyer-info {
  padding-top: 20px;
}

.flyer-info h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-regular);
  color: var(--color-charcoal);
  margin: 0 0 8px;
}

.flyer-info p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: var(--color-charcoal);
  line-height: 1.6;
  margin-bottom: 8px;
}

.flyer-meta {
  font-size: var(--text-sm) !important;
  color: var(--color-sage) !important;
  margin-bottom: 16px !important;
}

/* Prominent date + location on event cards */
.flyer-date {
  font-family: var(--font-display) !important;
  font-size: var(--text-lg) !important;
  font-weight: var(--weight-regular) !important;
  line-height: 1.2 !important;
  color: var(--color-charcoal) !important;
  margin-bottom: 4px !important;
}

.flyer-location {
  font-family: var(--font-body) !important;
  font-size: var(--text-xs) !important;
  font-weight: var(--weight-light) !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--color-terracotta) !important;
  margin-bottom: 16px !important;
}

.flyer-slide--retreat .flyer-date,
.flyer-slide--retreat .flyer-location {
  text-align: left;
}

/* Carousel Arrows */
.flyer-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(var(--color-midnight-roast-rgb), 0.2);
  color: var(--color-charcoal);
  width: 40px;
  height: 40px;
  font-size: var(--fs-18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
  z-index: 2;
}

.flyer-arrow:hover {
  border-color: var(--color-charcoal);
}

.flyer-arrow--left {
  left: 0;
}

.flyer-arrow--right {
  right: 0;
}

/* Flyer Dots */
.flyer-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.flyer-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-midnight-roast-rgb), 0.25);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.flyer-dot.active {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

/* Ghost / Subtle RSVP Button */
.btn-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-light);
  color: var(--color-terracotta);
  border: 1px solid var(--color-terracotta);
  padding: 10px 24px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.3s linear;
}

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

/* Lightbox */
.flyer-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-midnight-roast-rgb), 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.flyer-lightbox.active {
  display: flex;
}

.flyer-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.flyer-lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: var(--fs-36);
  cursor: pointer;
  transition: opacity 0.3s linear;
}

.flyer-lightbox-close:hover {
  opacity: 0.7;
}

/* --- Legacy Schedule Table (kept for other pages) --- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 900px;
  margin: 0 auto;
}

.schedule-table th,
.schedule-table td {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(var(--color-midnight-roast-rgb), 0.1);
}

.schedule-table th {
  font-weight: var(--weight-regular);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-sage);
}

/* Rich schedule table variant — flyer thumb + description */
.schedule-table--rich {
  max-width: 1100px;
}

.schedule-table--rich th,
.schedule-table--rich td {
  padding: 18px 14px;
  vertical-align: middle;
}

.schedule-table--rich .col-flyer {
  width: 88px;
  padding: 12px;
}

.schedule-table--rich .col-desc {
  font-size: var(--text-sm);
  line-height: 1.55;
  color: rgba(var(--color-midnight-roast-rgb), 0.82);
  max-width: 320px;
}

.schedule-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.3s linear, transform 0.3s ease;
}

.schedule-thumb:hover {
  opacity: 0.85;
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .schedule-table--rich {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .schedule-table--rich .col-desc {
    min-width: 220px;
  }
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-navy);
  padding: 60px var(--section-padding-x) 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.5fr;
  gap: var(--gap-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo .logo-text {
  color: var(--color-cream);
  font-size: var(--fs-18);
}

.footer-logo .logo-sub {
  color: rgba(var(--color-porcelain-oat-rgb), 0.5);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: var(--weight-xlight);
  color: var(--color-cream);
  margin-bottom: 24px;
}

.footer-nav a {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-light);
  color: var(--color-sage);
  margin-bottom: 12px;
}

.footer-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  font-weight: var(--weight-regular);
  color: var(--color-cream);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-quote-author {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-sage);
  font-style: normal;
}

.footer-form input {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-light);
  background: var(--color-white);
  border: 1px solid var(--color-porcelain-oat);
  border-radius: 0;
  padding: 12px 16px;
  color: var(--color-charcoal);
  width: 100%;
  margin-bottom: 12px;
}

.footer-form button {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-light);
  background-color: var(--color-almond-cream);
  color: var(--color-white);
  border: none;
  border-radius: 0;
  padding: 14px 28px;
  cursor: pointer;
  transition: var(--transition-links);
  width: 100%;
}

.footer-form button:hover {
  opacity: 0.85;
}

.footer-form button:disabled {
  opacity: 0.55;
  cursor: wait;
}

/* Honeypot — hidden from users, visible to spam bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Form feedback (success / error message under any subscribe form) */
.form-feedback {
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: var(--weight-light);
  letter-spacing: 0.06em;
  margin: 12px 0 0;
  min-height: 1em;
  line-height: 1.5;
  transition: color 0.2s linear;
}

.form-feedback[data-state="success"] {
  color: var(--color-almond-cream);
}

.form-feedback[data-state="error"] {
  color: #d97a6c;  /* warm error tone — only place a non-palette color is allowed */
}

/* Newsletter (Connect/Contacto page) variant of the same feedback line */
.newsletter-featured .form-feedback {
  text-align: center;
  margin-top: 14px;
}

.newsletter-featured button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(var(--color-porcelain-oat-rgb), 0.2);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-sage);
  font-weight: var(--weight-light);
}

/* --- Inner Page: Page Title Banner --- */
.page-title-banner {
  width: 100%;
  background-color: var(--color-offwhite);
  padding: 50px var(--section-padding-x);
  text-align: center;
}

.page-title-banner h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-regular);
  color: var(--color-charcoal);
  line-height: 0.9;
}

/* --- Offering Cards --- */
/* --- Offerings Submenu CTA --- */
.icon-nav-cta {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  color: var(--color-dusty-rose);
  margin-top: 6px;
  letter-spacing: 0.05em;
  transition: opacity 0.3s linear;
}

/* --- Solo Offering Grid (1:1 sections) --- */
.solo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.solo-card {
  display: flex;
  flex-direction: column;
}

.solo-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.solo-card-body {
  padding: 24px 0 0;
}

.solo-card-body h3 {
  margin-bottom: 12px;
}

.solo-card-body p {
  margin-bottom: 16px;
}

.solo-card-body .btn-ghost {
  margin-top: 4px;
}

/* --- Section with background image --- */
.section--bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.section--bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-white-rgb), 0.85);
  pointer-events: none;
}

.section--bg-image > * {
  position: relative;
  z-index: 1;
}

.offering-block {
  padding: 80px var(--section-padding-x);
}

.offering-block:nth-child(even) {
  background-color: var(--color-offwhite);
}

.offering-inner {
  max-width: 1400px;
  margin: 0 auto;
  background-color: inherit;
}

.offering-inner .two-col {
  align-items: start;
}

.offering-overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

/* --- Accordion (FAQ) --- */
.accordion-item {
  border-bottom: 1px solid rgba(var(--color-midnight-roast-rgb), 0.2);
  padding: 16px 0;
  cursor: pointer;
}

.accordion-header {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: var(--color-charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-toggle {
  font-size: var(--fs-18);
  font-weight: var(--weight-light);
  color: var(--color-charcoal);
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content-inner {
  padding-top: 12px;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

/* --- Session / Science Section --- */
.wave-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.wave-block {
  padding: 32px 0;
  border-bottom: 1px solid rgba(var(--color-midnight-roast-rgb), 0.1);
}

.wave-block:last-child {
  border-bottom: none;
}

.wave-label {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-regular);
  color: var(--color-charcoal);
  margin-bottom: 8px;
}

.wave-meta {
  font-size: var(--text-xs);
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Overline contrast on blush backgrounds --- */
.section--blush .offering-overline,
.section--blush-light .offering-overline,
.offering-block.section--blush-light .offering-overline,
.offering-block.section--blush .offering-overline {
  color: var(--color-navy-dark);
}

/* --- Trainings Section --- */
.trainings-section {
  max-width: 960px;
  margin: 0 auto;
}

.trainings-header {
  text-align: center;
  margin-bottom: 48px;
}

.trainings-header h2 {
  color: var(--text-on-light);
}

.trainings-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-md);
  color: var(--text-on-light);
  opacity: 0.7;
  margin-top: 12px;
}

.trainings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}

.training-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-template-rows: auto auto;
  gap: 0 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(var(--color-midnight-roast-rgb), 0.18);
}

.training-year {
  grid-row: 1 / 3;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  color: var(--text-on-light);
  letter-spacing: 0.05em;
  padding-top: 2px;
  opacity: 0.55;
}

.training-name {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  color: var(--text-on-light);
  line-height: 1.4;
}

.training-place {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  color: var(--text-on-light);
  opacity: 0.6;
  line-height: 1.4;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .two-col,
  .two-col--40-60,
  .two-col--60-40 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .flyer-slide--retreat {
    flex-direction: column;
  }

  .flyer-slide--retreat .flyer-img {
    width: 100%;
    max-width: 380px;
  }

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

  .carousel-quote {
    font-size: var(--text-lg);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }


  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  /* Once .two-col stacks (single column), the desktop overlap pattern
     stops making sense — img-small absolutely-positioned at bottom: 30px
     right: -40px bleeds out of its container and overlaps the heading
     above. Switch to a clean stacked layout for tablet + mobile. */
  .staggered-images {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .staggered-images .img-large,
  .staggered-images .img-small {
    position: static;
    width: 100%;
    padding: 0;
    bottom: auto;
    right: auto;
    left: auto;
    top: auto;
  }

  .staggered-images .img-small {
    width: 85%;
    align-self: flex-end;
  }

  .staggered-images--reverse .img-small {
    align-self: flex-start;
  }

  .solo-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  h1 {
    font-size: var(--fs-42);
  }

  .trainings-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-x: 24px;
  }


  .nav-left,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 0;
  }

  .logo {
    margin: 0;
  }

  .hero-title {
    font-size: var(--fs-42);
  }

  .hero-location {
    margin-bottom: 20px;
    letter-spacing: 0.25em;
  }

  .hero-cta {
    margin-top: 32px;
    padding: 12px 32px;
  }

  .hero-scroll-hint {
    bottom: 24px;
  }

  .hero-scroll-line {
    height: 36px;
  }

  .icon-nav-row {
    gap: 24px;
  }

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

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

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

  .schedule-table th:first-child,
  .schedule-table td:first-child {
    min-width: 120px;
  }

  h1 {
    font-size: var(--fs-36);
  }

  h2 {
    font-size: var(--fs-24);
  }

  /* On phones, the two-image staggered pattern doesn't earn its space —
     hide it entirely and let the headline + body text carry the section. */
  .staggered-images {
    display: none;
  }

  /* Cap content images so portrait photos in a .two-col cell don't fill
     the whole viewport. Aspect ratio preserved; image centers horizontally
     when the height cap kicks in and width shrinks below 100%. */
  .two-col img {
    max-height: 60vh;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   RETREAT FEATURE — "Between Two Volcanoes"
   Editorial long-form layout for high-consideration offering.
   ============================================ */
.retreat-feature {
  padding: 100px var(--section-padding-x) 80px;
}

.retreat-hero {
  max-width: 780px;
  margin: 0 auto 80px;
  text-align: center;
}

.retreat-hero .decorative-rule {
  margin-left: auto;
  margin-right: auto;
}

.retreat-overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 28px;
}

.retreat-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: var(--weight-light);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--color-charcoal);
  margin-bottom: 22px;
}

.retreat-title em {
  font-style: italic;
  font-weight: var(--weight-light);
}

.retreat-dates {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: var(--weight-regular);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin: 16px 0 10px;
}

.retreat-location {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  opacity: 0.7;
  margin-bottom: 32px;
}

.retreat-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: var(--weight-light);
  line-height: 1.55;
  color: var(--color-charcoal);
  max-width: 640px;
  margin: 28px auto 0;
  text-align: center;
}

/* Cinematic full-width hero image */
.retreat-cinematic {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 100px;
  height: 60vh;
  min-height: 440px;
  max-height: 640px;
  overflow: hidden;
  background-color: var(--color-sage);
}

.retreat-cinematic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pillars — 4-column editorial grid */
.retreat-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
  max-width: 1400px;
  margin: 0 auto 100px;
}

.pillar {
  display: flex;
  flex-direction: column;
}

.pillar-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 24px;
  background-color: var(--color-sage);
}

.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.pillar:hover .pillar-image img {
  opacity: 0.88;
}

.pillar-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-md);
  font-weight: var(--weight-light);
  color: var(--color-terracotta);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.pillar h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-regular);
  line-height: 1.2;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}

.pillar p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  line-height: 1.7;
  color: var(--color-charcoal);
  text-align: justify;
  margin-bottom: 0;
}

/* Centered pull quote — poetic interlude */
.retreat-quote-section {
  padding: 40px var(--section-padding-x) 80px;
  text-align: center;
}

.retreat-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: var(--weight-light);
  line-height: 1.45;
  color: var(--color-navy-dark);
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.retreat-quote-rule {
  width: 60px;
  height: 1px;
  background-color: var(--color-blush-light);
  border: none;
  margin: 32px auto;
}

/* The Land — heading block */
.retreat-block-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.retreat-block-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: var(--weight-light);
  line-height: 1;
  color: var(--color-charcoal);
  margin: 14px 0 24px;
}

.retreat-block-heading p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: var(--weight-light);
  line-height: 1.8;
  color: var(--color-charcoal);
  text-align: center;
}

/* Finca gallery — asymmetric editorial grid, 7 images */
.finca-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto 100px;
}

.finca-gallery figure {
  margin: 0;
  overflow: hidden;
  background-color: var(--color-sage);
  position: relative;
}

.finca-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.finca-gallery figure:hover img {
  opacity: 0.85;
}

/* Image placement — 7 cells, editorial rhythm */
.finca-gallery .g-1 { grid-column: span 3; grid-row: span 2; }
.finca-gallery .g-2 { grid-column: span 3; grid-row: span 1; }
.finca-gallery .g-3 { grid-column: span 2; grid-row: span 1; }
.finca-gallery .g-4 { grid-column: span 1; grid-row: span 1; }
.finca-gallery .g-5 { grid-column: span 2; grid-row: span 2; }
.finca-gallery .g-6 { grid-column: span 2; grid-row: span 1; }
.finca-gallery .g-7 { grid-column: span 2; grid-row: span 1; }

/* Included + CTA block */
.retreat-included {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 56px;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-blush-light);
  border-bottom: 1px solid var(--color-blush-light);
}

.retreat-included .decorative-rule {
  margin-bottom: 16px;
}

.retreat-included h3 {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: var(--weight-regular);
  line-height: 1.2;
  color: var(--color-charcoal);
  margin-bottom: 28px;
}

.retreat-includes-list li {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  line-height: 1.7;
  color: var(--color-charcoal);
  padding: 13px 0 13px 22px;
  position: relative;
  border-bottom: 1px solid var(--color-offwhite);
}

.retreat-includes-list li:last-child {
  border-bottom: none;
}

.retreat-includes-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 13px;
  color: var(--color-terracotta);
  font-weight: var(--weight-light);
}

.retreat-cta-block {
  text-align: center;
}

.retreat-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  font-weight: var(--weight-light);
  line-height: 1.5;
  color: var(--color-charcoal);
  margin-bottom: 32px;
  text-align: center;
}

.retreat-cta-meta {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  opacity: 0.6;
  margin-top: 20px;
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
  .retreat-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 32px;
  }

  .finca-gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }

  .finca-gallery .g-1 { grid-column: span 2; grid-row: span 2; }
  .finca-gallery .g-2 { grid-column: span 2; grid-row: span 1; }
  .finca-gallery .g-3 { grid-column: span 2; grid-row: span 1; }
  .finca-gallery .g-4 { grid-column: span 2; grid-row: span 1; }
  .finca-gallery .g-5 { grid-column: span 2; grid-row: span 2; }
  .finca-gallery .g-6 { grid-column: span 2; grid-row: span 1; }
  .finca-gallery .g-7 { grid-column: span 4; grid-row: span 1; }

  .retreat-included {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 32px;
  }
}

/* Responsive — Mobile */
@media (max-width: 640px) {
  .retreat-feature {
    padding: 72px var(--section-padding-x) 56px;
  }

  .retreat-hero {
    margin-bottom: 56px;
  }

  .retreat-cinematic {
    margin-bottom: 64px;
    height: 48vh;
    min-height: 320px;
  }

  .retreat-pillars {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 64px;
  }

  .pillar-image {
    aspect-ratio: 4 / 5;
  }

  .retreat-quote-section {
    padding: 24px var(--section-padding-x) 56px;
  }

  .finca-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    margin-bottom: 64px;
  }

  .finca-gallery .g-1,
  .finca-gallery .g-2,
  .finca-gallery .g-3,
  .finca-gallery .g-4,
  .finca-gallery .g-5,
  .finca-gallery .g-6,
  .finca-gallery .g-7 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .finca-gallery .g-1 {
    grid-row: span 2;
  }

  .retreat-included {
    padding: 48px 24px;
  }
}

/* ============================================
   Events page — hero, navy banner, grid, retreat announce
   ============================================ */

/* --- Events Hero --- */
.events-hero {
  padding: 140px var(--section-padding-x) 100px;
  background: var(--color-white);
}

.events-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.events-hero__card {
  background: var(--color-offwhite);
  padding: 64px 56px;
  max-width: 540px;
  justify-self: start;
  position: relative;
  z-index: 2;
  margin-right: -60px;
}

.events-hero__overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin: 0 0 24px;
}

.events-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-regular);
  line-height: 1;
  color: var(--color-charcoal);
  margin: 0 0 28px;
}

.events-hero__title em {
  font-style: italic;
  color: var(--color-terracotta);
}

.events-hero__lede {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.7;
  font-weight: var(--weight-light);
  color: var(--color-charcoal);
  margin: 0;
}

.events-hero__media {
  position: relative;
  min-height: 560px;
}

.events-hero__img {
  position: absolute;
  object-fit: cover;
  display: block;
}

.events-hero__img--main {
  width: 100%;
  height: 400px;
  top: 0;
  right: 0;
}

.events-hero__img--accent {
  width: 62%;
  height: 360px;
  right: -4%;
  bottom: 0;
  border-top: 12px solid var(--color-white);
  border-left: 12px solid var(--color-white);
}

/* --- Events Banner (navy) --- */
.events-banner {
  background: var(--color-navy);
  padding: 90px var(--section-padding-x);
  text-align: center;
  color: var(--color-cream);
}

.events-banner__inner {
  max-width: 820px;
  margin: 0 auto;
}

.events-banner__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-52);
  font-weight: var(--weight-light);
  color: var(--color-cream);
  margin: 0 0 24px;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.events-banner__desc {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.75;
  font-weight: var(--weight-xlight);
  color: var(--color-cream);
  margin: 0;
  opacity: 0.92;
}

/* --- Events Grid --- */
.events-grid-section {
  padding: 80px var(--section-padding-x) 100px;
}

/* --- Monthly poster — downloadable / shareable summary --- */
.month-poster {
  padding: 96px var(--section-padding-x);
  background: var(--color-feather-cloud);
}

.month-poster__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.month-poster__media {
  position: relative;
}

.month-poster__media img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 30px 80px rgba(var(--color-midnight-roast-rgb), 0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.month-poster__media a:hover img {
  transform: translateY(-4px);
  box-shadow: 0 36px 90px rgba(var(--color-midnight-roast-rgb), 0.24);
}

.month-poster__copy {
  max-width: 460px;
}

.month-poster__overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin: 0 0 18px;
}

.month-poster__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--weight-regular);
  font-size: var(--fs-44);
  line-height: 1.05;
  color: var(--color-charcoal);
  margin: 0 0 24px;
}

.month-poster__desc {
  font-family: var(--font-body);
  font-size: var(--fs-16);
  font-weight: var(--weight-light);
  line-height: 1.7;
  color: var(--color-charcoal);
  margin: 0 0 32px;
}

.month-poster__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.month-poster__feedback {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: var(--weight-regular);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.month-poster__feedback.is-visible {
  opacity: 1;
}

@media (max-width: 820px) {
  .month-poster {
    padding: 64px var(--section-padding-x);
  }
  .month-poster__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .month-poster__copy {
    max-width: 100%;
    text-align: center;
  }
  .month-poster__media {
    max-width: 460px;
    margin: 0 auto;
  }
  .month-poster__actions {
    justify-content: center;
  }
  .month-poster__title {
    font-size: var(--fs-36);
  }
}

@media (max-width: 480px) {
  .month-poster__title {
    font-size: var(--fs-28);
  }
}

.events-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 44px;
}

.event-card {
  display: flex;
  flex-direction: column;
}

.event-card__flyer {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--color-offwhite);
}

.event-card__flyer .flyer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.3s linear;
}

.event-card__flyer .flyer-img:hover {
  opacity: 0.9;
}

.event-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-white);
  padding: 14px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 72px;
}

.event-card__badge-top {
  font-family: var(--font-body);
  font-size: var(--fs-11);
  font-weight: var(--weight-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.event-card__badge-bottom {
  font-family: var(--font-display);
  font-size: var(--fs-28);
  font-weight: var(--weight-regular);
  line-height: 1;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

.event-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card__meta {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-light);
  color: var(--color-terracotta);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.event-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-26);
  font-weight: var(--weight-regular);
  line-height: 1.15;
  color: var(--color-charcoal);
  margin: 0 0 14px;
}

.event-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-light);
  line-height: 1.65;
  color: var(--color-charcoal);
  margin: 0 0 20px;
  text-align: justify;
}

.event-card__venue {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-light);
  line-height: 1.6;
  color: var(--color-charcoal);
  margin: 0 0 24px;
}

.event-card__venue strong {
  font-weight: var(--weight-regular);
}

.event-card__rsvp {
  align-self: flex-start;
  margin-top: auto;
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  padding: 12px 28px;
  text-transform: uppercase;
}

/* --- Retreat Announcement --- */
.retreat-announce {
  padding: 100px var(--section-padding-x) 120px;
  background: var(--color-white);
}

.retreat-announce__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.retreat-announce__media {
  position: relative;
  min-height: 560px;
  order: 1;
}

.retreat-announce__img {
  position: absolute;
  object-fit: cover;
  display: block;
}

.retreat-announce__img--main {
  width: 92%;
  height: 420px;
  top: 0;
  left: 0;
}

.retreat-announce__img--accent {
  width: 58%;
  height: 380px;
  bottom: 0;
  right: 0;
  border-top: 12px solid var(--color-white);
  border-left: 12px solid var(--color-white);
}

.retreat-announce__card {
  background: var(--color-offwhite);
  padding: 64px 56px;
  max-width: 540px;
  justify-self: end;
  position: relative;
  z-index: 2;
  order: 2;
  margin-left: -60px;
}

.retreat-announce__overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin: 0 0 24px;
}

.retreat-announce__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-regular);
  line-height: 1;
  color: var(--color-charcoal);
  margin: 0 0 28px;
}

.retreat-announce__title em {
  font-style: italic;
  color: var(--color-terracotta);
}

.retreat-announce__title--single {
  font-size: var(--fs-38);
  letter-spacing: 0.04em;
  line-height: 1.15;
  white-space: nowrap;
}

.retreat-announce__meta {
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: var(--weight-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  opacity: 0.75;
  margin: -16px 0 28px;
  line-height: 1.6;
}

.retreat-announce__meta-sep {
  display: inline-block;
  margin: 0 10px;
  opacity: 0.6;
}

.retreat-announce__desc {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.7;
  font-weight: var(--weight-light);
  color: var(--color-charcoal);
  margin: 0 0 36px;
}

.retreat-announce__desc + .retreat-announce__desc {
  margin-top: -18px;
}

/* --- Responsive --- */
@media (max-width: 1080px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .events-hero {
    padding: 120px var(--section-padding-x) 60px;
  }

  .events-hero__inner,
  .retreat-announce__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .events-hero__card,
  .retreat-announce__card {
    max-width: 100%;
    padding: 48px 36px;
    margin: 0;
    justify-self: stretch;
  }

  .events-hero__media,
  .retreat-announce__media {
    min-height: 440px;
  }

  .events-hero__img--main,
  .retreat-announce__img--main {
    height: 320px;
  }

  .events-hero__img--accent,
  .retreat-announce__img--accent {
    height: 280px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .events-banner {
    padding: 64px var(--section-padding-x);
  }

  .events-banner__title {
    font-size: var(--fs-38);
  }

  .events-hero__title,
  .retreat-announce__title {
    font-size: var(--fs-40);
  }

  .retreat-announce__title--single {
    font-size: var(--fs-26);
    white-space: normal;
  }

  .retreat-announce {
    padding: 72px var(--section-padding-x);
  }

  /* On mobile, flip the retreat announce so text is above images */
  .retreat-announce__media { order: 2; }
  .retreat-announce__card { order: 1; }
}

/* ============================================
   Retreat Story — long-form narrative page
   PDF-inspired editorial storytelling
   ============================================ */

/* Palette extensions (scoped to story) */
.retreat-story-root,
.retreat-chapter,
.retreat-list-section,
.retreat-pullquote,
.retreat-guide,
.retreat-venue,
.retreat-land,
.retreat-investment {
  --color-earth: var(--color-offwhite);
  --color-earth-ink: var(--color-charcoal);
  --color-earth-body: var(--color-charcoal);
  --color-gold: var(--color-terracotta);
}

/* Earthy light section variant — warm off-white, palette-aligned */
.section--earth {
  background-color: var(--color-offwhite);
  color: var(--color-charcoal);
}

.section--earth h1,
.section--earth h2,
.section--earth h3,
.section--earth h4,
.section--earth em {
  color: var(--color-charcoal);
}

.section--earth p {
  color: var(--color-charcoal);
  opacity: 0.88;
}

.section--earth strong {
  color: var(--color-charcoal);
  opacity: 1;
  font-weight: var(--weight-regular);
}

/* Hand-drawn gold oval accent (decorative) */
.oval-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115%;
  height: 155%;
  pointer-events: none;
  z-index: 0;
}
.oval-accent path {
  fill: none;
  stroke: var(--color-terracotta);
  stroke-width: 1.2;
  opacity: 0.9;
}
.oval-accent--small {
  width: 150%;
  height: 180%;
}

.with-oval {
  position: relative;
  display: inline-block;
  padding: 0 14px;
  z-index: 1;
}
.with-oval > span {
  position: relative;
  z-index: 1;
  display: inline-block;
}

/* ═══════════ 1. COVER — full-bleed hero ═══════════ */
.retreat-cover {
  position: relative;
  height: 100vh;
  min-height: 760px;
  width: 100%;
  overflow: hidden;
  color: white;
  padding: 0;
}

.retreat-cover__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}

.retreat-cover__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--color-midnight-roast-rgb),0.25) 0%, rgba(var(--color-midnight-roast-rgb),0.45) 100%);
}

.retreat-cover__content {
  position: absolute;
  left: 72px;
  top: 140px;
  right: 72px;
  max-width: 820px;
  z-index: 2;
}

.retreat-cover__overline {
  font-family: var(--font-body);
  font-size: var(--fs-13);
  font-weight: var(--weight-light);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-porcelain-oat);
  margin: 0 0 36px;
  opacity: 0.92;
}

.retreat-cover__title {
  font-family: var(--font-display);
  font-size: var(--fs-108);
  font-weight: var(--weight-regular);
  line-height: 0.95;
  color: white;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.retreat-cover__title em {
  font-style: italic;
  color: white;
  text-transform: none;
  letter-spacing: -0.005em;
}

.retreat-cover__title-row {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.retreat-cover__title .place {
  font-size: var(--fs-42);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.01em;
  padding: 6px 36px;
  white-space: nowrap;
}

.retreat-cover__meta {
  margin: 44px 0 0;
  color: white;
}

.retreat-cover__meta-date,
.retreat-cover__meta-place {
  font-family: var(--font-display);
  font-size: var(--fs-42);
  font-style: italic;
  font-weight: var(--weight-regular);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
  color: white;
}

.retreat-cover__meta-place {
  margin-bottom: 0;
  opacity: 0.95;
}

.retreat-cover__meta-time {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.42em;
  font-weight: var(--weight-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
  padding: 0 6px;
  opacity: 0.85;
}

/* ═══════════ 2. DATES — landscape + lede + badge ═══════════ */
.retreat-dates {
  position: relative;
  min-height: 60vh;
  padding: 140px 0 140px;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.retreat-dates__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(var(--color-midnight-roast-rgb),0.62) 0%, rgba(var(--color-midnight-roast-rgb),0.42) 55%, rgba(var(--color-midnight-roast-rgb),0.30) 100%);
  z-index: 0;
}

.retreat-dates__copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.retreat-dates__lede {
  font-family: var(--font-body);
  font-size: var(--fs-26);
  font-weight: var(--weight-regular);
  line-height: 1.55;
  color: white;
  margin: 0;
  text-shadow: 0 2px 18px rgba(var(--color-black-rgb),0.45);
  letter-spacing: 0.01em;
  text-transform: none;
}

.retreat-dates__badge {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-22);
  font-weight: var(--weight-light);
  color: white;
  line-height: 1.35;
  padding: 18px 40px;
}

/* ═══════════ 3-5 & 8-9. CHAPTER — book-spread body ═══════════ */
.retreat-chapter {
  padding: 110px 0;
  position: relative;
}

.retreat-chapter__frame {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 80px;
  position: relative;
  border-left: 1px solid rgba(var(--color-almond-cream-rgb), 0.5);
  border-right: 1px solid rgba(var(--color-almond-cream-rgb), 0.5);
}

.section--earth .retreat-chapter__frame {
  border-color: rgba(var(--color-almond-cream-rgb), 0.5);
}

.section--blush .retreat-chapter__frame,
.section--blush-light .retreat-chapter__frame {
  border-color: rgba(var(--color-white-rgb), 0.4);
}

.retreat-chapter__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--weight-regular);
  font-size: var(--fs-60);
  line-height: 1.05;
  text-align: center;
  margin: 0 0 56px;
  letter-spacing: -0.005em;
}

.retreat-chapter__title em {
  font-style: italic;
}

.retreat-chapter__title--left {
  text-align: left;
}

.retreat-chapter__title--secondary {
  margin-top: 80px;
}

.with-oval-title .oval-title-top {
  position: relative;
  display: inline-block;
  padding: 8px 32px;
  font-size: var(--fs-28);
  font-style: normal;
  font-family: var(--font-display);
}

.retreat-chapter__subtitle {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: var(--fs-30);
  line-height: 1.1;
  margin: 0 0 28px;
}

.retreat-chapter__subtitle em {
  font-style: italic;
}

.retreat-chapter__body p {
  font-family: var(--font-body);
  font-size: var(--fs-15);
  font-weight: var(--weight-light);
  line-height: 1.8;
  text-align: justify;
  margin: 0 0 22px;
}

.retreat-chapter__body strong {
  font-weight: var(--weight-semibold);
}

.retreat-chapter__note {
  font-family: var(--font-body);
  font-size: var(--fs-14);
  text-align: center;
  font-style: italic;
  margin: 32px 0 0;
  opacity: 0.85;
}

.retreat-chapter__photo {
  max-width: 820px;
  margin: 72px auto 0;
  padding: 0 40px;
}

.retreat-chapter__photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Two-column (includes/excludes) variant */
.retreat-chapter__frame--two-col {
  max-width: 920px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  padding: 40px 60px;
}

/* ═══════════ 5. BREATH — wordless full-bleed photo (visual pacing) ═══════════ */
.retreat-breath {
  width: 100%;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .retreat-breath { min-height: 50vh; }
}

/* ═══════════ 6. LIST SECTION — flat surface, palette-driven ═══════════ */
.retreat-list-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.retreat-list-section__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 60px;
}

.retreat-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.retreat-bullets li {
  padding-left: 36px;
  margin-bottom: 24px;
  position: relative;
  font-family: var(--font-body);
  font-size: var(--fs-15);
  line-height: 1.7;
  font-weight: var(--weight-light);
}

.retreat-bullets li strong {
  font-weight: var(--weight-bold);
}

.retreat-bullets li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1.2px solid var(--color-terracotta);
  border-radius: 50%;
}

.retreat-bullets--on-earth li::before {
  border-color: var(--color-terracotta);
}

/* Program block — narrative + day labels + activity bullets */
.retreat-program {
  font-family: var(--font-body);
  color: var(--color-charcoal);
}

.retreat-program__intro {
  font-size: var(--fs-16);
  font-weight: var(--weight-light);
  line-height: 1.75;
  margin: 0 0 22px;
}

.retreat-program__day {
  margin: 40px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(var(--color-almond-cream-rgb), 0.35);
  border-bottom: 1px solid rgba(var(--color-almond-cream-rgb), 0.35);
}

.retreat-program__day-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-28);
  font-weight: var(--weight-regular);
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--color-charcoal);
}

.retreat-program__day-body {
  font-size: var(--fs-15);
  font-weight: var(--weight-light);
  line-height: 1.7;
  margin: 0;
}

.retreat-program__activities {
  margin: 36px 0 8px;
}

.retreat-program__activities-label {
  font-family: var(--font-body);
  font-size: var(--fs-13);
  font-weight: var(--weight-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--color-terracotta);
}

/* ═══════════ 7. PULL QUOTE ═══════════ */
.retreat-pullquote {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 140px 60px;
}

.retreat-pullquote::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(var(--color-midnight-roast-rgb), 0.3);
  z-index: 0;
}

.retreat-pullquote__text {
  position: relative;
  z-index: 1;
  max-width: 820px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--weight-regular);
  font-size: var(--fs-42);
  line-height: 1.25;
  margin: 0;
  color: white;
  text-align: left;
}

.retreat-question {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 140px 60px;
  text-align: center;
}

.retreat-question__text {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--weight-regular);
  font-size: var(--fs-64);
  line-height: 1.18;
  color: white;
  letter-spacing: -0.005em;
}

@media (max-width: 900px) {
  .retreat-question { padding: 80px 28px; min-height: 50vh; }
  .retreat-question__text { font-size: var(--fs-36); }
}

/* ═══════════ 11-12. FACILITATORS ═══════════ */
.retreat-guide {
  padding: 120px 0;
}

.retreat-guide__photo {
  max-width: 920px;
  margin: 0 auto 64px;
  padding: 0 40px;
}

.retreat-guide__photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.retreat-guide__text {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.retreat-guide__overline {
  font-family: var(--font-display);
  font-size: var(--fs-22);
  font-style: italic;
  font-weight: var(--weight-light);
  margin: 0 0 8px;
  color: var(--color-charcoal);
  opacity: 0.75;
}

.retreat-guide__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--weight-regular);
  font-size: var(--fs-56);
  line-height: 1;
  margin: 0 0 40px;
  color: var(--color-charcoal);
}

.retreat-guide__body {
  text-align: justify;
}

.retreat-guide__body p {
  font-family: var(--font-body);
  font-size: var(--fs-15);
  line-height: 1.8;
  font-weight: var(--weight-light);
  margin: 0 0 20px;
  color: var(--color-charcoal);
}

/* ═══════════ 14. EL LUGAR cover ═══════════ */
.retreat-lugar-cover {
  position: relative;
  min-height: 90vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
}

.retreat-lugar-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(var(--color-midnight-roast-rgb), 0.2);
  z-index: 0;
}

.retreat-lugar-cover__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.retreat-lugar-cover__title {
  font-family: var(--font-display);
  font-size: var(--fs-120);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 28px;
  text-transform: uppercase;
  font-weight: var(--weight-regular);
  color: white;
}

.retreat-lugar-cover__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-28);
  font-weight: var(--weight-regular);
  color: white;
  margin: 0;
  padding: 16px 44px;
  display: inline-block;
  position: relative;
}

/* ═══════════ 15. VENUE — Finca ═══════════ */
.retreat-venue {
  padding: 120px 0;
}

.retreat-venue__text {
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 40px;
  text-align: center;
}

.retreat-venue__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--weight-regular);
  font-size: var(--fs-60);
  line-height: 1.05;
  margin: 0 0 40px;
  color: var(--color-charcoal);
}

.retreat-venue__title em {
  font-style: italic;
}

.retreat-venue__body {
  font-family: var(--font-body);
  font-size: var(--fs-15);
  line-height: 1.8;
  font-weight: var(--weight-light);
  text-align: justify;
  color: var(--color-charcoal);
}

.retreat-venue__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.retreat-venue__grid figure {
  margin: 0;
}

.retreat-venue__grid img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* --- Finca carousel --- */
.retreat-venue__carousel {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.retreat-venue__carousel-viewport {
  position: relative;
}

.retreat-venue__grid--slide {
  display: none;
}

.retreat-venue__grid--slide.active {
  display: grid;
}

.retreat-venue__carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.retreat-venue__carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(var(--color-midnight-roast-rgb), 0.4);
  border-radius: 50%;
  background: transparent;
  color: var(--color-charcoal);
  font-size: var(--fs-16);
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s linear, border-color 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

.retreat-venue__carousel-btn:hover {
  opacity: 0.65;
  border-color: var(--color-terracotta);
}

.retreat-venue__carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.retreat-venue__carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-midnight-roast-rgb), 0.45);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s linear, border-color 0.3s linear;
}

.retreat-venue__carousel-dot.active {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

/* ═══════════ 16. THE LAND ═══════════ */
.retreat-land {
  padding: 120px 0 0;
}

.retreat-land__text {
  max-width: 720px;
  margin: 0 auto 88px;
  padding: 0 40px;
  text-align: center;
}

.retreat-land__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--weight-regular);
  font-size: var(--fs-60);
  line-height: 1.05;
  margin: 0 0 40px;
  color: var(--color-charcoal);
}

.retreat-land__body {
  font-family: var(--font-body);
  font-size: var(--fs-15);
  line-height: 1.8;
  font-weight: var(--weight-light);
  text-align: justify;
  color: var(--color-charcoal);
}

.retreat-land__photo {
  width: 100%;
  height: 78vh;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

/* ═══════════ 17. INVESTMENT ═══════════ */
.retreat-investment {
  padding: 140px 40px 160px;
  text-align: center;
}

.retreat-investment__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--weight-regular);
  font-size: var(--fs-60);
  line-height: 1.05;
  margin: 0 0 28px;
}

.retreat-investment__intro {
  font-family: var(--font-body);
  font-size: var(--fs-15);
  font-weight: var(--weight-regular);
  line-height: 1.7;
  margin: 0 auto 72px;
  max-width: 560px;
}

.retreat-tier {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.retreat-tier__name {
  font-family: var(--font-body);
  font-size: var(--fs-14);
  font-weight: var(--weight-regular);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 14px;
  opacity: 0.85;
}

.retreat-tier__subname {
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: var(--weight-light);
  font-style: italic;
  line-height: 1.3;
  margin: -8px 0 14px;
  opacity: 0.7;
}

.retreat-tier__price {
  font-family: var(--font-display);
  font-size: var(--fs-38);
  font-weight: var(--weight-regular);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 6px;
}

.retreat-tier__terms {
  font-family: var(--font-body);
  font-size: var(--fs-12);
  font-weight: var(--weight-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
  opacity: 0.7;
}

.retreat-tier-divider {
  width: 12px;
  height: 12px;
  border: 1px solid var(--color-terracotta);
  border-radius: 50%;
  margin: 44px auto;
  background: transparent;
}

.retreat-investment__cta {
  display: inline-block;
  margin-top: 56px;
  padding: 22px 52px;
  border: 1px solid var(--color-terracotta);
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: var(--fs-14);
  font-weight: var(--weight-regular);
  letter-spacing: 0.02em;
  color: inherit;
  transition: opacity 0.3s linear;
}

.retreat-investment__cta:hover { opacity: 0.8; }

.retreat-investment__includes {
  max-width: 580px;
  margin: 80px auto 0;
  padding: 48px 0 0;
  border-top: 1px solid rgba(var(--color-almond-cream-rgb), 0.35);
  text-align: left;
}

.retreat-investment__includes-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--weight-regular);
  font-size: var(--fs-32);
  line-height: 1.15;
  text-align: center;
  margin: 0 0 32px;
}

.retreat-investment__includes-title em {
  font-style: italic;
}

.retreat-investment__includes .retreat-bullets li {
  font-size: var(--fs-15);
  line-height: 1.7;
  font-weight: var(--weight-light);
  margin-bottom: 14px;
}

/* ═══════════ Running footer ═══════════ */
.retreat-running {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-14);
  opacity: 0.7;
  border-top: 1px solid rgba(var(--color-almond-cream-rgb), 0.3);
}

.retreat-running::before,
.retreat-running::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background: var(--color-terracotta);
  opacity: 0.6;
}

/* ═══════════ Responsive ═══════════ */
@media (max-width: 900px) {
  .retreat-cover__title { font-size: var(--fs-64); }
  .retreat-cover__title .place { font-size: var(--fs-30); padding: 4px 20px; }
  .retreat-cover__content { left: 32px; right: 32px; top: 120px; }
  .retreat-cover__meta { margin-top: 28px; }
  .retreat-cover__meta-date,
  .retreat-cover__meta-place { font-size: var(--fs-26); margin-bottom: 8px; }

  .retreat-chapter__frame { padding: 20px 28px; }
  .retreat-chapter__title { font-size: var(--fs-42); }
  .retreat-chapter__frame--two-col {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 20px 28px;
  }

  .retreat-pullquote { padding: 100px 32px; min-height: 80vh; }
  .retreat-pullquote__text { font-size: var(--fs-26); }

  .retreat-guide__photo img { height: 360px; }
  .retreat-guide__name { font-size: var(--fs-44); }

  .retreat-lugar-cover__title { font-size: var(--fs-64); }
  .retreat-lugar-cover__subtitle { font-size: var(--fs-22); padding: 10px 28px; }

  .retreat-venue__grid { grid-template-columns: 1fr; }
  .retreat-venue__grid img { height: 280px; }
  .retreat-venue__title,
  .retreat-land__title,
  .retreat-investment__title { font-size: var(--fs-44); }

  .retreat-land__photo { height: 56vh; min-height: 360px; }
}


/* ════════════════════════════════════════════════════════════════
   MOBILE REFINEMENTS
   Comprehensive small-screen pass — readability, touch targets,
   spacing, and typography step-down. Everything below the
   existing breakpoints lives here for maintainability.
   ════════════════════════════════════════════════════════════════ */

/* --- 820px — large phone / small tablet additions --- */
@media (max-width: 820px) {
  /* Trim the events/announce text card padding so the off-white
     panel doesn't dominate the screen on tablets in portrait. */
  .events-hero__card,
  .retreat-announce__card {
    padding: 40px 28px;
  }

  /* Carousel quote drops a tier on small viewports so it doesn't
     punch past the card edges. */
  .carousel-quote {
    font-size: var(--text-md);
    line-height: 1.65;
  }

  /* Soften table-style trainings — hairline rules and tighter rhythm. */
  .training-item {
    grid-template-columns: 72px 1fr;
    padding: 14px 0;
  }
}

/* --- 640px — primary phone breakpoint --- */
@media (max-width: 640px) {
  :root {
    --section-padding-x: 20px;
  }

  /* Body breathing room — tighter line-height and never-justified
     paragraphs (justified text creates ugly word rivers on narrow
     screens). */
  body {
    line-height: 1.65;
  }
  .text-justify,
  .retreat-chapter__body p,
  .retreat-guide__body,
  .retreat-guide__body p,
  .retreat-land__body,
  .retreat-venue__body,
  .event-card__desc {
    text-align: left;
  }

  /* --- Hero: keep impact, fit on phones --- */
  .hero {
    min-height: 560px;
  }
  .hero-title {
    font-size: clamp(38px, 11vw, 56px);
  }
  .hero-subtitle {
    font-size: var(--fs-12);
    letter-spacing: 0.18em;
    margin-top: 22px;
    line-height: 1.7;
  }
  .hero-cta {
    margin-top: 32px;
    padding: 14px 28px;
    font-size: var(--fs-11);
    letter-spacing: 0.22em;
  }

  /* --- Site header — tighten, ensure logo doesn't crowd hamburger --- */
  .site-header {
    padding: 18px var(--section-padding-x);
  }
  .site-header.scrolled {
    padding: 12px var(--section-padding-x);
  }
  .logo-text {
    font-size: var(--fs-18);
    letter-spacing: 0.06em;
  }
  .logo-sub {
    font-size: 7px;
    letter-spacing: 0.28em;
  }
  .hamburger {
    right: 4px;
    padding: 10px;
  }
  /* Bigger tap target without growing the icon */
  .hamburger span {
    width: 22px;
  }

  /* --- Mobile menu — generous tap targets --- */
  .mobile-menu {
    gap: 28px;
    padding: 32px;
  }
  .mobile-menu a {
    padding: 6px 12px;
  }
  .mobile-menu__lang {
    margin-top: 24px;
    padding-top: 24px;
  }
  .mobile-menu__lang a {
    padding: 6px 10px;
  }

  /* --- Sections: trim global vertical rhythm --- */
  .section {
    padding: 56px var(--section-padding-x);
  }

  /* --- Page-level h1/h2 step-down --- */
  h1 { font-size: var(--fs-32); line-height: 1.1; }
  h2 { font-size: var(--fs-22); line-height: 1.2; }
  h3 { font-size: var(--fs-18); }

  /* --- Footer — single column, tighter rhythm --- */
  .site-footer {
    padding: 48px var(--section-padding-x) 32px;
  }
  .footer-grid {
    gap: 32px;
  }
  .footer-heading {
    font-size: var(--fs-22);
    margin-bottom: 18px;
  }

  /* --- Decorative running rule between sections (retreat) --- */
  .retreat-running {
    padding: 28px var(--section-padding-x);
    font-size: var(--fs-12);
    gap: 16px;
  }
  .retreat-running::before,
  .retreat-running::after {
    width: 40px;
  }

  /* ============================================
     EVENTS — cards, hero, banner, retreat announce
     ============================================ */
  .events-grid-section {
    padding: 56px var(--section-padding-x) 72px;
  }
  .events-grid {
    gap: 48px;
  }
  .event-card__flyer {
    margin-bottom: 20px;
  }
  .event-card__title {
    font-size: var(--fs-22);
  }
  .event-card__rsvp {
    align-self: stretch;
    text-align: center;
    padding: 14px 20px;
  }
  .event-card__badge {
    padding: 10px 14px;
    min-width: 60px;
  }
  .event-card__badge-bottom {
    font-size: var(--fs-22);
  }

  .events-banner {
    padding: 56px var(--section-padding-x);
  }
  .events-banner__title {
    font-size: var(--fs-32);
    margin-bottom: 18px;
  }
  .events-banner__desc {
    font-size: var(--fs-14);
    line-height: 1.7;
  }

  .events-hero {
    padding: 110px var(--section-padding-x) 56px;
  }
  .events-hero__title {
    font-size: var(--fs-36);
  }
  .events-hero__lede {
    font-size: var(--fs-15);
    line-height: 1.65;
  }
  .events-hero__card,
  .retreat-announce__card {
    padding: 32px 24px;
  }
  .events-hero__media,
  .retreat-announce__media {
    min-height: 360px;
  }
  .events-hero__img--main,
  .retreat-announce__img--main {
    height: 240px;
  }
  .events-hero__img--accent,
  .retreat-announce__img--accent {
    height: 220px;
  }

  .retreat-announce {
    padding: 56px var(--section-padding-x);
  }
  .retreat-announce__title--single {
    font-size: var(--fs-22);
    letter-spacing: 0.05em;
  }
  .retreat-announce__meta {
    font-size: 10px;
    letter-spacing: 0.18em;
    margin: -8px 0 22px;
  }
  .retreat-announce__meta-sep {
    margin: 0 6px;
  }

  /* ============================================
     RETREAT — long-form story improvements
     ============================================ */
  /* Cover */
  .retreat-cover {
    min-height: 600px;
  }
  .retreat-cover__content {
    left: var(--section-padding-x);
    right: var(--section-padding-x);
    top: 100px;
  }
  .retreat-cover__overline {
    font-size: var(--fs-11);
    letter-spacing: 0.22em;
    margin: 0 0 24px;
  }
  .retreat-cover__title {
    font-size: var(--fs-48);
    line-height: 0.98;
  }
  .retreat-cover__meta {
    margin-top: 32px;
  }
  .retreat-cover__meta-date,
  .retreat-cover__meta-place {
    font-size: var(--fs-22);
    line-height: 1.25;
  }
  .retreat-cover__meta-time {
    display: block;
    padding: 0;
    margin-top: 4px;
    font-size: var(--fs-11);
    letter-spacing: 0.16em;
  }

  /* Dates landscape */
  .retreat-dates {
    padding: 96px 0;
    min-height: auto;
  }
  .retreat-dates__copy {
    padding: 0 var(--section-padding-x);
  }
  .retreat-dates__lede {
    font-size: var(--fs-18);
    line-height: 1.5;
  }

  /* Chapter blocks */
  .retreat-chapter {
    padding: 72px 0;
  }
  .retreat-chapter__frame {
    padding: 20px var(--section-padding-x);
  }
  .retreat-chapter__title {
    font-size: var(--fs-32);
    line-height: 1.1;
    margin: 0 0 32px;
  }
  .retreat-chapter__title--secondary {
    margin-top: 56px;
  }
  .retreat-chapter__body p {
    font-size: var(--fs-15);
    line-height: 1.7;
    margin: 0 0 18px;
  }

  /* Wordless breath section */
  .retreat-breath {
    min-height: 40vh;
  }

  /* Program / list section — restore generous reading width */
  .retreat-list-section {
    padding: 72px 0;
  }
  .retreat-list-section__inner {
    padding: 0 var(--section-padding-x);
  }
  .retreat-program__intro {
    font-size: var(--fs-15);
  }
  .retreat-program__day {
    margin: 28px 0;
    padding: 18px 0;
  }
  .retreat-program__day-label {
    font-size: var(--fs-24);
  }
  .retreat-program__day-body {
    font-size: var(--fs-14);
  }
  .retreat-program__activities {
    margin: 28px 0 8px;
  }
  .retreat-program__activities-label {
    font-size: var(--fs-12);
    margin: 0 0 18px;
  }

  /* Bullets — tighter inset on small screens */
  .retreat-bullets li {
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: var(--fs-14);
  }
  .retreat-bullets li::before {
    width: 9px;
    height: 9px;
    top: 8px;
  }

  /* Pull quote */
  .retreat-pullquote {
    padding: 80px var(--section-padding-x);
    min-height: 60vh;
  }
  .retreat-pullquote__text {
    font-size: var(--fs-22);
    line-height: 1.3;
  }

  /* Question display section (if present) */
  .retreat-question {
    padding: 64px var(--section-padding-x);
    min-height: auto;
  }
  .retreat-question__text {
    font-size: var(--fs-26);
    line-height: 1.25;
  }

  /* Facilitators */
  .retreat-guide {
    padding: 72px 0;
  }
  .retreat-guide__photo {
    margin: 0 auto 40px;
    padding: 0 var(--section-padding-x);
  }
  .retreat-guide__photo img {
    height: 320px;
  }
  .retreat-guide__text {
    padding: 0 var(--section-padding-x);
  }
  .retreat-guide__name {
    font-size: var(--fs-38);
    margin: 0 0 28px;
  }
  .retreat-guide__overline {
    font-size: var(--fs-18);
  }

  /* El Lugar / The Place cover */
  .retreat-lugar-cover {
    min-height: 60vh;
    padding: 56px var(--section-padding-x);
  }
  .retreat-lugar-cover__title {
    font-size: var(--fs-48);
  }
  .retreat-lugar-cover__subtitle {
    font-size: var(--fs-18);
    padding: 8px 22px;
  }

  /* Venue */
  .retreat-venue {
    padding: 72px 0;
  }
  .retreat-venue__text {
    margin: 0 auto 56px;
    padding: 0 var(--section-padding-x);
  }
  .retreat-venue__title {
    font-size: var(--fs-36);
    margin: 0 0 24px;
  }
  .retreat-venue__body {
    font-size: var(--fs-15);
    line-height: 1.7;
  }
  .retreat-venue__carousel {
    padding: 0 var(--section-padding-x);
  }
  .retreat-venue__grid img {
    height: 220px;
  }
  .retreat-venue__carousel-controls {
    gap: 18px;
    margin-top: 24px;
  }

  /* Land / Artist Residency */
  .retreat-land {
    padding: 72px 0 0;
  }
  .retreat-land__text {
    margin: 0 auto 56px;
    padding: 0 var(--section-padding-x);
  }
  .retreat-land__title {
    font-size: var(--fs-36);
    margin: 0 0 24px;
  }
  .retreat-land__body {
    font-size: var(--fs-15);
    line-height: 1.7;
  }
  .retreat-land__photo {
    height: 48vh;
    min-height: 280px;
  }

  /* Investment */
  .retreat-investment {
    padding: 96px var(--section-padding-x) 96px;
  }
  .retreat-investment__title {
    font-size: var(--fs-36);
    margin: 0 0 24px;
  }
  .retreat-investment__intro {
    font-size: var(--fs-14);
    margin: 0 auto 48px;
  }
  .retreat-tier-divider {
    margin: 32px auto;
  }
  .retreat-tier__price {
    font-size: var(--fs-32);
  }
  .retreat-investment__includes {
    margin: 56px auto 0;
    padding: 36px 0 0;
  }
  .retreat-investment__includes-title {
    font-size: var(--fs-26);
    margin: 0 0 24px;
  }
  .retreat-investment__cta {
    margin-top: 44px;
    padding: 18px 36px;
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  /* ============================================
     OFFERINGS / SERVICES sub-section spacing
     ============================================ */
  .solo-offering {
    margin-bottom: 28px;
  }
}

/* --- 480px — small phone (iPhone SE, etc.) --- */
@media (max-width: 480px) {
  :root {
    --section-padding-x: 18px;
  }

  /* Hero — push impact further down so it never feels cramped */
  .hero {
    min-height: 540px;
  }
  .hero-title {
    font-size: clamp(34px, 11.5vw, 46px);
  }

  /* Header is already small, but logo can shrink one more notch */
  .logo-text { font-size: var(--fs-16); }
  .logo-sub  { font-size: 7px; letter-spacing: 0.24em; }

  /* Retreat cover — final scale to comfortably hold "MEDICINA DE / ALIENTO" */
  .retreat-cover__title { font-size: var(--fs-40); }
  .retreat-cover__meta-date,
  .retreat-cover__meta-place { font-size: var(--fs-18); }

  /* Banner heading */
  .events-banner__title { font-size: var(--fs-26); }

  /* Event cards stay readable on tiny screens */
  .event-card__title { font-size: var(--fs-20); }

  /* Investment tiers */
  .retreat-tier__price { font-size: var(--fs-28); }
}

/* --- Touch-first refinements --- */
@media (hover: none) and (pointer: coarse) {
  /* Ensure every interactive element has a comfortable tap area */
  .nav-link,
  .footer-nav a,
  .lang-switch__link,
  .mobile-menu__lang a,
  .carousel-dot,
  .retreat-venue__carousel-dot {
    padding: 8px;
  }

  /* Buttons grow to 48px min height for thumbs */
  .btn-primary,
  .btn-secondary,
  .hero-cta,
  .event-card__rsvp,
  .retreat-investment__cta,
  .footer-form button,
  .carousel-btn,
  .retreat-venue__carousel-btn {
    min-height: 48px;
  }

  /* Active state for taps (no hover) */
  .btn-primary:active,
  .btn-secondary:active,
  .event-card__rsvp:active {
    opacity: 0.7;
    transform: scale(0.98);
  }
}

/* --- Reduced motion (accessibility) --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-scroll-line {
    animation: none !important;
  }
}
