:root {
  color-scheme: light;
  --ink: #0a0a0a;
  --soft: #2d2c29;
  --muted: #716e67;
  --quiet: #969189;
  --paper: #f7f5f0;
  --panel: #ffffff;
  --cream: #ece7de;
  --line: #ded9d0;
  --black: #050505;
  --focus: #b76118;
  --success: #315f48;
  --max: 1120px;
  --measure: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-underline-offset: 4px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 56px);
  background: rgba(247, 245, 240, .92);
  border-bottom: 1px solid rgba(10, 10, 10, .09);
  backdrop-filter: blur(18px);
}
.wordmark {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 780;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.main-nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 28px); }
.main-nav a {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 720;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); text-decoration: underline; }

.hero {
  padding: clamp(92px, 12vw, 150px) clamp(20px, 5vw, 72px) clamp(76px, 10vw, 126px);
  background: radial-gradient(circle at 50% 12%, rgba(255,255,255,.96), rgba(247,245,240,0) 44%), linear-gradient(180deg, #fbfaf7, var(--paper) 75%, var(--cream));
  border-bottom: 1px solid var(--line);
}
.hero-inner, .section-inner { width: min(var(--max), 100%); margin: 0 auto; }
.hero-kicker, .eyebrow {
  margin: 0 0 18px;
  color: var(--quiet);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 825;
  letter-spacing: -.045em;
  line-height: .95;
}
.hero-lede { max-width: 760px; margin: 0; color: var(--soft); font-size: clamp(1.08rem, 1.8vw, 1.34rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  font-weight: 820;
  text-decoration: none;
}
.button:hover { background: #242424; }
.button.secondary { background: transparent; color: var(--ink); }
.button.secondary:hover { background: var(--ink); color: #fff; }
.dark .button.secondary { border-color: rgba(255,255,255,.62); color: #fff; }
.dark .button.secondary:hover { background: #fff; color: var(--black); }
.button.disabled { border-color: var(--line); background: var(--line); color: var(--muted); cursor: not-allowed; }

section { padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px); border-bottom: 1px solid var(--line); }
.split { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(36px, 7vw, 96px); align-items: start; }
h2 { max-width: 760px; margin-bottom: 24px; font-size: clamp(2.1rem, 4.4vw, 4.5rem); font-weight: 815; letter-spacing: -.035em; line-height: 1; }
h3 { margin-bottom: 12px; font-size: clamp(1.25rem, 2vw, 1.72rem); line-height: 1.2; }
.copy { display: grid; gap: 20px; color: var(--soft); font-size: clamp(1rem, 1.4vw, 1.14rem); }
.copy p, .copy ul { margin-bottom: 0; }
.dark { background: var(--black); color: #fff; }
.dark .eyebrow { color: rgba(255,255,255,.46); }
.dark .copy, .dark p { color: rgba(255,255,255,.7); }
.cream { background: var(--cream); }
.white { background: var(--panel); }

.feature-grid, .policy-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}
.feature, .policy-card, .contact-card { min-height: 230px; padding: clamp(26px, 4vw, 42px); background: var(--panel); }
.dark .feature { background: #0e0e0e; border-color: rgba(255,255,255,.14); }
.feature-number { margin-bottom: 56px; color: var(--quiet); font-size: .78rem; letter-spacing: .16em; }
.feature p, .policy-card p, .contact-card p { margin-bottom: 0; color: var(--muted); }
.dark .feature p { color: rgba(255,255,255,.64); }

.offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}
.price-card { padding: clamp(28px, 5vw, 48px); border: 1px solid var(--line); border-radius: 8px; background: var(--panel); color: var(--ink); box-shadow: 0 26px 70px rgba(23,20,15,.08); }
.dark .price-card p { color: var(--muted); }
.price { margin: 10px 0 4px; font-size: clamp(3.1rem, 6vw, 5.4rem); font-weight: 830; letter-spacing: -.05em; line-height: 1; }
.price-note { color: var(--muted); }
.check-list { display: grid; gap: 13px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; }
.check-list li::before { position: absolute; left: 0; color: var(--success); content: "✓"; font-weight: 900; }
.fine { color: var(--muted); font-size: .9rem; }
.notice { margin: 28px 0; padding: 22px 24px; border-left: 4px solid var(--focus); background: #fff8ef; color: var(--soft); }

.legal-hero { padding-bottom: 60px; }
.legal-hero h1 { max-width: 820px; font-size: clamp(2.7rem, 6vw, 5.4rem); }
.legal-layout { display: grid; grid-template-columns: minmax(190px, 260px) minmax(0, var(--measure)); gap: clamp(34px, 7vw, 92px); align-items: start; }
.legal-nav { position: sticky; top: 104px; display: grid; gap: 9px; }
.legal-nav a { color: var(--muted); font-size: .92rem; }
.legal-copy h2 { margin: 62px 0 18px; font-size: clamp(1.75rem, 3vw, 2.55rem); letter-spacing: -.02em; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { margin: 32px 0 10px; font-size: 1.15rem; }
.legal-copy p, .legal-copy li { color: var(--soft); }
.legal-copy li + li { margin-top: 9px; }
.legal-copy .updated { color: var(--muted); font-size: .92rem; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--panel); }
th, td { padding: 16px 18px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding: 38px clamp(20px, 5vw, 72px);
  background: #fff;
  color: var(--muted);
  font-size: .92rem;
}
.footer-mark { color: var(--ink); font-weight: 780; letter-spacing: .06em; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }

@media (max-width: 820px) {
  .split, .offer, .legal-layout { grid-template-columns: 1fr; }
  .feature-grid, .policy-grid, .contact-grid { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); padding-bottom: 26px; border-bottom: 1px solid var(--line); }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .site-header { align-items: flex-start; }
  .wordmark { font-size: .78rem; letter-spacing: .14em; }
  .main-nav { flex-direction: column; align-items: flex-end; gap: 6px; font-size: .8rem; }
  h1 { font-size: clamp(2.55rem, 13vw, 3.65rem); }
  .legal-nav { grid-template-columns: 1fr; }
}
