:root {
  --cream: #faf6ee;
  --cream-2: #f3ecdd;
  --paper: #fffdf8;
  --ink: #1f1b16;
  --ink-soft: #4a4338;
  --muted: #7c715f;
  --line: #e7dec9;
  --honey: #e0972f;
  --honey-dark: #c47e1c;
  --berry: #b9456b;
  --leaf: #4f7a4d;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(31, 27, 22, 0.06), 0 4px 14px rgba(31, 27, 22, 0.05);
  --shadow-md: 0 10px 40px rgba(31, 27, 22, 0.10);
  --maxw: 1120px;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: #000; box-shadow: var(--shadow-md); }
.btn--honey { background: var(--honey); color: #2a1c05; }
.btn--honey:hover { background: var(--honey-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper); }
.btn--lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  color: var(--ink);
}
.brand .logo {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: radial-gradient(circle at 30% 30%, var(--honey), var(--honey-dark));
  display: inline-flex; align-items: center; justify-content: center;
  color: #2a1c05; font-size: 16px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 64px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(40px, 6vw, 68px); }
.hero .lead { font-size: 20px; color: var(--ink-soft); margin-top: 22px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { margin-top: 20px; font-size: 14px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px 18px; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); }
.dot--honey { background: var(--honey); }
.dot--berry { background: var(--berry); }

/* Hero mock */
.mock {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform: rotate(0.5deg);
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 14px 16px; border-bottom: 1px solid var(--line); background: var(--cream-2); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #d8cdb5; display: inline-block; }
.mock-bar i:nth-child(1){ background:#e8a39a; } .mock-bar i:nth-child(2){ background:#ecc98a; } .mock-bar i:nth-child(3){ background:#a9c79a; }
.mock-bar .mock-title { margin-left: 10px; font-size: 13px; color: var(--muted); font-weight: 500; }
.mock-body { padding: 22px; }
.mock-tag { display:inline-block; font-size: 12px; font-weight: 600; color: var(--leaf); background: rgba(79,122,77,0.12); padding: 4px 10px; border-radius: 999px; }
.mock-h { font-family: var(--font-serif); font-size: 22px; margin: 14px 0 6px; }
.mock-meta { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.mock-line { height: 11px; border-radius: 6px; background: var(--cream-2); margin: 10px 0; }
.mock-line.w-90 { width: 90%; } .mock-line.w-75 { width: 75%; } .mock-line.w-60 { width: 60%; }
.mock-li { display: flex; gap: 10px; align-items: flex-start; margin: 12px 0; font-size: 14px; color: var(--ink-soft); }
.mock-li::before { content: "✓"; color: var(--honey-dark); font-weight: 700; }

/* ---------- Logos / trust ---------- */
.trust { padding: 28px 0 8px; }
.trust p { text-align: center; color: var(--muted); font-size: 14px; letter-spacing: 0.02em; }

/* ---------- Section heading ---------- */
.sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4vw, 44px); }
.sec-head p { margin-top: 16px; font-size: 18px; color: var(--ink-soft); }

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  background: var(--cream-2);
}
.card h3 { font-size: 21px; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; position: relative; }
.step .num {
  font-family: var(--font-serif); font-size: 15px; font-weight: 600;
  width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Split / differentiators ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel {
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--line);
}
.panel--ink { background: var(--ink); color: var(--cream); }
.panel--ink h3 { color: #fff; }
.panel--honey { background: linear-gradient(160deg, #fbe7c4, #f6d79e); }
.panel .kicker { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }
.panel h3 { font-size: 28px; margin: 14px 0 12px; }
.panel p { font-size: 16px; }
.panel--ink p { color: #d9d1c2; }
.panel--honey p { color: #5a4413; }
.panel ul { margin: 18px 0 0; padding: 0; list-style: none; }
.panel li { padding: 8px 0 8px 28px; position: relative; font-size: 15px; }
.panel li::before { content: "→"; position: absolute; left: 0; opacity: 0.7; }

/* ---------- Pricing ---------- */
.price-wrap { max-width: 460px; margin: 0 auto; }
.price-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--honey); color: #2a1c05; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
}
.price-card .amount { font-family: var(--font-serif); font-size: 64px; line-height: 1; margin: 8px 0; }
.price-card .amount small { font-size: 20px; color: var(--muted); font-weight: 400; }
.price-card .once { color: var(--leaf); font-weight: 600; font-size: 15px; }
.price-list { list-style: none; padding: 0; margin: 26px 0; text-align: left; }
.price-list li { padding: 9px 0 9px 30px; position: relative; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.price-list li:last-child { border-bottom: none; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--leaf); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  padding: 4px 22px;
  margin-bottom: 14px;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-family: var(--font-serif); font-size: 19px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--honey-dark); font-family: var(--font-sans); transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-inner {
  background: var(--ink);
  color: var(--cream);
  border-radius: 28px;
  padding: 64px 32px;
}
.cta-inner h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.cta-inner p { color: #d9d1c2; margin: 16px auto 0; max-width: 520px; font-size: 18px; }
.cta-inner .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--cream-2); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.foot-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin: 0 0 14px; font-family: var(--font-sans); font-weight: 700; }
.foot-grid a { display: block; text-decoration: none; color: var(--ink-soft); font-size: 15px; padding: 5px 0; }
.foot-grid a:hover { color: var(--ink); }
.foot-about p { color: var(--ink-soft); font-size: 15px; margin-top: 14px; max-width: 280px; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 14px;
}

/* ---------- Legal pages ---------- */
.legal-hero { background: var(--cream-2); border-bottom: 1px solid var(--line); padding: 64px 0 48px; }
.legal-hero h1 { font-size: clamp(34px, 5vw, 52px); }
.legal-hero .updated { color: var(--muted); margin-top: 14px; font-size: 15px; }
.legal {
  max-width: 820px; margin: 0 auto; padding: 56px 24px 96px;
}
.legal .intro { font-size: 18px; color: var(--ink-soft); }
.legal h2 { font-size: 26px; margin: 44px 0 14px; }
.legal h3 { font-size: 20px; margin: 30px 0 10px; font-family: var(--font-sans); font-weight: 700; }
.legal h4 { font-size: 17px; margin: 22px 0 8px; font-family: var(--font-sans); font-weight: 700; color: var(--ink-soft); }
.legal p { margin: 14px 0; color: var(--ink-soft); }
.legal ul, .legal ol { color: var(--ink-soft); padding-left: 22px; margin: 14px 0; }
.legal li { margin: 8px 0; }
.legal a { color: var(--honey-dark); }
.legal .toc {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 26px; margin: 32px 0; font-size: 15px;
}
.legal .toc strong { display: block; margin-bottom: 10px; font-family: var(--font-sans); }
.legal .toc ol { columns: 2; column-gap: 32px; }
.legal table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.legal th, .legal td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
.legal th { background: var(--cream-2); font-family: var(--font-sans); }
.legal .caps { font-size: 14px; background: var(--cream-2); border-left: 3px solid var(--honey); padding: 14px 18px; border-radius: 0 8px 8px 0; }
.legal .addr { white-space: pre-line; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 22px; }
.back-home { display: inline-flex; align-items: center; gap: 6px; color: var(--honey-dark); text-decoration: none; font-weight: 600; font-size: 14px; }
.back-home:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .features, .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px 24px;
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .features, .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .legal .toc ol { columns: 1; }
  .price-card { padding: 32px 24px; }
}
