/* ================================================================
   SolScape Retreats — Shared Stylesheet
   ================================================================
   TABLE OF CONTENTS

    1.  CSS RESET & BOX MODEL
    2.  DESIGN TOKENS (colours, fonts)
    3.  TYPOGRAPHY HELPERS
    4.  LAYOUT UTILITIES
    5.  BUTTONS
    6.  NAVIGATION (incl. hamburger & mobile drawer)
    7.  HERO — FULL BLEED (homepage)
    8.  MANIFESTO BAND
    9.  EXPERIENCE CATEGORIES
   10.  RETREAT CARDS
   11.  WHAT'S INCLUDED
   12.  TESTIMONIALS
   13.  NEWSLETTER BAND
   14.  SUSTAINABILITY SECTION
   15.  CTA BAND
   16.  ABOUT INLINE (homepage founders block)
   17.  PILLAR TILES
   18.  FOOTER
   19.  RETREAT DETAIL PAGE (hero, overview, facts, inc/exc, inquiry)
   20.  ABOUT PAGE (brand story, team, values)
   21.  CONTACT PAGE
   22.  EXPERIENCE PAGE (philosophy, offerings, quotes, hosts)
   23.  RESPONSIVE — 1024px and below
   24.  RESPONSIVE — 768px and below
   25.  RESPONSIVE — 480px and below

   ================================================================ */

/* ================================================================
   1. CSS RESET & BOX MODEL
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ================================================================
   2. DESIGN TOKENS (colours, fonts)
   ================================================================ */

:root {
  /* ── Brand-guideline exact colours ── */
  --cream:     #F9F5EA;
  --linen:     #EDE8DC;
  --sand:      #D9C9B4;
  --terra:     #CC9A67;
  --terra-dk:  #A07A50;
  --mocha:     #826D54;
  --charcoal:  #2C1F14;
  --sage:      #B6B093;
  --sage-lt:   #D6DACD;
  --gold:      #BF9A5E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ================================================================
   3. TYPOGRAPHY HELPERS
   ================================================================ */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--terra); }

.section-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--mocha);
  max-width: 560px;
}

.divider {
  width: 48px; height: 1px;
  background: var(--terra);
  margin: 28px 0;
}

/* ================================================================
   4. LAYOUT UTILITIES
   ================================================================ */
section { padding: 100px 40px; }
.container { max-width: 1100px; margin: 0 auto; }

/* ================================================================
   5. BUTTONS
   ================================================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--terra);
  color: #fff;
  border: 1.5px solid var(--terra);
}
.btn-primary:hover { background: var(--terra-dk); border-color: var(--terra-dk); }

.btn-outline {
  background: transparent;
  color: var(--mocha);
  border: 1.5px solid var(--sand);
}
.btn-outline:hover { border-color: var(--terra); color: var(--terra); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ================================================================
   6. NAVIGATION (incl. hamburger & mobile drawer)
   ================================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 60px;
  background: rgba(249,245,234,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(204,154,103,0.14);
  transition: padding 0.3s;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}

.logo-mark { width: 36px; height: 36px; }
.logo-img { max-width: 320px; max-height: 90px; width: auto; height: auto; display: block; filter: none; mix-blend-mode: multiply; }

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}
.logo-text span { color: var(--terra); }

/* Dropdown nav */
.nav-links {
  list-style: none;
  display: flex; gap: 0; align-items: center;
}

.nav-item { position: relative; }

.nav-item > a {
  display: block;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mocha);
  padding: 8px 16px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-item > a:hover { color: var(--terra); }

.nav-item.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.6rem;
  opacity: 0.6;
}

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 2px;
  min-width: 180px;
  box-shadow: 0 12px 32px rgba(44,31,20,0.1);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  list-style: none;
  z-index: 200;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mocha);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown li a:hover { background: var(--linen); color: var(--terra); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-insta {
  color: var(--mocha);
  transition: color 0.2s;
  line-height: 0;
}
.nav-insta:hover { color: var(--terra); }

.nav-cta {
  background: var(--terra);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--terra-dk) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal); border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  padding: 24px 28px 32px;
  box-shadow: 0 12px 24px rgba(44,31,20,0.08);
}
.mobile-menu.open { display: block; }

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li a {
  display: block; padding: 12px 0;
  text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mocha);
  border-bottom: 1px solid rgba(217,201,180,0.4);
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--terra); }
.mobile-menu .btn { display: block; text-align: center; margin-top: 20px; }

/* ================================================================
   7. HERO — FULL BLEED (homepage)
   ================================================================ */
.hero-full {
  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-full .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-full .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,31,20,0.3) 0%,
    rgba(44,31,20,0.5) 50%,
    rgba(44,31,20,0.65) 100%
  );
  z-index: 1;
}

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

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

.hero-full h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  line-height: 1.0;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.hero-full h1 em { font-style: italic; color: var(--gold); }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ================================================================
   8. MANIFESTO BAND
   ================================================================ */
.manifesto {
  background: var(--charcoal);
  padding: 80px 40px;
  text-align: center;
}
.manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--linen);
  max-width: 780px;
  margin: 0 auto;
}
.manifesto-text strong { font-weight: 500; color: var(--gold); }
.manifesto-sub {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--sand);
  max-width: 580px;
  margin: 24px auto 0;
}

.why-us { background: var(--linen); }

/* ================================================================
   9. EXPERIENCE CATEGORIES
   ================================================================ */
.categories { background: var(--cream); }

.categories-header { text-align: center; margin-bottom: 60px; }
.categories-header .section-body { margin: 0 auto; text-align: center; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2px;
}

.cat-tile {
  background: var(--linen);
  padding: 36px 20px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}
.cat-tile:hover { background: var(--sand); transform: translateY(-3px); }

.cat-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}

.cat-tile span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mocha);
}

/* ================================================================
   10. RETREAT CARDS
   ================================================================ */
.retreats { background: var(--linen); }

.retreats-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 52px;
}

.retreat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(44,31,20,0.12); }

.card-banner {
  height: 240px;
  display: flex; align-items: flex-end;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.card-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.card-location {
  position: relative; z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.02em;
}
.card-location small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-bottom: 4px;
}

.card-body { padding: 28px; }

.card-theme-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--terra);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.card-status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--terra);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.card-dates {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--mocha);
  margin-bottom: 22px;
}

.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }

.tag {
  background: var(--linen);
  color: var(--mocha);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid var(--terra);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.card-link:hover { opacity: 0.7; }

/* ================================================================
   11. WHAT'S INCLUDED
   ================================================================ */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px 80px;
  margin-top: 60px;
}

.include-item { display: flex; gap: 18px; align-items: flex-start; }

.include-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--linen);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--terra);
}

.include-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--charcoal);
}
.include-item p { font-size: 0.84rem; line-height: 1.65; color: var(--mocha); }

/* ================================================================
   12. TESTIMONIALS
   ================================================================ */
.testimonials { background: var(--charcoal); }
.testimonials .section-label { color: var(--gold); }
.testimonials .section-title { color: var(--linen); }

.testimonial-carousel { position: relative; margin-top: 52px; overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 4px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(191,154,94,0.2);
  border-radius: 4px;
  padding: 52px 56px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--linen);
  margin-bottom: 36px;
}

.testimonial-author {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.carousel-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 36px;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.carousel-dot.active { background: var(--gold); }

/* ================================================================
   13. NEWSLETTER BAND
   ================================================================ */
.newsletter {
  background: var(--terra);
  padding: 80px 40px;
  text-align: center;
}
.newsletter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.newsletter p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  line-height: 1.75;
}
.newsletter-form {
  display: flex; gap: 0; max-width: 460px; margin: 0 auto 16px;
  border-radius: 2px; overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  border: none; outline: none;
  background: #fff;
  color: var(--charcoal);
}
.newsletter-form input::placeholder { color: var(--sand); }
.newsletter-form button {
  padding: 14px 26px;
  background: var(--charcoal);
  color: #fff;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #1a1008; }
.newsletter-fine {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.newsletter-success {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #fff;
  margin-top: 12px;
}

/* ================================================================
   14. SUSTAINABILITY SECTION
   ================================================================ */
.sustainability {
  background: var(--cream);
  padding: 80px 40px;
  text-align: center;
}
.sustainability-header { margin-bottom: 60px; }
.sustainability-header .section-body { margin: 0 auto; text-align: center; }

.sus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}

.sus-item {
  background: var(--linen);
  padding: 48px 36px;
  text-align: center;
}

.sus-icon {
  width: 48px; height: 48px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--terra);
}

.sus-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.sus-item p { font-size: 0.84rem; line-height: 1.7; color: var(--mocha); }

/* ================================================================
   15. CTA BAND
   ================================================================ */
.cta-band {
  padding: 100px 40px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(204,154,103,0.14) 0%, transparent 70%),
    var(--cream);
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-band h2 em { font-style: italic; color: var(--terra); }
.cta-band p {
  font-size: 0.95rem;
  color: var(--mocha);
  margin-bottom: 44px;
  max-width: 460px;
  margin-left: auto; margin-right: auto;
  line-height: 1.8;
}

/* ================================================================
   16. ABOUT INLINE (homepage founders block)
   ================================================================ */
.about { background: var(--charcoal); color: var(--linen); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about .section-label { color: var(--gold); }
.about .section-title { color: var(--linen); }
.about .section-title em { color: var(--gold); }
.about .section-body { color: var(--sand); max-width: 100%; }

.founders { display: flex; flex-direction: column; gap: 32px; }

.founder { display: flex; gap: 20px; align-items: center; }

.founder-avatar {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
}
.founder-avatar.nada { background: var(--terra); }
.founder-avatar.sam  { background: var(--gold); }

.founder-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--linen);
  margin-bottom: 4px;
}
.founder-info p { font-size: 0.82rem; color: var(--sand); line-height: 1.6; }

/* ================================================================
   17. PILLAR TILES
   ================================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 60px;
}
.pillar { background: var(--linen); padding: 48px 36px; transition: background 0.2s; }
.pillar:hover { background: var(--sand); }
.pillar-icon { width: 44px; height: 44px; margin-bottom: 24px; }
.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500;
  margin-bottom: 12px; color: var(--charcoal);
}
.pillar p { font-size: 0.87rem; line-height: 1.75; color: var(--mocha); }

/* ================================================================
   18. FOOTER
   ================================================================ */
footer {
  background: var(--charcoal);
  padding: 56px 60px 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--linen);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}
.footer-logo span { color: var(--terra); }
.footer-tagline { font-size: 0.82rem; color: var(--sand); line-height: 1.65; max-width: 220px; }

.footer-col h5 {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  text-decoration: none;
  font-size: 0.78rem;
  color: var(--sand);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--terra); }

.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.68rem; color: var(--mocha); letter-spacing: 0.06em; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--sand); transition: color 0.2s; line-height: 0; }
.footer-social a:hover { color: var(--terra); }

/* footer logo image */
.footer-logo-img {
  max-width: 270px;
  max-height: 90px;
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 14px;
  opacity: 0.88;
}

/* ================================================================
   19. RETREAT DETAIL PAGE (hero, overview, facts, inc/exc, inquiry)
   ================================================================ */
.detail-hero {
  min-height: 70vh;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.detail-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.detail-hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(44,31,20,0.25) 0%, rgba(44,31,20,0.6) 100%);
}
.detail-hero .hero-content { position: relative; z-index: 2; }
.detail-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
}
.detail-hero .sub { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.dates-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  padding: 10px 24px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border-radius: 2px;
}

/* hero brand watermark */
.hero-brand-mark {
  width: 110px;
  height: auto;
  opacity: 0.65;
  margin-top: 28px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Overview 2-col */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
  margin-top: 0;
}
.overview-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--mocha);
  margin-bottom: 20px;
}
.facts-card {
  background: var(--linen);
  border-radius: 4px;
  padding: 32px 28px;
  position: sticky;
  top: 100px;
}
.facts-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.fact-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand);
  gap: 12px;
}
.fact-row:last-child { border-bottom: none; }
.fact-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); }
.fact-value { font-size: 0.88rem; color: var(--charcoal); text-align: right; }
.facts-card .btn { display: block; text-align: center; margin-top: 24px; width: 100%; }

/* Accommodation */
.accom-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 4px;
  margin-bottom: 40px;
}
.accom-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
.accom-gallery .main-img { grid-row: span 2; }
.accom-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--mocha);
  margin-bottom: 16px;
}

/* Includes / Excludes */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.inc-list h4, .exc-list h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.inc-list ul, .exc-list ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.inc-list li, .exc-list li {
  display: flex; gap: 10px;
  font-size: 0.88rem; line-height: 1.6; color: var(--mocha);
}
.inc-list li::before { content: '✓'; color: var(--sage); font-weight: 600; flex-shrink: 0; }
.exc-list li::before { content: '○'; color: var(--sand); flex-shrink: 0; }

/* Inquiry form */
.inquiry-section { background: var(--linen); }
.form-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 52px 56px;
  max-width: 640px;
  margin: 0 auto;
}
.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 8px;
}
.form-card > p { font-size: 0.88rem; color: var(--mocha); margin-bottom: 36px; line-height: 1.65; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--linen);
  border: 1.5px solid transparent;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terra); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--terra);
}

/* Other retreats strip */
.other-retreats { background: var(--cream); }
.other-retreat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

/* ================================================================
   20. ABOUT PAGE (brand story, team, values)
   ================================================================ */
.brand-story { background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  height: 500px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}
.story-text p { font-size: 0.95rem; line-height: 1.9; color: var(--mocha); margin-bottom: 20px; }

.team-section { background: var(--linen); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}
.team-card { background: var(--cream); border-radius: 4px; overflow: hidden; }
.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
  display: block;
}
.team-card-body { padding: 28px; }
.team-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 4px;
}
.team-role {
  font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 16px;
}
.team-card-body p { font-size: 0.88rem; line-height: 1.75; color: var(--mocha); margin-bottom: 16px; }
.team-card-body a { font-size: 0.75rem; color: var(--terra); text-decoration: none; border-bottom: 1px solid var(--terra); padding-bottom: 1px; }

.nada-photo-wrap { position: relative; display: block; }
.nada-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(180, 100, 40, 0.18);
  pointer-events: none;
}

.values-section { background: var(--charcoal); }
.values-section .section-label { color: var(--gold); }
.values-section .section-title { color: var(--linen); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.value-tile { background: rgba(255,255,255,0.04); padding: 48px 36px; }
.value-tile h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--gold); margin-bottom: 14px;
}
.value-tile p { font-size: 0.88rem; line-height: 1.75; color: var(--sand); }

/* ================================================================
   21. CONTACT PAGE
   ================================================================ */
.contact-hero { background: var(--charcoal); padding: 160px 40px 100px; text-align: center; }
.contact-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--linen);
  margin-bottom: 16px;
  line-height: 1.1;
}
.contact-hero h1 em { font-style: italic; color: var(--gold); }
.contact-hero p { font-size: 0.95rem; color: var(--sand); max-width: 420px; margin: 0 auto; line-height: 1.8; }

.contact-form-section { background: var(--cream); }
.social-row { display: flex; justify-content: center; gap: 24px; margin-top: 40px; }
.social-link {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.social-link:hover { opacity: 0.7; }

/* ================================================================
   22. EXPERIENCE PAGE (philosophy, offerings, quotes, hosts)
   ================================================================ */
.exp-philosophy { background: var(--cream); }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy-img {
  height: 480px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}
.philosophy-text p { font-size: 0.95rem; line-height: 1.9; color: var(--mocha); margin-bottom: 20px; }

.offerings-section { background: var(--linen); }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.offering-card { background: var(--cream); border-radius: 4px; padding: 40px 36px; }
.offering-icon { width: 48px; height: 48px; margin-bottom: 20px; }
.offering-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 12px;
}
.offering-card p { font-size: 0.88rem; line-height: 1.75; color: var(--mocha); }

.founder-quote { background: var(--charcoal); padding: 100px 40px; }
.founder-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--linen);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.founder-quote cite {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  margin-top: 28px;
  text-align: center;
}

/* philosophy banner image */
.philosophy-banner {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin-bottom: 0;
}

/* hosts section */
.hosts-section { background: var(--cream); }
.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}
.host-card {
  border-radius: 4px;
  overflow: hidden;
  background: var(--linen);
}
.host-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

/* ================================================================
   23. RESPONSIVE — 1024px and below
   ================================================================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .overview-grid { grid-template-columns: 1fr; }
  .facts-card { position: static; }
}

/* ================================================================
   24. RESPONSIVE — 768px and below
   ================================================================ */
@media (max-width: 768px) {
  nav { padding: 8px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 24px; }
  .manifesto { padding: 60px 24px; }
  .newsletter { padding: 60px 24px; }
  .sustainability { padding: 60px 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .includes-grid { grid-template-columns: 1fr; gap: 32px; }
  .inc-exc-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-img { height: 320px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-img { height: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 36px 28px; }
  .testimonial-card { padding: 36px 28px; }
  .accom-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .accom-gallery .main-img { grid-row: span 1; height: 280px; }
  .accom-gallery img { height: 200px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; padding: 14px; }

  .contact-hero { padding: 120px 24px 80px; }
  .hosts-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   25. RESPONSIVE — 480px and below
   ================================================================ */
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-col { display: none; }
  .footer-col:first-of-type { display: block; }
}

/* ================================================================
   26. ROOM CARDS — thumbnail + "View Room"
   ================================================================ */
.offering-card .room-thumb {
  display: block;
  width: calc(100% + 72px);
  height: 200px;
  object-fit: cover;
  margin: -40px -36px 28px;
  border-radius: 4px 4px 0 0;
}
.view-room-btn {
  margin-top: 22px;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding: 0 0 3px;
  transition: opacity 0.4s ease;
}
.view-room-btn:hover { opacity: 0.65; }
.view-room-btn:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 4px;
}

/* ================================================================
   27. THE PROPERTY — gallery grid
   ================================================================ */
.property-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 52px;
}
.property-item {
  position: relative;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4 / 5;
}
.property-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.property-item:hover img { transform: scale(1.05); }
.property-item:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
}
@media (max-width: 720px) {
  .property-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   28. LIGHTBOX — shared gallery overlay
   ================================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(28, 20, 12, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-figure {
  margin: 0;
  max-width: 1100px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.lightbox-caption {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}
.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.lightbox-btn:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox { padding: 20px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 14px; right: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox { transition: none; }
  .property-item img,
  .view-room-btn { transition: none; }
}
