@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,500&display=swap');

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, video { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Palette — lean dark theme with soft pastels */
  --ink-900: #0f1210;
  --ink-800: #161c18;
  --ink-700: #1e2721;
  --ink-600: #2a362d;
  --ink-500: #3a4d3f;

  --sage:    #6bbfa0;   /* primary ~162° */
  --sage-lt: #9dd8c0;
  --sage-dk: #4a9e80;

  --peach:   #f4c09a;
  --peach-lt:#fad8bc;
  --rose:    #e8a4a0;
  --rose-lt: #f2c9c7;
  --lavender:#b8a8d4;
  --lav-lt:  #d4cce8;
  --cream:   #f6f1ea;

  /* Text on dark */
  --text-primary:   #edf2ee;
  --text-secondary: #a8bfac;
  --text-muted:     #6a8570;

  /* Surfaces */
  --surface-0: #0f1210;
  --surface-1: #161c18;
  --surface-2: #1e2721;
  --surface-3: #253029;

  /* Spacing scale (8-base) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;
  --sp-8: 8rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 2px 16px rgba(0,0,0,.35), 0 0 0 1px rgba(107,191,160,.08);
  --shadow-glow: 0 0 32px rgba(107,191,160,.18);
  --shadow-btn:  0 4px 20px rgba(107,191,160,.30);

  /* Typography */
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur: 220ms;
}

/* ─── BASE ───────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1vw + 0.6rem, 1.0625rem);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--surface-0);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── CONTAINER ──────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-primary);
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.75rem, 3vw + .6rem, 3rem);  letter-spacing: -.015em; }
h3 { font-size: clamp(1.2rem, 2vw + .4rem, 1.6rem); letter-spacing: -.01em; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { color: var(--text-secondary); max-width: 68ch; }
p.wide { max-width: 100%; }

strong { color: var(--text-primary); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(107,191,160,.12);
  border: 1px solid rgba(107,191,160,.25);
  border-radius: var(--r-pill);
  padding: .35rem .9rem;
  margin-bottom: var(--sp-3);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

.lead {
  font-size: clamp(1.05rem, 1.5vw + .4rem, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 60ch;
}

/* ─── LINKS ──────────────────────────────────────────────── */
a.inline-link {
  color: var(--sage);
  border-bottom: 1px solid rgba(107,191,160,.35);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
a.inline-link:hover { color: var(--sage-lt); border-color: var(--sage-lt); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: .75rem 1.75rem;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease);
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--sage);
  color: var(--ink-900);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--sage-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,191,160,.40);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255,255,255,.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: .84rem;
  padding: .55rem 1.25rem;
}

.btn-peach {
  background: var(--peach);
  color: var(--ink-900);
}
.btn-peach:hover {
  background: var(--peach-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,192,154,.35);
}

/* ─── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,18,16,.80);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(107,191,160,.14);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: .9rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.nav-brand svg { flex-shrink: 0; }

.nav-brand span.brand-accent { color: var(--sage); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 2vw, 1.75rem);
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: .3rem .1rem;
  position: relative;
  transition: color var(--dur) var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--sage);
  border-radius: 2px;
  transition: width var(--dur) var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

/* top announcement bar */
.top-bar {
  background: rgba(107,191,160,.10);
  border-bottom: 1px solid rgba(107,191,160,.18);
  padding: .45rem 0;
  text-align: center;
  font-size: .8rem;
  color: var(--sage-lt);
  font-weight: 500;
  letter-spacing: .03em;
}
.top-bar a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--surface-1);
  border-top: 1px solid rgba(107,191,160,.10);
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand-col {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}

.footer-tagline {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
  max-width: 28ch;
}

.footer-socials {
  display: flex;
  gap: .75rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-muted);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.social-icon:hover {
  background: rgba(107,191,160,.12);
  color: var(--sage);
  border-color: rgba(107,191,160,.30);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}

.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }

.footer-col ul li a {
  font-size: .9rem;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}
.footer-col ul li a:hover { color: var(--sage); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .82rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--sp-3);
}
.footer-legal a {
  font-size: .82rem;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}
.footer-legal a:hover { color: var(--sage); }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.section--alt {
  background: var(--surface-1);
}

.section--darker {
  background: var(--surface-2);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header p {
  margin-top: var(--sp-2);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero-section {
  padding-top: clamp(4rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(107,191,160,.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(184,168,212,.08) 0%, transparent 60%),
    var(--surface-0);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(107,191,160,.08) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: .5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-content {}

.hero-actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: var(--sp-4);
}

.hero-image-slot {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border: 1px solid rgba(107,191,160,.15);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.hero-image-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.hero-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
}

.hero-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: rgba(15,18,16,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(107,191,160,.25);
  border-radius: var(--r-md);
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-badge .badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

h1.hero-title { margin-block: var(--sp-2) var(--sp-3); }
h1.hero-title em { font-style: italic; color: var(--sage); }

/* ─── CARDS ──────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.card {
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: rgba(107,191,160,.22);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  font-size: 1.4rem;
}

.card-icon--sage    { background: rgba(107,191,160,.15); color: var(--sage); }
.card-icon--peach   { background: rgba(244,192,154,.15); color: var(--peach); }
.card-icon--rose    { background: rgba(232,164,160,.15); color: var(--rose); }
.card-icon--lav     { background: rgba(184,168,212,.15); color: var(--lavender); }

.card h3 { margin-bottom: var(--sp-2); }
.card p  { font-size: .92rem; }

/* ─── STATS ──────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.stat-item {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--sp-3);
  border-radius: var(--r-lg);
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
  border-radius: 0 0 2px 2px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw + .5rem, 3.5rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: .35rem;
}

.stat-unit {
  color: var(--sage);
}

.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .03em;
}

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, rgba(107,191,160,.12) 0%, rgba(184,168,212,.10) 100%);
  border: 1px solid rgba(107,191,160,.18);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(107,191,160,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band .cta-actions {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-4);
}

.cta-band p { margin-inline: auto; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}

.faq-item:hover { border-color: rgba(107,191,160,.20); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(107,191,160,.12);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease);
  font-size: .7rem;
}

details[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: .93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── GENERIC CONTENT SECTION ────────────────────────────── */
.content-section-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.content-body { display: flex; flex-direction: column; gap: var(--sp-3); }

/* ─── FORMS ──────────────────────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: .03em;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface-2);
  border: 1.5px solid rgba(255,255,255,.10);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  color: var(--text-primary);
  font-size: .95rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,191,160,.15);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

/* ─── DIVIDER ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,191,160,.20), transparent);
  margin-block: 0;
}

/* ─── PILL TAG ───────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: var(--r-pill);
}
.tag--sage    { background: rgba(107,191,160,.15); color: var(--sage); }
.tag--peach   { background: rgba(244,192,154,.15); color: var(--peach); }
.tag--lav     { background: rgba(184,168,212,.15); color: var(--lavender); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image-slot {
    max-width: 540px;
    margin-inline: auto;
    width: 100%;
  }
  .content-section-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(15,18,16,.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: var(--sp-4);
    z-index: 200;
  }
  .nav-links.open a {
    font-size: 1.4rem;
    font-weight: 600;
  }
  .nav-cta.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 201;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 400px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
} body{margin:0} html{-webkit-text-size-adjust:100%} img,svg,video{max-width:100%;height:auto} *{box-sizing:border-box} 