:root {
  --ink: #171717;
  --muted: #62605c;
  --paper: #f7f3ea;
  --white: #fffefa;
  --line: #d8d1c4;
  --accent: #c63f2f;
  --accent-dark: #932b20;
  --shadow: 0 18px 50px rgba(35, 27, 18, 0.10);
  color-scheme: light;
}

* { 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;
  font-size: 1rem;
  line-height: 1.65;
}

a { color: inherit; }
a:hover { color: var(--accent-dark); }
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(198, 63, 47, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: .25rem;
}
.skip-link:focus { top: 1rem; }

.shell { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

.site-header {
  border-bottom: 1px solid rgba(23, 23, 23, .12);
  background: rgba(247, 243, 234, .94);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 1.15rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: Georgia, serif;
  font-weight: 700;
}

.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a { text-decoration: none; font-weight: 650; font-size: .94rem; }

.hero {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-top: 0;
}

h1 { font-size: clamp(3rem, 7.2vw, 6rem); margin-bottom: 1.5rem; max-width: 820px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: .65rem; }

.lead { font-size: clamp(1.12rem, 2vw, 1.35rem); max-width: 650px; color: #403e3a; }

.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: .75rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: .3rem;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 750;
}
.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: white; }
.button.secondary { background: transparent; color: var(--ink); }
.button.secondary:hover { background: var(--white); color: var(--ink); }

.postcard {
  position: relative;
  padding: clamp(2rem, 5vw, 3.6rem);
  min-height: 360px;
  background: var(--white);
  border: 1px solid #cbc3b5;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.postmark {
  align-self: flex-end;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: .67rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.postcard blockquote {
  margin: 1.8rem 0;
  max-width: 440px;
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.35;
}

.postcard figcaption { color: var(--muted); font-size: .9rem; }

.section { padding-block: clamp(4.5rem, 8vw, 7rem); border-top: 1px solid var(--line); }
.section-intro { max-width: 650px; margin-bottom: 2.5rem; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.step { padding: 1.7rem; background: var(--white); border: 1px solid var(--line); }
.step-number { display: block; margin-bottom: 1.5rem; color: var(--accent); font-weight: 850; }
.step p { margin-bottom: 0; color: var(--muted); }

.price-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
}
.price { font-family: Georgia, serif; font-size: clamp(4rem, 9vw, 7rem); line-height: 1; margin: .5rem 0; }
.price small { font-family: Inter, sans-serif; font-size: 1rem; color: var(--muted); }
.plain-list { padding: 0; margin: 1.5rem 0 0; list-style: none; }
.plain-list li { padding: .55rem 0; border-bottom: 1px solid var(--line); }
.plain-list li::before { content: "✓"; color: var(--accent); font-weight: 800; margin-right: .65rem; }

.sms-panel { background: var(--ink); color: white; padding: clamp(2rem, 6vw, 4.5rem); }
.sms-panel h2 { max-width: 700px; }
.sms-panel p { max-width: 800px; color: #ddd9d1; }
.sms-panel a { color: white; }

.legal-page main { padding-block: clamp(3.5rem, 8vw, 6rem); }
.legal-wrap { max-width: 780px; }
.legal-wrap h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.legal-wrap h2 { margin-top: 2.7rem; font-size: 1.65rem; }
.legal-wrap h3 { margin-top: 2rem; font-family: Inter, sans-serif; font-size: 1.05rem; letter-spacing: 0; }
.legal-wrap p, .legal-wrap li { color: #35332f; }
.legal-wrap li + li { margin-top: .45rem; }
.effective { color: var(--muted); }
.draft-note { padding: 1rem 1.15rem; border-left: 4px solid var(--accent); background: var(--white); }

.site-footer { padding-block: 2.5rem; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { font-weight: 650; }
.fine-print { max-width: 660px; color: var(--muted); font-size: .9rem; margin: .7rem 0 0; }

@media (max-width: 780px) {
  .nav { min-height: 68px; }
  .nav-links a:not(.button) { display: none; }
  .hero, .price-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .postcard { transform: none; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
