:root {
  --cream: #fff7e8;
  --cream-2: #f7ecd6;
  --green: #3f6f4a;
  --green-dark: #23432d;
  --orange: #d86b36;
  --gold: #a08a3d;
  --ink: #243326;
  --muted: #667260;
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 70px rgba(57, 77, 46, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 107, 54, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--cream), #fffdf8 55%, var(--cream-2));
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 247, 232, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(63, 111, 74, 0.1);
}

.brand {
  color: var(--green-dark);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem); font-weight: 700; }
.site-nav a { text-decoration: none; color: var(--green-dark); }
.site-nav a:hover { color: var(--orange); }
.nav-toggle { display: none; }

.section-pad { padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 6vw, 6rem); }
.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.hero-logo {
  width: clamp(260px, 36vw, 460px);
  margin: clamp(-1.5rem, -2vw, -0.75rem) auto clamp(0.75rem, 2vw, 1.25rem);
  filter: drop-shadow(0 14px 26px rgba(35, 67, 45, 0.14));
  transform: translateY(-1rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

h1, h2, h3 { color: var(--green-dark); line-height: 1.05; margin: 0 0 1rem; }
h1 { font-size: clamp(3.2rem, 8vw, 7.6rem); letter-spacing: -0.07em; }
h2 { font-size: clamp(2.2rem, 4.8vw, 4.6rem); letter-spacing: -0.05em; }
h3 { font-size: 1.4rem; }
p { margin-top: 0; }
.lede { font-size: clamp(1.1rem, 2vw, 1.35rem); max-width: 58rem; color: var(--muted); }
.hero-art {
  border-radius: 45% 55% 50% 50% / 54% 45% 55% 46%;
  background: rgba(63, 111, 74, 0.1);
  padding: clamp(1rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 42rem;
  margin-top: 2rem;
}
.waitlist-form input,
.waitlist-form button {
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.25rem;
  font: inherit;
}
.waitlist-form input {
  flex: 1 1 230px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(36, 51, 38, 0.12);
}
.waitlist-form button {
  flex: 0 0 auto;
  cursor: pointer;
  color: white;
  background: var(--green);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(63, 111, 74, 0.24);
}
.waitlist-form button:hover { background: var(--orange); }
.form-note { min-height: 1.5rem; color: var(--green); font-weight: 700; }

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  background: rgba(255, 255, 255, 0.45);
}
.section-image {
  border-radius: var(--radius);
  background: rgba(216, 107, 54, 0.08);
  box-shadow: var(--shadow);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.card {
  background: var(--card);
  border: 1px solid rgba(63, 111, 74, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: rgba(63, 111, 74, 0.06);
  border-radius: calc(var(--radius) - 10px);
  margin-bottom: 1.2rem;
}
.card p { color: var(--muted); }

.why {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  background: var(--green-dark);
  color: #f8f0df;
}
.why h2, .why .eyebrow { color: #f8f0df; }
.why p { color: rgba(248, 240, 223, 0.82); }
.name-cards { display: grid; gap: 1rem; }
.name-cards article {
  display: grid;
  gap: 0.25rem;
  padding: 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.name-cards strong { color: #ffd9a1; font-size: 1.35rem; }

.wellness { text-align: center; max-width: 960px; margin: 0 auto; }
.mini-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.mini-grid span {
  border-radius: 999px;
  padding: 1rem;
  background: rgba(63, 111, 74, 0.09);
  font-weight: 800;
  color: var(--green-dark);
}

.faq { background: rgba(255, 255, 255, 0.5); }
.faq-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto 2rem;
}
.faq-title img { width: 92px; }
.accordion { max-width: 980px; margin: 0 auto; display: grid; gap: 0.9rem; }
.faq-item {
  background: white;
  border-radius: 22px;
  border: 1px solid rgba(63, 111, 74, 0.12);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--green-dark);
  font: inherit;
  font-size: 1.1rem;
  font-weight: 900;
}
.faq-question::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 1.3rem;
}
.faq-item.open .faq-question::after { content: "–"; }
.faq-answer { display: none; padding: 0 1.4rem 1.3rem; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 6vw, 6rem);
  color: #f8f0df;
  background: #1e3024;
}
.site-footer h2 { color: #f8f0df; font-size: 1.7rem; }
.site-footer a { color: #ffd9a1; }
.footer-logo { width: 140px; filter: drop-shadow(0 10px 18px rgba(0,0,0,0.2)); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .hero, .split, .why, .site-footer { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: auto; }
}

@media (max-width: 720px) {
  .hero-logo {
    width: min(360px, 92%);
    margin-top: -0.75rem;
    transform: translateY(-0.5rem);
  }

  .nav-toggle {
    display: inline-flex;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: white;
    padding: 0.7rem 1rem;
    font: inherit;
    font-weight: 800;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: #fff8ec;
    border: 1px solid rgba(63, 111, 74, 0.15);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.85rem; }
  .cards, .mini-grid { grid-template-columns: 1fr; }
  .faq-title { align-items: flex-start; }
  .faq-title img { width: 62px; }
  .waitlist-form button { width: 100%; }
}
