/* ==============================
   TIERRA — WELLNESS
   ============================== */

/* === TOKENS === */
:root {
  --logo-color:   #A5A093;
  --teal-dark:    #17332B;
  --teal-mid:     #1E4A3A;
  --teal-accent:  #2A6050;
  --sage:         #C8E0D6;
  --sage-light:   #DFF0E8;
  --sage-pale:    #ffab0014;
  --cream:        #FAF5EE;
  --blush:        #F2E8E4;
  --warm-white:   #FDFCF8;
  --btn-dark:     #17332B;

  --text-dark:    #131E18;
  --text-body:    #435048;
  --text-muted:   #788A80;
  --border:       rgba(23,51,43,0.12);
  --border-light: rgba(23,51,43,0.07);

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', sans-serif;

  --shadow-xs:    0 1px 6px rgba(23,51,43,0.07);
  --shadow-sm:    0 2px 16px rgba(23,51,43,0.09);
  --shadow-md:    0 8px 36px rgba(23,51,43,0.13);
  --shadow-lg:    0 20px 64px rgba(23,51,43,0.16);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* === LAYOUT === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.75rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.125rem; font-weight: 500; }

/* Italic serif accent — mimics Welifye's keyword emphasis */
em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.08em;
  color: inherit;
}

p { color: var(--text-body); line-height: 1.75; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--dark {
  background: var(--teal-dark);
  color: #fff;
  border: 1.5px solid var(--teal-dark);
}
.btn--dark:hover {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-dark);
}
.btn--outline:hover {
  background: var(--teal-dark);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--teal-dark);
  border: 1.5px solid #fff;
}
.btn--light:hover {
  background: var(--sage-pale);
  transform: translateY(-1px);
}

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==============================
   NAVIGATION
   ============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--teal-dark);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav--scrolled {
  background: rgba(253,252,248,0.97);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-xs);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  font-style: italic;
  color: var(--logo-color);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links a {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }

.nav--scrolled .nav__links a { color: var(--text-body); }
.nav--scrolled .nav__links a:hover { color: var(--teal-dark); }

/* Dropdown */
.nav__item--has-dropdown { position: relative; }
.nav__item--has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.6rem;
  vertical-align: middle;
  opacity: 0.6;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  min-width: 150px;
  padding: 0.4rem 0;
  margin-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
  z-index: 200;
}
/* Invisible bridge fills the gap so hover isn't lost moving cursor to dropdown */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}
.nav__item--has-dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav__dropdown li a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav__dropdown li a:hover {
  color: var(--teal-dark);
  background: var(--sage-pale);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__cta .btn { padding: 10px 22px; }

/* Buttons on dark nav */
.nav__cta .btn--outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}
.nav__cta .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: none;
}
.nav__cta .btn--dark {
  background: #fff;
  color: var(--teal-dark);
  border-color: #fff;
}
.nav__cta .btn--dark:hover {
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: var(--shadow-md);
}

/* Restore buttons on scrolled (light) nav */
.nav--scrolled .nav__cta .btn--outline {
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}
.nav--scrolled .nav__cta .btn--outline:hover {
  background: var(--teal-dark);
  color: #fff;
}
.nav--scrolled .nav__cta .btn--dark {
  background: var(--teal-dark);
  color: #fff;
  border-color: var(--teal-dark);
}
.nav--scrolled .nav__cta .btn--dark:hover {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
}

/* ==============================
   HERO
   ============================== */
.hero {
  background: var(--sage-pale);
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Bottom curve transition to cream */

.hero .container { position: relative; z-index: 2; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0 8rem;
}

.hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 0.9375rem;
  max-width: 420px;
  margin-bottom: 2.5rem;
  color: var(--text-body);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__stars { color: #E8A830; font-size: 0.875rem; letter-spacing: 2px; }
.hero__trust-text { font-size: 0.8125rem; color: var(--text-muted); }

/* Hero image side */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__img-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.hero__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}


.hero__badge {
  position: absolute;
  bottom: 10%;
  left: -8%;
  background: var(--warm-white);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  max-width: 190px;
}
.hero__badge strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.hero__badge span { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

/* ==============================
   FEATURES STRIP
   ============================== */
.features {
  background: var(--cream);
  padding: 5rem 0;
  
}

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

.feature-item {
  padding: 2rem 3rem;
  text-align: center;
  border-right: 1px solid var(--border-light);
}
.feature-item:last-child { border-right: none; }

.feature-item__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  color: var(--teal-accent);
}
.feature-item__icon svg { width: 100%; height: 100%; }

.feature-item h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.feature-item p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

/* ==============================
   PHILOSOPHY — sage-pale bg, centered
   ============================== */
.philosophy {
  background: var(--sage-pale);
  padding: 6rem 0;
  text-align: center;
}
.philosophy__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.philosophy__inner .section-label { justify-content: center; margin-bottom: 0.5rem; }
.philosophy__inner h2 { margin-bottom: 0.25rem; }
.philosophy__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.philosophy__body p {
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.85;
}
.philosophy__body p:last-child {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--teal-dark);
  line-height: 1.7;
}

/* ==============================
   PROBLEM — blush bg, image left
   ============================== */
.problem {
  background: var(--blush);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}


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

.problem__visual { position: relative; }

.problem__img-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 auto;
}
.problem__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem__highlight {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--warm-white);
  border-radius: 14px;
  border-left: 3px solid var(--teal-accent);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ==============================
   SERVICES — cream bg, accordion left, image right
   ============================== */
.services {
  background: var(--cream);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

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

.services__img-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 auto;
}
.services__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Accordion */
.accordion-list { margin: 2rem 0; }

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  gap: 1rem;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  color: var(--text-body);
}
.accordion-icon svg { width: 13px; height: 13px; transition: transform 0.25s; }

.accordion-item.open .accordion-icon {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}
.accordion-item.open .accordion-icon svg { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-item.open .accordion-body {
  max-height: 200px;
  padding-bottom: 1.25rem;
}
.accordion-body p { font-size: 0.9rem; color: var(--text-body); }

/* ==============================
   TESTIMONIAL BANNER — dark teal
   ============================== */
.testimonials {
  background: var(--teal-dark);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -3rem;
  left: 6%;
  font-family: var(--font-serif);
  font-size: 18rem;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}

.testimonials__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.testimonials__orb {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.6);
}
.testimonials__orb svg { width: 18px; height: 18px; }

.testimonials__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.875rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  margin-bottom: 2.5rem;
  transition: opacity 0.4s ease;
}

.testimonials__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonials__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
}

.testimonials__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 3px;
}

.testimonials__stars {
  color: #F5C340;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.testimonials__arrow {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.testimonials__arrow:hover {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.testimonials__arrow svg { width: 15px; height: 15px; }

.testimonials__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.testimonials__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.25);
  transition: all 0.3s;
  cursor: pointer;
}
.testimonials__dot.active {
  width: 22px;
  background: #fff;
}

/* ==============================
   RETREAT CARDS
   ============================== */
.retreats {
  background: var(--cream);
  padding: 6.5rem 0;
}

.retreats__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.retreats__header .section-label { justify-content: center; font-size: 0.6875rem; }
.retreats__header p { max-width: 500px; margin: 0.75rem auto 0; font-size: 0.9375rem; }

.retreats--alt { background: var(--sage-pale); }

.retreats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.retreats__grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.retreat-card {
  background: var(--warm-white);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.retreat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.retreat-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.retreat-card__body { padding: 1.5rem 1.5rem 2rem; }

.retreat-card__tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-accent);
  margin-bottom: 0.5rem;
}

.retreat-card__title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.retreat-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.retreat-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.retreat-card__price {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-dark);
}


.retreat-card__cta {
  font-size: 0.8125rem;
  color: var(--teal-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==============================
   DARK CTA — with oval image
   ============================== */
.dark-cta {
  background: var(--teal-dark);
  padding: 6rem 0 4rem;
  text-align: center;
  overflow: hidden;
}

.dark-cta .section-label {
  justify-content: center;
  color: rgba(255,255,255,0.4);
}
.dark-cta .section-label::before { background: rgba(255,255,255,0.25); }

.dark-cta h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.2;
}

.dark-cta h2 em { color: rgba(190,228,212,0.95); }

.dark-cta__img {
  width: 100%;
  max-width: 820px;
  height: 420px;
  border-radius: 1rem;
  overflow: hidden;
  margin: 3rem auto 0;
}
.dark-cta__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ==============================
   BOOKING FORM — sage-light bg
   ============================== */
.booking {
  background: var(--sage-pale);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

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

.booking h2 { margin-bottom: 2rem; }

.booking__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: rgba(255,255,255,0.75);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--teal-accent);
  box-shadow: 0 0 0 3px rgba(42,96,80,0.1);
  background: #fff;
}

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

.booking__form-grid button.btn {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
.booking__form-grid .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.75rem;
}

.booking__visual { position: relative; }

.booking__img-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 auto;
}
.booking__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==============================
   TRUST — blush bg, image left
   ============================== */
.trust {
  background: var(--blush);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

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

.trust__img-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 auto;
}
.trust__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust__text p { margin-bottom: 1rem; font-size: 0.9375rem; }
.trust__text .section-label { font-size: 0.6875rem; }
.trust__text h2 { margin-bottom: 1.5rem; }

.trust__credentials {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 2rem 0 2.5rem;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.trust__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust__check svg { width: 11px; height: 11px; color: #fff; }

/* ==============================
   FAQ — cream bg
   ============================== */
.faq {
  background: var(--cream);
  padding: 6.5rem 0;
}

.faq__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.faq__header .section-label { justify-content: center; }

.faq__list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 0;
  text-align: left;
  gap: 1rem;
}
.faq-item__trigger h4 {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  color: var(--text-body);
}
.faq-icon svg { width: 13px; height: 13px; transition: transform 0.25s; }

.faq-item.open .faq-icon {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-item__body {
  max-height: 240px;
  padding-bottom: 1.5rem;
}
.faq-item__body p { font-size: 0.9rem; color: var(--text-body); }


/* ==============================
   MASONRY PHOTO GALLERY
   ============================== */
/* ─── Photo Text CTA ─── */
.photo-text-cta {
  background: #17332B;
  padding: 6rem 2rem;
  text-align: center;
}
.photo-text-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.photo-text-cta__pre {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.photo-text-cta__heading {
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background-image: url('images/healing\ retreat\ for\ individuals.jpg');
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.masonry-gallery {
  background: var(--sage-pale);
  padding: 5rem 0;
}
.masonry-gallery__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.masonry-gallery__header .section-label { margin-bottom: 0.75rem; }
.masonry-grid {
  columns: 3;
  column-gap: 1rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}
.masonry-item:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .masonry-gallery { padding: 3.5rem 0; }
  .masonry-grid { columns: 2; column-gap: 0.75rem; }
  .masonry-item { margin-bottom: 0.75rem; }
}
@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
}

/* ==============================
   FINAL CTA — dark teal
   ============================== */
.final-cta {
  background: var(--teal-dark);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.final-cta .section-label {
  justify-content: center;
  color: rgba(255,255,255,0.4);
}
.final-cta .section-label::before { background: rgba(255,255,255,0.25); }

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  max-width: 560px;
  margin: 0 auto 1.25rem;
}

.final-cta__sub {
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 2.75rem;
  font-size: 0.9375rem;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.final-cta__scarcity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
.final-cta__scarcity svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ==============================
   FOOTER — dark teal
   ============================== */
.footer {
  background: var(--teal-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 4.5rem 0 2.5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-logo {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  font-style: italic;
  color: var(--logo-color);
  margin-bottom: 0.875rem;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  max-width: 240px;
}

.footer__col-title {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #977A42;
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: rgba(255,255,255,0.9); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.28);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.footer__social a:hover {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
}
.footer__social svg { width: 14px; height: 14px; }

.footer__legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1000px) {
  .hero__inner,
  .problem__inner,
  .services__inner,
  .booking__inner,
  .trust__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero__visual { order: -1; }
  .hero__badge { display: none; }

  .features__grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border-light); padding: 2rem; }
  .feature-item:last-child { border-bottom: none; }

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

  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta .btn--outline { display: none; }

  .hero__inner { padding: 4rem 0 6rem; }

  .retreats__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .retreats__grid--two { grid-template-columns: 1fr; max-width: 380px; }
  .booking__form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }

}

@media (max-width: 480px) {
  .dark-cta__img { height: 220px; border-radius: 0.75rem; }
}
