:root {
  --ink: #173f2b;
  --ink-deep: #0e2c1d;
  --cream: #fffaf1;
  --paper: #fffdf8;
  --rose: #b95e65;
  --rose-deep: #93444d;
  --blush: #f7e4df;
  --gold: #b08a3b;
  --sage: #dfe9dd;
  --muted: #5f6d63;
  --line: rgba(23, 63, 43, .14);
  --shadow: 0 24px 65px rgba(35, 48, 37, .12);
  --radius: 28px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-deep);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }

.sr-only, .skip-link:not(:focus) {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px; left: 12px;
  padding: 10px 14px;
  color: white; background: var(--ink);
  border-radius: 8px;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.section { padding: 108px 0; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--rose-deep);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; }
h2 { margin-bottom: 22px; font-size: clamp(2.4rem, 5vw, 4.8rem); letter-spacing: -.045em; }
h3 { font-size: 1.45rem; }
p { color: var(--muted); }
.centered { max-width: 760px; margin: 0 auto 58px; text-align: center; }
.centered > p:last-child { max-width: 620px; margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 248, .88);
  border-bottom: 1px solid rgba(23, 63, 43, .08);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand span { font: 500 1.5rem/1 var(--serif); letter-spacing: -.03em; }
.brand em { color: var(--rose); font-style: italic; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
}
.site-nav a:not(.nav-cta):hover { color: var(--rose-deep); }
.nav-cta {
  padding: 11px 17px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
}
.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 10% 5%, rgba(247, 228, 223, .7), transparent 33%),
    linear-gradient(135deg, #fffdf8 0%, #fff9ef 58%, #edf3e8 100%);
}
.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(3.9rem, 7.2vw, 7.2rem);
  letter-spacing: -.065em;
}
.hero h1 span { color: var(--rose-deep); font-style: italic; }
.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 1.18rem;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 26px rgba(23, 63, 43, .2);
}
.button-primary:hover { background: var(--ink-deep); }
.text-link { color: var(--ink); font-weight: 800; text-decoration: none; }
.text-link span { color: var(--rose); }
.hero-notes {
  display: flex;
  gap: 26px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}
.hero-notes li::before {
  content: "•";
  margin-right: 8px;
  color: var(--gold);
}
.hero-visual { position: relative; z-index: 1; }
.image-frame {
  overflow: hidden;
  border-radius: 46% 46% 28px 28px;
  border: 1px solid rgba(176, 138, 59, .25);
  box-shadow: var(--shadow);
}
.image-frame img {
  width: 100%;
  aspect-ratio: .85;
  object-fit: cover;
  object-position: center 15%;
}
.floating-card {
  position: absolute;
  right: -20px;
  bottom: 34px;
  width: 245px;
  padding: 20px;
  display: grid;
  gap: 3px;
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(176, 138, 59, .3);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(23, 63, 43, .15);
  backdrop-filter: blur(10px);
}
.floating-card .card-kicker {
  color: var(--rose-deep);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.floating-card strong { font-family: var(--serif); font-size: 1.25rem; }
.floating-card span:last-child { color: var(--muted); font-size: .78rem; }
.hero-bloom {
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  opacity: .2;
  border: 60px solid var(--rose);
  border-radius: 50% 48% 52% 45%;
  filter: blur(2px);
}

.trust-strip { background: var(--ink); color: white; }
.trust-grid {
  min-height: 138px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.trust-grid > div {
  min-height: 64px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-content: center;
  padding: 18px 34px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.trust-grid > div:last-child { border-right: 0; }
.trust-grid .mini-icon {
  grid-row: 1 / 3;
  color: #e7c985;
  font-size: 1.3rem;
}
.trust-grid strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.trust-grid small { color: rgba(255,255,255,.65); }

.benefits { background: var(--paper); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card {
  min-height: 280px;
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(23, 63, 43, .06);
}
.benefit-card .number {
  display: block;
  margin-bottom: 48px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1.1rem;
}
.benefit-card h3 { margin-bottom: 14px; color: var(--ink); font-size: 1.8rem; }

.ingredients {
  overflow: hidden;
  background: linear-gradient(120deg, #edf3e8 0%, #f8eee8 100%);
}
.ingredients-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 70px;
}
.ingredients-copy > p:not(.eyebrow) { max-width: 520px; }
.ingredient-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.ingredient-list span {
  padding: 8px 13px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(23,63,43,.14);
  border-radius: 999px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 750;
}
.ingredients-art {
  margin: 0;
  overflow: hidden;
  background: white;
  border: 10px solid rgba(255,255,255,.7);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.ingredients-art img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}
.ingredients-art figcaption {
  padding: 13px 18px 7px;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

.product-section { background: #fffaf1; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 90px;
}
.label-stage {
  position: relative;
  display: grid;
  place-items: center;
}
.label-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(34, 48, 36, .16);
}
.label-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  background: var(--blush);
  border-radius: 50%;
  filter: blur(2px);
}
.product-copy > p:not(.eyebrow) { max-width: 540px; font-size: 1.05rem; }
.product-facts {
  margin: 34px 0;
  border-top: 1px solid var(--line);
}
.product-facts div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.product-facts dt { color: var(--muted); }
.product-facts dd { margin: 0; color: var(--ink); font-weight: 800; }
.microcopy { margin: 12px 0 0; font-size: .78rem !important; }

.ritual { background: white; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { padding: 36px 28px; border-top: 1px solid var(--gold); }
.step span {
  display: grid;
  width: 42px; height: 42px;
  place-items: center;
  margin-bottom: 32px;
  color: white;
  background: var(--rose);
  border-radius: 50%;
  font-family: var(--serif);
}
.step h3 { color: var(--ink); font-size: 1.7rem; }
.formula-note {
  max-width: 850px;
  margin: 48px auto 0;
  padding: 15px 18px;
  color: #735e31;
  background: #fff7df;
  border: 1px solid #ead8a4;
  border-radius: 12px;
  font-size: .85rem;
  text-align: center;
}

.story { padding-top: 0; background: white; }
.founder-story {
  position: relative;
  overflow: hidden;
  padding: 76px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  color: white;
  background:
    radial-gradient(circle at 6% 7%, rgba(230, 200, 128, .18), transparent 26%),
    radial-gradient(circle at 96% 100%, rgba(185, 94, 101, .2), transparent 30%),
    linear-gradient(135deg, #173f2b 0%, #0e2c1d 100%);
  border-radius: 34px;
}
.founder-story::after {
  content: "";
  position: absolute;
  right: -105px;
  top: -120px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(230, 200, 128, .2);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(230, 200, 128, .035),
    0 0 0 68px rgba(230, 200, 128, .025);
}
.founder-heading,
.founder-portrait,
.founder-narrative,
.founder-pillars {
  position: relative;
  z-index: 1;
}
.founder-heading {
  text-align: center;
}
.founder-heading h2 {
  margin-bottom: 0;
  color: white;
}
.founder-heading .eyebrow { color: #e6c880; }
.founder-portrait {
  margin: 0 auto;
  max-width: 420px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(230, 200, 128, .24);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}
.founder-portrait img {
  width: 100%;
  display: block;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: 52% 15%;
}
.founder-portrait figcaption {
  padding: 12px 16px 14px;
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  text-align: center;
}
.founder-narrative {
  max-width: 860px;
  margin: 0 auto;
}
.founder-narrative p {
  color: rgba(255,255,255,.76);
}
.founder-narrative strong { color: white; }
.founder-narrative em { color: #f0d68f; }
.founder-narrative .founder-lede {
  margin-bottom: 22px;
  color: white;
  font: 500 1.42rem/1.5 var(--serif);
}
.founder-narrative blockquote {
  margin: 34px 0 0;
  padding: 22px 0 2px 27px;
  color: #f4dfaa;
  border-left: 2px solid var(--rose);
  font: italic 1.45rem/1.45 var(--serif);
}
.founder-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
}
.founder-pillars article {
  padding: 30px;
  background: rgba(14,44,29,.82);
}
.founder-pillars span {
  color: #e6c880;
  font: 500 .82rem/1 var(--sans);
  letter-spacing: .12em;
}
.founder-pillars h3 {
  margin: 22px 0 10px;
  color: white;
  font-size: 1.48rem;
}
.founder-pillars p {
  margin-bottom: 0;
  color: rgba(255,255,255,.64);
  font-size: .9rem;
}

.faq { background: #f5f0e8; }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.accordion details { border-top: 1px solid rgba(23,63,43,.22); }
.accordion details:last-child { border-bottom: 1px solid rgba(23,63,43,.22); }
.accordion summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.32rem;
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 19px;
  color: var(--rose);
  font-family: var(--sans);
  font-size: 1.8rem;
}
.accordion details[open] summary::after { content: "–"; }
.accordion details p { max-width: 700px; padding-right: 30px; }

.launch { padding: 95px 0; background: white; }
.launch-card {
  padding: 64px 70px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 70px;
  color: white;
  background: linear-gradient(135deg, var(--rose-deep), #7e3340);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.launch-card h2 { margin-bottom: 15px; color: white; font-size: clamp(2.5rem, 5vw, 4.6rem); }
.launch-card p { color: rgba(255,255,255,.78); }
.launch-card .eyebrow { color: #f6d6d8; }
.signup-form label { display: block; margin-bottom: 8px; font-size: .82rem; font-weight: 800; }
.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 7px;
  background: white;
  border-radius: 999px;
}
.input-row input {
  min-width: 0;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: var(--ink-deep);
  background: transparent;
}
.button-light { color: var(--ink); background: #efe0ad; }
.form-status { min-height: 24px; margin: 10px 0 0; font-size: .88rem; }
.privacy-note { margin: 0; font-size: .72rem; }

/* Honeypot field — visually removed but still submitted, so bots trip it. */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
/* Hidden POST target so submitting never navigates the page. */
.signup-frame { display: none; }

.site-footer { padding: 42px 0; background: var(--ink-deep); }
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.footer-brand { color: white; }
.footer-grid p { margin: 0; color: rgba(255,255,255,.55); font-size: .82rem; }
.footer-grid > p:nth-child(2) { text-align: center; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .section { padding: 82px 0; }
  .menu-button {
    display: grid;
    width: 44px; height: 44px;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }
  .menu-button span:not(.sr-only) { width: 19px; height: 2px; background: var(--ink); }
  .site-nav {
    position: absolute;
    top: 78px; left: 20px; right: 20px;
    padding: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav .nav-cta { text-align: center; }

  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { text-align: center; }
  .hero-lede { margin-inline: auto; }
  .hero-actions, .hero-notes { justify-content: center; }
  .hero-visual { width: min(620px, 100%); margin-inline: auto; }
  .floating-card { right: 18px; }

  .trust-grid { grid-template-columns: 1fr; padding: 18px 0; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .trust-grid > div:last-child { border-bottom: 0; }

  .benefit-grid, .steps { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .benefit-card .number { margin-bottom: 24px; }

  .ingredients-grid, .product-grid, .faq-grid, .launch-card {
    grid-template-columns: 1fr;
  }
  .ingredients-grid, .product-grid, .faq-grid { gap: 50px; }
  .product-copy { text-align: center; }
  .product-copy > p:not(.eyebrow) { margin-inline: auto; }
  .product-facts { text-align: left; }
  .founder-story {
    gap: 32px;
  }
  .founder-portrait {
    max-width: 440px;
  }
  .founder-pillars { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .launch-card { gap: 35px; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-grid > p:nth-child(2) { text-align: center; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .nav-wrap { min-height: 70px; }
  .brand span { font-size: 1.25rem; }
  .site-nav { top: 70px; left: 14px; right: 14px; }

  .hero { padding-top: 46px; }
  .hero h1 { font-size: clamp(3.15rem, 16vw, 5rem); }
  .hero-lede { font-size: 1rem; }
  .hero-notes { display: grid; gap: 8px; }
  .floating-card {
    position: relative;
    right: auto; bottom: auto;
    width: calc(100% - 30px);
    margin: -48px auto 0;
  }

  h2 { font-size: clamp(2.35rem, 13vw, 3.5rem); }
  .ingredients-art img { min-height: 300px; }
  .founder-story, .launch-card { padding: 42px 26px; border-radius: 24px; }
  .founder-heading h2 { margin-bottom: 0; }
  .founder-portrait {
    max-width: 100%;
  }
  .founder-portrait img {
    aspect-ratio: 0.92;
    object-position: 52% 15%;
  }
  .founder-narrative .founder-lede { font-size: 1.22rem; }
  .founder-narrative blockquote { font-size: 1.25rem; }
  .product-facts div { grid-template-columns: 115px 1fr; }
  .input-row { grid-template-columns: 1fr; border-radius: 18px; }
  .input-row input { min-height: 48px; }
  .button-light { width: 100%; }
}
