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

:root {
  --sand: #F5F0E8;
  --sand-deep: #E8DFD0;
  --ivory: #FAF7F2;
  --bark: #5C4A35;
  --bark-light: #8B7355;
  --moss: #4A5C3F;
  --moss-light: #7A9B6A;
  --rose-dust: #C8A09A;
  --rose-pale: #EDD8D5;
  --gold: #B8975A;
  --gold-light: #D4B880;
  --charcoal: #2A2520;
  --text-muted: #7A6E64;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 6px 24px rgba(42, 37, 32, 0.07);
  --shadow: 0 20px 60px rgba(42, 37, 32, 0.14);
  --shadow-lg: 0 32px 80px rgba(42, 37, 32, 0.22);
  --maxw: 1200px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, padding 0.4s var(--ease), box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(42, 37, 32, 0.07);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.3s;
  z-index: 1100;
}
nav.scrolled .nav-logo { color: var(--bark); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.85);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--gold-light); transition: width 0.35s var(--ease);
}
nav.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
nav.scrolled .nav-links a:hover { color: var(--bark); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(250,247,242,0.5);
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}
nav.scrolled .nav-cta { color: var(--bark); border-color: var(--bark-light); }
.nav-cta:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--charcoal); transform: translateY(-2px); }
nav.scrolled .nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ivory); }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1100; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ivory); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s, background 0.4s; }
nav.scrolled .nav-toggle span { background: var(--bark); }
.nav-toggle.open span { background: var(--bark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(74,92,63,0.35) 0%, rgba(42,37,32,0.62) 50%, rgba(92,74,53,0.42) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.08);
  transition: transform 9s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s var(--ease) 0.4s forwards;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ivory);
  margin-bottom: 2rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.25);
}
.hero-title em { font-style: italic; color: var(--rose-dust); }
.hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250,247,242,0.82);
  max-width: 540px;
  margin: 0 auto 3rem;
  letter-spacing: 0.02em;
}
.hero-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold-light);
  padding: 1.05rem 2.6rem;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  border: 1px solid var(--gold-light);
  border-radius: 2px;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(184,151,90,0.35); }
.btn-outline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  background: transparent;
  padding: 1.05rem 2.6rem;
  text-decoration: none;
  border: 1px solid rgba(250,247,242,0.45);
  transition: all 0.35s var(--ease);
  border-radius: 2px;
}
.btn-outline:hover { background: rgba(250,247,242,0.12); transform: translateY(-3px); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(250,247,242,0.55);
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  animation: float 2.5s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(250,247,242,0.5)); }

/* ─── SECTION SHARED ──────────────────────────────── */
section { position: relative; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.14;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--bark-light); }
.section-body {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 560px;
}

/* ─── ABOUT ───────────────────────────────────────── */
.about { padding: clamp(5rem, 10vw, 9rem) 4rem; background: var(--ivory); }
.about-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-main {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  border-radius: 4px; box-shadow: var(--shadow);
}
.about-image-accent {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 55%; aspect-ratio: 1; object-fit: cover;
  border: 8px solid var(--ivory); border-radius: 4px; box-shadow: var(--shadow);
}
.about-image-decor {
  position: absolute; top: -1.5rem; left: -1.5rem;
  width: 90px; height: 90px; border: 1px solid var(--gold-light); opacity: 0.6;
}
.about-quote {
  font-family: var(--font-display);
  font-size: 1.55rem; font-style: italic; font-weight: 300;
  color: var(--bark-light); line-height: 1.5;
  border-left: 2px solid var(--gold-light);
  padding-left: 1.5rem; margin: 2rem 0;
}
.about-detail {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--moss); display: flex; align-items: center; gap: 0.8rem; margin-top: 2.5rem;
}
.about-detail::before { content: ''; display: block; width: 30px; height: 1px; background: var(--moss); }

/* ─── PILLARS ─────────────────────────────────────── */
.pillars { padding: clamp(5rem, 9vw, 7rem) 4rem; background: var(--charcoal); overflow: hidden; }
.pillars-header {
  max-width: var(--maxw); margin: 0 auto 5rem;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem;
}
.pillars-header .section-title { color: var(--ivory); margin-bottom: 0; }
.pillars-header .section-label { color: var(--gold-light); }
.pillars-header p { font-size: 0.9rem; color: rgba(250,247,242,0.55); max-width: 280px; line-height: 1.8; font-weight: 300; text-align: right; }
.pillars-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.pillar-card {
  background: rgba(250,247,242,0.04);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(250,247,242,0.06);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.pillar-card:hover { background: rgba(250,247,242,0.08); transform: translateY(-6px); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: rgba(250,247,242,0.1); line-height: 1; margin-bottom: 1.5rem; }
.pillar-icon { width: 40px; height: 40px; margin-bottom: 1.5rem; opacity: 0.75; }
.pillar-name { font-family: var(--font-display); font-size: 1.65rem; font-weight: 400; color: var(--ivory); margin-bottom: 1rem; }
.pillar-desc { font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: rgba(250,247,242,0.55); }

/* ─── RETREATS ────────────────────────────────────── */
.retreats { padding: clamp(5rem, 10vw, 9rem) 4rem; background: var(--sand); }
.retreats-header { max-width: var(--maxw); margin: 0 auto 5rem; text-align: center; }
.retreats-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.retreat-card {
  background: var(--ivory);
  overflow: hidden; position: relative;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.retreat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.retreat-image-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.retreat-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); display: block; }
.retreat-card:hover .retreat-image-wrap img { transform: scale(1.06); }
.retreat-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.5rem 1rem; background: var(--ivory); color: var(--bark); font-weight: 500; border-radius: 2px;
}
.retreat-body { padding: 2.5rem; }
.retreat-meta { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.2rem; }
.retreat-tag { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.retreat-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--sand-deep); }
.retreat-loc { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.08em; }
.retreat-title { font-family: var(--font-display); font-size: 1.85rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.8rem; line-height: 1.2; }
.retreat-desc { font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: var(--text-muted); margin-bottom: 2rem; }
.retreat-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid var(--sand-deep); }
.retreat-footer .btn-reserve {
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bark); text-decoration: none; display: flex; align-items: center; gap: 0.6rem; font-weight: 500; transition: color 0.3s;
}
.retreat-footer .btn-reserve:hover { color: var(--gold); }
.retreat-footer .btn-reserve svg { transition: transform 0.3s var(--ease); }
.retreat-footer .btn-reserve:hover svg { transform: translateX(5px); }
.retreat-spots { font-size: 0.72rem; color: var(--moss); letter-spacing: 0.05em; }

/* ─── MEET YOUR HOSTS ─────────────────────────────── */
.hosts { padding: clamp(5rem, 10vw, 9rem) 4rem; background: var(--ivory); position: relative; }
.hosts-header { max-width: var(--maxw); margin: 0 auto 4rem; text-align: center; }
.hosts-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem;
}
.host-card {
  margin: 0; border-radius: 6px; overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.host-card img { width: 100%; height: auto; display: block; transition: transform 0.7s var(--ease); }
.host-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.host-card:hover img { transform: scale(1.02); }

/* ─── CONTACT ─────────────────────────────────────── */
.contact { padding: clamp(5rem, 10vw, 9rem) 4rem; background: var(--bark); position: relative; overflow: hidden; }
.contact::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(184,151,90,0.1); pointer-events: none;
}
.contact-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: center; }
.contact .section-label { color: var(--gold-light); }
.contact .section-title { color: var(--ivory); }
.contact .section-body { color: rgba(250,247,242,0.65); max-width: 480px; }
.contact-email-link {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic;
  color: var(--gold-light); text-decoration: none; margin-top: 2rem; transition: color 0.3s;
}
.contact-email-link:hover { color: var(--ivory); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,247,242,0.6); font-weight: 400; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(250,247,242,0.07);
  border: 1px solid rgba(250,247,242,0.18);
  color: var(--ivory);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
  padding: 0.9rem 1rem; outline: none; transition: border-color 0.3s, background 0.3s;
  width: 100%; -webkit-appearance: none; border-radius: 3px; min-height: 48px;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(250,247,242,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold-light); background: rgba(250,247,242,0.1); }
.form-group select option { background: var(--bark); color: var(--ivory); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit {
  font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--charcoal); background: var(--gold-light); border: none;
  padding: 1.05rem 2.6rem; cursor: pointer; font-weight: 500;
  transition: background 0.3s, transform 0.3s var(--ease); width: 100%; margin-top: 0.5rem; border-radius: 2px;
}
.form-submit:hover { background: var(--gold); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.form-note { font-size: 0.85rem; min-height: 1.1em; color: var(--gold-light); margin-top: 0.2rem; }
.form-note.err { color: var(--rose-pale); }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--charcoal); padding: 3.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
}
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 300; color: var(--ivory); letter-spacing: 0.06em; }
.footer-center { text-align: center; font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(250,247,242,0.4); line-height: 1.6; }
.footer-social { display: flex; gap: 1rem; align-items: center; }
.social-icon {
  width: 42px; height: 42px; border: 1px solid rgba(250,247,242,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: border-color 0.3s, background 0.3s;
}
.social-icon:hover { border-color: var(--gold-light); background: rgba(212,184,128,0.1); }
.social-icon svg { width: 18px; height: 18px; fill: none; stroke: rgba(250,247,242,0.7); stroke-width: 1.5; transition: stroke 0.3s; }
.social-icon:hover svg { stroke: var(--gold-light); }

/* ─── FLOATING CTA (mobile) ───────────────────────── */
.float-cta {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 900;
  background: var(--gold); color: var(--charcoal);
  font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.95rem 1.6rem; border-radius: 999px; text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  opacity: 0; transform: translateY(20px) scale(0.9); pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); display: none;
}
.float-cta.show { opacity: 1; transform: none; pointer-events: auto; }

/* ─── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hosts-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    background: var(--ivory); width: min(80vw, 340px); height: 100dvh; left: auto; right: 0;
    padding: 3rem; transform: translateX(100%); transition: transform 0.45s var(--ease);
    box-shadow: var(--shadow-lg); gap: 2rem;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--bark); font-size: 1rem; }
  .nav-links a::after { display: none; }
  .about, .retreats, .pillars, .hosts, .contact { padding-left: 1.5rem; padding-right: 1.5rem; }
  .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { order: -1; max-width: 440px; margin: 0 auto; }
  .pillars-grid, .retreats-grid { grid-template-columns: 1fr; }
  .pillars-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .pillars-header p { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.5rem; flex-direction: column; text-align: center; }
  .float-cta { display: inline-flex; }
  .about-image-accent { display: none; }
}
@media (max-width: 540px) {
  .hosts-grid { grid-template-columns: 1fr; max-width: 420px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons a { text-align: center; }
}

/* ─── REDUCED MOTION ──────────────────────────────── */
@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; }
  .reveal { opacity: 1; transform: none; }
  .hero-content { opacity: 1; transform: none; animation: none; }
  .hero-bg { transform: none; }
}
