:root {
  --bg: #f6f1e8;
  --surface: #fffdf8;
  --surface-strong: #f0e7d8;
  --ink: #1f2a24;
  --muted: #5f6d64;
  --line: #d7cbb7;
  --brand: #284f3f;
  --brand-ink: #f6f1e8;
  --accent: #d39a34;
  --danger: #b33c2e;
  --shadow: 0 18px 40px rgba(31, 42, 36, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input {
  font: inherit;
}
.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--brand);
  color: var(--brand-ink);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(211, 154, 52, 0.18);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #1f1607;
  box-shadow: 0 10px 24px rgba(211, 154, 52, 0.22);
}
.btn-secondary {
  background: transparent;
  color: var(--brand-ink);
  border-color: rgba(255,255,255,0.18);
}
.section { padding: 56px 0; }
.hero { padding: 44px 0 28px; }
.eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
h1, h2, h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  line-height: 1.1;
}
h1 { font-size: clamp(2.3rem, 5vw, 4.4rem); margin-top: 16px; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: 12px; }
h3 { font-size: 1.2rem; }
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 760px;
  margin-top: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}
.hero-note {
  color: var(--muted);
  font-size: .96rem;
}
.hero-image,
.panel-image {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.text-block {
  max-width: 760px;
}
.text-block p,
.legal-content p,
.legal-content li { color: var(--muted); }
.band {
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.two-col {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.card p { color: var(--muted); margin-bottom: 0; }
.icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--surface-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-weight: 800;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}
.pricing {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: center;
}
.list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}
.price-old {
  color: var(--muted);
  text-decoration: line-through;
  margin: 0;
}
.price-new {
  font-size: 3.4rem;
  line-height: 1;
  margin: 8px 0 0;
  font-family: Fraunces, Georgia, serif;
}
.badge {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(211, 154, 52, 0.18);
  color: #7b5511;
  font-size: 14px;
  font-weight: 700;
}
.cta-band {
  background: var(--ink);
  color: var(--brand-ink);
  text-align: center;
}
.cta-band .eyebrow,
.cta-band p,
.cta-band h2 { color: var(--brand-ink); }
.footer {
  border-top: 1px solid var(--line);
  background: var(--surface-strong);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 42px 0 24px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
  align-content: start;
}
.small {
  color: var(--muted);
  font-size: 13px;
}
.legal-shell {
  padding: 34px 0 64px;
}
.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 28px 0 12px;
}
.backlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 20px;
}
.order-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: start;
}
.form-card, .summary-card, .success-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  gap: 18px;
}
label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
input {
  width: 100%;
  min-height: 52px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
}
input:focus {
  outline: 2px solid rgba(40, 79, 63, 0.18);
  border-color: var(--brand);
}
.error {
  color: var(--danger);
  font-size: 13px;
  margin-top: 6px;
  display: none;
}
.notice {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.summary-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.summary-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
}
.tick {
  color: var(--brand);
  font-weight: 700;
}
.success-card {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
}
.success-icon {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 79, 63, 0.12);
  color: var(--brand);
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}
@media (max-width: 960px) {
  .cards, .reviews, .pricing, .two-col, .order-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid { flex-direction: column; }
}
@media (max-width: 640px) {
  .topbar-inner { min-height: 64px; }
  .btn { width: 100%; }
  .hero-actions { align-items: stretch; }
  .footer-links { grid-template-columns: 1fr; }
  .legal-card, .form-card, .summary-card, .success-card, .card { padding: 20px; }
}
