:root {
  --gold: #b6892f;
  --gold-soft: #f4ecd6;
  --green: #4a7a47;
  --ink: #26251f;
  --muted: #6b6a60;
  --line: #e7e1d3;
  --card: #ffffff;
  --bg: #faf7f0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; letter-spacing: 0.05em; text-decoration: none; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), #d9bd77);
  display: grid; place-items: center; color: #fff; font-weight: 800;
}
.nav { display: flex; gap: 22px; align-items: center; }
.nav a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: 15px; }
.nav a:hover { color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff; padding: 11px 20px;
  border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 14px;
  border: none; cursor: pointer;
}
.btn:hover { filter: brightness(1.05); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }

/* Hero */
.hero { padding: 76px 0 46px; text-align: center; }
.eyebrow {
  display: inline-block; background: var(--gold-soft); color: var(--gold);
  border: 1px solid rgba(182, 137, 47, 0.25); padding: 6px 14px;
  border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
}
.hero h1 { font-size: 46px; line-height: 1.08; margin: 22px 0 0; letter-spacing: -0.02em; }
.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { max-width: 640px; margin: 18px auto 0; color: var(--muted); font-size: 18px; }
.hero .cta { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 46px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.section-head h2 { font-size: 30px; letter-spacing: -0.01em; }
.section-head p { color: var(--muted); margin-top: 10px; }

/* Grid + cards */
.grid { display: grid; gap: 18px; }
.features { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; }
.icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft);
  display: grid; place-items: center; font-size: 22px; margin-bottom: 14px;
}

/* Pricing */
.plans { grid-template-columns: repeat(4, 1fr); }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; }
.plan.popular { border: 2px solid var(--gold); position: relative; }
.plan .tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 18px; }
.plan .tagline { color: var(--muted); font-size: 13px; margin-top: 4px; min-height: 34px; }
.price { font-size: 32px; font-weight: 800; margin: 8px 0 2px; }
.price small { font-size: 14px; font-weight: 500; color: var(--muted); }
.price .yr { display: block; font-size: 13px; font-weight: 500; color: var(--muted); margin-top: 2px; }
.plan ul { list-style: none; margin: 14px 0 0; padding: 0; }
.plan li { font-size: 14px; color: var(--ink); padding: 6px 0 6px 22px; position: relative; }
.plan li:before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.yearly-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 18px; }

/* Legal pages */
.legal { max-width: 820px; margin: 0 auto; padding: 46px 0; }
.legal h1 { font-size: 34px; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.legal h2 { font-size: 20px; margin: 28px 0 8px; }
.legal p, .legal li { color: #3d3c34; font-size: 15.5px; margin-bottom: 10px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--gold); font-weight: 600; }
.lead-box { border-left: 3px solid rgba(182,137,47,0.4); padding: 4px 0 4px 16px; color: #4a483f; font-size: 16px; margin-bottom: 8px; }

/* Contact */
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 26px; max-width: 560px; margin: 0 auto; }
.contact-row { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: none; }
.contact-row .k { width: 130px; color: var(--muted); font-size: 14px; flex-shrink: 0; }
.contact-row .v { font-weight: 600; word-break: break-word; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #fff; margin-top: 30px; }
.site-footer .container { padding: 28px 20px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.foot-links a:hover { color: var(--ink); }
.copy { color: var(--muted); font-size: 13px; }

@media (max-width: 820px) {
  .features { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 34px; }
  .nav { display: none; }
}
@media (max-width: 520px) {
  .features, .plans { grid-template-columns: 1fr; }
}
