:root {
  --ink: #18322b;
  --ink-deep: #0e241e;
  --forest: #1e4a3b;
  --forest-soft: #315f50;
  --sage: #8fa898;
  --sage-pale: #dfe8e0;
  --gold: #b58c4a;
  --gold-pale: #e7d8ba;
  --cream: #f7f2e9;
  --paper: #fffdf8;
  --stone: #e8dfd0;
  --muted: #61706a;
  --line: rgba(24, 50, 43, .14);
  --shadow: 0 22px 60px rgba(14, 36, 30, .12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold-pale); color: var(--ink-deep); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink-deep);
  color: #fff;
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  background: var(--ink-deep);
  color: rgba(255,255,255,.82);
  text-align: center;
  padding: 8px 16px;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(24,50,43,.08);
  background: rgba(255,253,248,.92);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(calc(100% - 40px), var(--container));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 255px; height: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  text-decoration: none;
  font-size: .91rem;
  font-weight: 650;
  color: #36534a;
  transition: color .2s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--forest) !important;
}
.nav-cta:hover { background: var(--forest); color: #fff !important; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  position: relative;
  transition: .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 108px 0; }
.section-sm { padding: 72px 0; }
.section-cream { background: var(--cream); }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 30px; height: 1px; background: currentColor; }
h1, h2, h3 { margin-top: 0; color: var(--ink-deep); line-height: 1.08; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.03em; }
h1 { font-size: clamp(3rem, 6.5vw, 6.4rem); }
h2 { font-size: clamp(2.35rem, 4vw, 4.35rem); }
h3 { font-size: 1.2rem; }
p { margin-top: 0; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.28rem); color: var(--muted); max-width: 720px; }
.muted { color: var(--muted); }
.max-copy { max-width: 760px; }
.center { text-align: center; }
.center .lead, .center .max-copy { margin-inline: auto; }

.hero {
  min-height: 740px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 13% 20%, rgba(181,140,74,.12), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #f6f0e6 58%, #edf3ee 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -90px -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(181,140,74,.2);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 40px;
  padding: 72px 0 80px;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 24px; max-width: 720px; }
.hero h1 em { color: var(--forest-soft); font-weight: 400; }
.hero .lead { max-width: 620px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink-deep); color: #fff; box-shadow: 0 12px 30px rgba(14,36,30,.18); }
.button-primary:hover { background: var(--forest); }
.button-secondary { background: rgba(255,255,255,.72); border: 1px solid var(--line); color: var(--ink); }
.button-secondary:hover { background: #fff; box-shadow: 0 10px 25px rgba(14,36,30,.08); }
.button-gold { background: var(--gold); color: #fff; }
.microcopy { margin: 17px 0 0; font-size: .84rem; color: var(--muted); }
.hero-art { position: relative; z-index: 1; }
.hero-art img { width: 100%; display: block; filter: saturate(.95); }
.hero-badge {
  position: absolute;
  right: 2%;
  top: 15%;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255,253,248,.92);
  border: 1px solid rgba(181,140,74,.34);
  box-shadow: var(--shadow);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
  transform: rotate(6deg);
}

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 27px 32px; display: flex; align-items: center; gap: 16px; justify-content: center; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; color: var(--gold); font-weight: 900; }
.trust-item strong { display: block; font-size: .95rem; }
.trust-item span { display: block; color: var(--muted); font-size: .82rem; }

.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.intro-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  font-family: Georgia, serif;
  font-size: 1.24rem;
  color: var(--forest);
}

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.card {
  padding: 30px;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 30px rgba(14,36,30,.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(181,140,74,.4); }
.card-icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 44px; background: var(--cream); color: var(--forest); }
.card-icon svg { width: 27px; height: 27px; }
.card p { color: var(--muted); font-size: .94rem; }
.card-label { margin-top: 22px; color: var(--gold); font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }

.standards-section { background: var(--ink-deep); color: rgba(255,255,255,.76); position: relative; overflow: hidden; }
.standards-section::after { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; top: -180px; border: 1px solid rgba(181,140,74,.2); border-radius: 50%; }
.standards-section h2, .standards-section h3 { color: #fff; }
.standards-section .section-kicker { color: var(--gold-pale); }
.standards-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.standard-list { counter-reset: standard; }
.standard-item { position: relative; padding: 26px 0 26px 72px; border-bottom: 1px solid rgba(255,255,255,.12); }
.standard-item:first-child { padding-top: 4px; }
.standard-item::before {
  counter-increment: standard;
  content: "0" counter(standard);
  position: absolute;
  left: 0;
  top: 22px;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  font-size: 1.5rem;
}
.standard-item:first-child::before { top: 0; }
.standard-item p { margin-bottom: 0; color: rgba(255,255,255,.64); }

.botanical-divider { height: 140px; background: var(--paper) url('botanical-divider.svg') center / cover no-repeat; }

.buy-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 55px;
  padding: 58px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f0e6d3, #e3ede5);
  border: 1px solid rgba(24,50,43,.1);
  box-shadow: var(--shadow);
}
.search-box {
  background: rgba(255,255,255,.82);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24,50,43,.1);
}
.search-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 15px;
}
.search-field span { font-weight: 700; color: var(--ink-deep); }
.search-field small { color: var(--muted); }
.steps { display: grid; gap: 22px; }
.step { display: grid; grid-template-columns: 45px 1fr; gap: 17px; }
.step-num { width: 45px; height: 45px; border-radius: 50%; display: grid; place-items: center; background: var(--ink-deep); color: #fff; font-weight: 800; }
.step p { color: var(--muted); margin-bottom: 0; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 75px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; padding: 23px 46px 23px 0; font-weight: 750; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 3px; top: 18px; font-size: 1.6rem; color: var(--gold); font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 46px 22px 0; margin: 0; color: var(--muted); }

.page-hero { padding: 95px 0 80px; background: linear-gradient(135deg, var(--cream), #edf3ee); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(3.2rem, 6vw, 5.9rem); max-width: 900px; margin-bottom: 22px; }
.page-hero .lead { max-width: 780px; }
.page-mark { width: 82px; margin-bottom: 28px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.value-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.value-card .number { font-family: Georgia, serif; color: var(--gold); font-size: 1.35rem; margin-bottom: 40px; }
.value-card p { color: var(--muted); margin-bottom: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.callout { padding: 38px; border-radius: var(--radius-md); background: var(--cream); border-left: 4px solid var(--gold); }
.callout p:last-child { margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.contact-card h3 { margin-bottom: 12px; }
.contact-card p { color: var(--muted); }
.contact-card .contact-tag { display: inline-block; margin-top: 20px; padding: 7px 11px; border-radius: 999px; background: var(--cream); color: var(--forest); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 70px; align-items: start; }
.legal-nav { position: sticky; top: 125px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.legal-nav strong { display: block; margin-bottom: 12px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.legal-nav a { display: block; padding: 8px 0; text-decoration: none; font-size: .88rem; color: var(--muted); }
.legal-nav a:hover { color: var(--forest); }
.legal-copy { max-width: 820px; }
.legal-copy h2 { font-family: inherit; font-size: 1.55rem; font-weight: 800; letter-spacing: -.01em; margin: 48px 0 14px; scroll-margin-top: 120px; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { margin-top: 28px; }
.legal-copy p, .legal-copy li { color: #53635d; }
.legal-copy ul { padding-left: 20px; }
.legal-meta { display: inline-flex; gap: 10px; align-items: center; padding: 9px 13px; border-radius: 999px; background: var(--cream); color: var(--forest); font-size: .8rem; font-weight: 750; margin-bottom: 30px; }
.notice { padding: 22px; border-radius: 15px; background: #fff9eb; border: 1px solid #ead9ac; color: #68572c; }

.site-footer { background: var(--ink-deep); color: rgba(255,255,255,.68); padding: 68px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr; gap: 70px; }
.footer-brand img { width: 245px; filter: brightness(0) invert(1); opacity: .94; }
.footer-brand p { max-width: 420px; margin: 20px 0 0; }
.footer-column h3 { color: #fff; font-family: inherit; font-size: .78rem; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 16px; }
.footer-column a { display: block; color: rgba(255,255,255,.66); text-decoration: none; padding: 5px 0; font-size: .9rem; }
.footer-column a:hover { color: #fff; }
.footer-disclaimer { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .74rem; line-height: 1.55; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 22px; font-size: .78rem; }
.footer-bottom a { text-decoration: none; }

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  padding: 13px 17px;
  border-radius: 12px;
  background: var(--ink-deep);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: .88rem;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }

.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 20px; }
.error-code { font-family: Georgia, serif; font-size: clamp(6rem, 20vw, 13rem); line-height: .8; color: var(--gold-pale); margin-bottom: 28px; }

:focus-visible { outline: 3px solid rgba(181,140,74,.48); outline-offset: 3px; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; }
  .nav-cta { margin-top: 6px; }
  .hero { min-height: auto; }
  .hero-grid, .standards-grid, .buy-panel, .faq-grid, .intro-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 60px; }
  .hero-copy { text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { max-width: 680px; margin: -30px auto 0; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .standards-grid, .faq-grid, .intro-grid { gap: 45px; }
  .buy-panel { padding: 40px; }
  .value-grid, .contact-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-nav { position: static; display: none; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; gap: 35px; }
}

@media (max-width: 680px) {
  .announcement { font-size: .64rem; }
  .nav-shell { min-height: 72px; width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 205px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-sm { padding: 55px 0; }
  h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .hero-grid { padding: 48px 0 55px; }
  .hero h1 { margin-bottom: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-badge { width: 100px; height: 100px; font-size: .59rem; right: 0; top: 20%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; padding: 20px 8px; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card-icon { margin-bottom: 28px; }
  .buy-panel { padding: 25px; }
  .search-field { align-items: flex-start; flex-direction: column; }
  .botanical-divider { height: 80px; }
  .page-hero { padding: 68px 0 58px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
