:root {
  --ink: #16201d;
  --ink-soft: #4a5a54;
  --paper: #f6f4ee;
  --paper-2: #efece3;
  --line: #ddd8cc;
  --accent: #1f6f5c;
  --accent-deep: #14503f;
  --amber: #c9803a;
  --radius: 14px;
  --maxw: 1120px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent); }

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

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,244,238,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 1.32rem; letter-spacing: .2px; color: var(--ink); }
.brand .dot { width: 13px; height: 13px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(31,111,92,.15); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-size: .94rem; }
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 10px 20px; border-radius: 999px; font-size: .92rem; font-weight: 600;
  transition: background .15s ease;
}
.btn:hover { background: var(--accent-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--paper-2); color: var(--ink); }
.menu-toggle { display: none; }

/* Hero */
.hero { padding: 96px 0 72px; position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; right: -160px; top: -80px; width: 540px; height: 540px;
  background: radial-gradient(circle at center, rgba(31,111,92,.12), transparent 62%);
  border-radius: 50%; pointer-events: none;
}
.eyebrow { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); font-weight: 600; }
.hero h1 { font-family: var(--serif); font-size: 3.3rem; line-height: 1.08; margin: 18px 0 20px; max-width: 16ch; }
.hero p.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 52ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta { margin-top: 46px; display: flex; gap: 40px; flex-wrap: wrap; color: var(--ink-soft); font-size: .9rem; }
.hero-meta strong { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--ink); }

/* Section */
section.block { padding: 76px 0; border-top: 1px solid var(--line); }
.section-head { max-width: 60ch; margin-bottom: 46px; }
.section-head h2 { font-family: var(--serif); font-size: 2.1rem; line-height: 1.15; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(20,32,29,.08); }
.card .ico {
  width: 42px; height: 42px; border-radius: 10px; background: var(--paper-2);
  display: grid; place-items: center; margin-bottom: 16px; font-size: 1.2rem;
}
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .95rem; }

/* Steps */
.steps { counter-reset: step; }
.step { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step .num {
  counter-increment: step; flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 600;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.08rem; margin-bottom: 4px; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* Pricing */
.price-grid { grid-template-columns: repeat(3, 1fr); }
.price { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.price.featured { border-color: var(--accent); box-shadow: 0 16px 40px rgba(31,111,92,.12); position: relative; }
.price.featured .tag { position: absolute; top: -12px; left: 30px; background: var(--amber); color: #fff; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.price h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 6px; }
.price .amt { font-size: 2.4rem; font-family: var(--serif); margin: 12px 0 4px; }
.price .amt span { font-size: .95rem; color: var(--ink-soft); font-family: var(--sans); }
.price ul { list-style: none; margin: 18px 0 24px; }
.price li { padding: 7px 0; color: var(--ink-soft); font-size: .94rem; border-top: 1px dashed var(--line); }
.price li:first-child { border-top: 0; }

/* CTA band */
.band { background: var(--ink); color: var(--paper); border-radius: 20px; padding: 54px 48px; text-align: center; }
.band h2 { font-family: var(--serif); font-size: 2.2rem; margin-bottom: 12px; }
.band p { color: #b9c6c0; max-width: 50ch; margin: 0 auto 26px; }
.band .btn { background: var(--amber); }
.band .btn:hover { background: #b06f30; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 54px 0 40px; margin-top: 20px; background: var(--paper-2); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.foot-grid h4 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.foot-grid a { display: block; color: var(--ink-soft); font-size: .92rem; padding: 4px 0; }
.foot-grid a:hover { color: var(--ink); }
.foot-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--ink-soft); font-size: .86rem; }

/* Legal pages */
.legal { padding: 70px 0; max-width: 760px; }
.legal h1 { font-family: var(--serif); font-size: 2.4rem; margin-bottom: 8px; }
.legal .updated { color: var(--ink-soft); font-size: .9rem; margin-bottom: 34px; }
.legal h2 { font-family: var(--serif); font-size: 1.4rem; margin: 32px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }

@media (max-width: 860px) {
  .grid-3, .grid-2, .price-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .nav-links { display: none; }
}
