@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --palm:    #1a4a2e;
  --palm-lt: #2d7a50;
  --mint:    #3daa6e;
  --mint-lt: #e8f5e0;
  --pink:    #e85d8a;
  --pink-lt: #fde8f0;
  --gold:    #f9c64a;
  --gold-lt: #fff9e0;
  --aqua:    #5bc8d8;
  --aqua-lt: #e0f7fa;
  --mango:   #ff8c42;
  --cream:   #fdfaf5;
  --text:    #1c2b22;
  --muted:   #5a7a65;
  --border:  rgba(26,74,46,0.12);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(26,74,46,0.10);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--palm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}
.nav-links .nav-private a {
  color: var(--pink);
  border: 1px solid rgba(232,93,138,0.4);
}
.nav-links .nav-private a:hover {
  background: rgba(232,93,138,0.15);
  color: var(--pink);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--mint-lt) 0%, #fff9f0 50%, var(--pink-lt) 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 20%, var(--pink) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, var(--mint) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, var(--gold) 1px, transparent 1px);
  background-size: 48px 48px, 64px 64px, 32px 32px;
}
.hero-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.hero-accent-1 {
  width: 420px; height: 420px;
  background: rgba(61,170,110,0.18);
  top: -80px; right: -80px;
}
.hero-accent-2 {
  width: 280px; height: 280px;
  background: rgba(232,93,138,0.14);
  bottom: 60px; left: -60px;
}
.hero-accent-3 {
  width: 200px; height: 200px;
  background: rgba(249,198,74,0.18);
  top: 40%; right: 25%;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 2.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--palm);
  margin-bottom: 0.5rem;
}
.hero-name em {
  font-style: italic;
  color: var(--mint);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero-location {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-location::before {
  content: '📍';
  font-size: 0.85rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--palm);
  color: white;
  box-shadow: 0 4px 16px rgba(26,74,46,0.3);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(26,74,46,0.35); }
.btn-outline {
  background: transparent;
  color: var(--palm);
  border: 2px solid var(--palm);
}
.btn-outline:hover { background: var(--palm); color: white; }
.btn-pink {
  background: var(--pink);
  color: white;
  box-shadow: 0 4px 16px rgba(232,93,138,0.3);
}
.btn-pink:hover { box-shadow: 0 8px 24px rgba(232,93,138,0.4); }

/* ── SECTIONS ───────────────────────────────────────────────── */
section { padding: 5rem 2.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--palm);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--mint); }
.divider {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  margin-bottom: 2rem;
}

/* ── STAT STRIP ─────────────────────────────────────────────── */
.stat-strip {
  background: var(--palm);
  padding: 3rem 2.5rem;
}
.stat-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,74,46,0.14); }
.card-accent-bar {
  height: 4px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--palm);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2.5rem;
  text-align: center;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--palm);
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.65rem 1rem; }
  .nav-burger { display: flex; }
  section { padding: 3.5rem 1.25rem; }
  .hero-content { padding: 3.5rem 1.25rem 3rem; }
  .stat-strip { padding: 2rem 1.25rem; }
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--palm) 0%, #2d6b47 100%);
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(249,198,74,0.12);
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
}
.page-hero-title em { color: var(--gold); font-style: italic; }
