:root {
  --bg: #faf6ee;
  --bg-alt: #f2ead9;
  --paper: #fffdf8;
  --ink: #2b2118;
  --ink-soft: #5a4d3f;
  --line: #e3d7bf;
  --accent: #8a2f28;
  --accent-dark: #6c231d;
  --accent-soft: #f6e2d8;
  --gold: #a97a3c;
  --pos: #3f6b3a;
  --neg: #a34b3f;
  --shadow: 0 20px 40px -20px rgba(43, 33, 24, 0.25);
  --radius: 16px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6em;
}
.eyebrow.center { text-align: center; }
.center { text-align: center; }

.section-lead {
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.08rem;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .025;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 3px 3px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  border-radius: 999px;
  padding: .9em 1.7em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  font-size: .95rem;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #fff9f2;
  box-shadow: 0 14px 28px -10px rgba(138,47,40,.6);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 16px 32px -8px rgba(138,47,40,.7); }
.btn-secondary {
  background: var(--paper);
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover { background: var(--accent-soft); }
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: transparent;
  box-shadow: none;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}
.btn-ghost:hover { color: var(--accent-dark); text-decoration-color: var(--accent); }
.btn-large { padding: 1.15em 2.2em; font-size: 1.05rem; }
.btn-small { padding: .65em 1.3em; font-size: .85rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .5em;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.logo-mark { font-size: 1.4rem; }
.nav-desktop {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-desktop a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
}

/* Hero */
.hero { padding: 72px 0 40px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  margin-bottom: .5em;
}
.hero h1 .hl {
  color: var(--accent);
  box-shadow: inset 0 -0.28em 0 var(--accent-soft);
}
.hero h1 .price-strike {
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: var(--neg);
  text-decoration-thickness: 2px;
  font-size: .85em;
}
.hero-sub { font-size: 1.1rem; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 1.6em 0 2.2em; }
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 1.6em;
  border-top: 1px solid var(--line);
}
.trust-item { display: flex; flex-direction: column; gap: .2em; max-width: 160px; }
.trust-item strong { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--accent); }
.trust-item span { font-size: .82rem; color: var(--ink-soft); }

.hero-art { display: flex; justify-content: center; }
.tree-svg { width: 100%; max-width: 380px; }
.tree-lines, .tree-lines-thin { stroke: var(--gold); opacity: .55; }
.tree-nodes circle { fill: var(--accent); opacity: .9; }
.tree-nodes circle:nth-child(1) { fill: var(--accent-dark); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 260px; margin: 0 auto; }
}

/* Sections generic */
section { padding: 88px 0; }
section h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }

.problem { background: var(--bg-alt); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.problem-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.problem-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--accent-soft);
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent;
  display: block;
  margin-bottom: .3em;
}
.problem-card h3 { font-size: 1.1rem; margin-bottom: .4em; }
.problem-card p { font-size: .93rem; margin: 0; }
.problem-note {
  max-width: 760px;
  margin: 44px auto 0;
  text-align: center;
  font-size: 1.05rem;
  padding: 28px 32px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px dashed var(--gold);
  color: var(--ink);
}
.problem-note strong { color: var(--accent); }

/* Compare */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  align-items: stretch;
}
.compare-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.compare-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}
.compare-badge {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--paper);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3em .9em;
  border-radius: 999px;
}
.compare-card h3 { font-size: 1.15rem; margin-bottom: .3em; }
.compare-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 1em;
}
.compare-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6em; }
.compare-card li { font-size: .92rem; padding-left: 1.5em; position: relative; color: var(--ink-soft); }
.compare-card li.pos::before { content: "✓"; position: absolute; left: 0; color: var(--pos); font-weight: 700; }
.compare-card li.neg::before { content: "×"; position: absolute; left: 0; color: var(--neg); font-weight: 700; }
.compare-footnote {
  font-size: .82rem;
  color: var(--ink-soft);
  text-align: center;
  max-width: 640px;
  margin: 28px auto 0;
}

@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card--featured { transform: none; }
}

/* Inside table */
.inside-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
}
.inside-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.inside-table th, .inside-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .93rem;
}
.inside-table thead th {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  background: var(--bg-alt);
}
.inside-table thead th span { display: block; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: .78rem; color: var(--ink-soft); }
.inside-table th:nth-child(2), .inside-table th:nth-child(3),
.inside-table td:nth-child(2), .inside-table td:nth-child(3) {
  text-align: center;
  width: 150px;
}
.inside-table td.yes { color: var(--pos); font-weight: 700; font-size: 1.1rem; }
.inside-table td.yes.small { font-size: .8rem; font-weight: 600; }
.inside-table td.no { color: var(--line); }
.inside-table tbody tr:last-child td { border-bottom: none; }

/* Pricing */
.pricing { background: var(--bg-alt); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card--featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow);
}
.price-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--gold);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .4em 1em;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; }
.price-desc { font-size: .93rem; min-height: 3.2em; }
.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--accent);
  margin: .2em 0 0;
}
.price-value span { font-size: 1.3rem; font-weight: 400; }
.price-anchor { font-size: .82rem; color: var(--ink-soft); margin: 0 0 1.2em; }
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2em;
  display: flex;
  flex-direction: column;
  gap: .7em;
  flex: 1;
}
.price-features li {
  font-size: .93rem;
  padding-left: 1.6em;
  position: relative;
  color: var(--ink-soft);
}
.price-features li::before {
  content: "🌿";
  position: absolute;
  left: 0;
  font-size: .85em;
}
.pricing-note { text-align: center; font-size: .85rem; margin-top: 24px; }

@media (max-width: 800px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Order */
.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.order-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.order-form label { font-size: .85rem; font-weight: 700; color: var(--ink-soft); display: flex; flex-direction: column; gap: .4em; }
.order-form input, .order-form select {
  font-family: 'Manrope', sans-serif;
  font-size: .95rem;
  padding: .8em 1em;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
}
.order-form input:focus, .order-form select:focus { outline: 2px solid var(--gold); }
.order-fineprint { font-size: .78rem; color: var(--ink-soft); margin: 0; }

.order-steps {
  list-style: none;
  margin: 1.8em 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.order-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  color: var(--ink);
  font-weight: 600;
}
.order-steps span {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}

@media (max-width: 900px) {
  .order-inner { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
  margin-left: 12px;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 12px; font-size: .93rem; }

/* Footer */
.site-footer { padding: 40px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: .5em; font-family: 'Playfair Display', serif; font-weight: 700; }
.footer-copy { font-size: .78rem; max-width: 640px; margin: 0; }
