:root {
  --paper: #f3ead8;
  --paper-2: #e8dcc4;
  --ink: #1c1712;
  --muted: #5a5146;
  --dim: #877c6c;
  --line: #d3c4a8;
  --stamp: #a31d1d;
  --stamp-dark: #7d1414;
  --stamp-soft: #f3d6d0;
  --night: #1e2833;
  --cream: #fff8ec;
  --ok: #2a4638;
  --danger: #8f1d1d;
  --max: 1140px;
  --nav-h: 76px;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --shadow: 0 22px 44px -28px rgba(28, 23, 18, 0.4);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--stamp);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(243, 234, 216, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.05;
}
.brand-mark {
  font-family: var(--display);
  font-weight: 560;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand-mark span { color: var(--stamp); }
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 15px;
  color: var(--ink);
}
.nav-links a[aria-current="page"] { color: var(--stamp); }
.nav-phone {
  white-space: nowrap;
  color: var(--night);
}
a[href^="tel:"] {
  white-space: nowrap;
  word-spacing: 0;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 12px;
  min-height: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--stamp);
  color: #fff;
  border-color: var(--stamp);
}
.btn-primary:hover { background: var(--stamp-dark); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.nav-cta { min-height: 42px; padding: 0 14px; font-size: 15px; }

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: end;
  padding: 68px 0 36px;
}
.kicker {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stamp);
}
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: pretty;
}
h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  margin: 0 0 18px;
}
h2 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 16px; }
h3 { font-size: 26px; margin: 0 0 10px; }
.lede {
  font-size: 20px;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.letter {
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px 22px 20px;
  position: relative;
}
.letter-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  align-items: start;
}
.stamp-mark {
  width: 56px;
  height: 64px;
  border: 2px dashed var(--stamp);
  color: var(--stamp);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(6deg);
  flex: 0 0 auto;
}
.letter-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.letter-meta strong { color: var(--ink); font-weight: 600; }
.letter h3 {
  font-size: 22px;
  margin: 0 0 10px;
}
.letter p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
}
.letter-rate {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.letter-rate strong { font-family: var(--display); font-size: 22px; }

.band { padding: 72px 0; }
.band-ink {
  background: var(--night);
  color: var(--paper);
}
.band-ink .muted,
.band-ink .lede,
.band-ink .section-head p { color: #d5cbb8; }
.band-alt { background: var(--paper-2); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: end;
}
.section-head p { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.step-num {
  font-family: var(--display);
  font-size: 28px;
  color: var(--stamp);
}
.band-ink .step { border-color: rgba(243, 234, 216, 0.14); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.price {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.price.featured {
  background: var(--night);
  color: var(--paper);
  border-color: var(--night);
}
.price .amt {
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: -0.03em;
  margin: 8px 0 4px;
}
.price .per { color: var(--muted); margin: 0 0 18px; font-size: 15px; }
.price.featured .per { color: #c9bfae; }
.price ul {
  margin: 0 0 24px;
  padding: 0 0 0 18px;
  color: var(--muted);
  flex: 1;
}
.price.featured ul { color: #d5cbb8; }
.price li { margin: 0 0 8px; }

.area-list, .ind-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.area-list a, .ind-list a {
  background: var(--paper);
  padding: 18px 16px;
  text-decoration: none;
  min-height: 72px;
}
.area-list a:hover, .ind-list a:hover { background: var(--cream); }
.area-list small, .ind-list small {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.prose { max-width: 40rem; }
.prose p { margin: 0 0 16px; }
.prose ul { margin: 0 0 16px; padding-left: 20px; }

.faq details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq p { margin: 8px 0 8px; color: var(--muted); }

.form {
  display: grid;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 24px;
}
label { font-size: 14px; font-weight: 600; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  border-radius: 2px;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--stamp);
  outline-offset: 1px;
}
.hp { position: absolute; left: -9999px; }
.form-ok, .form-err { display: none; padding: 16px; }
.form-ok { background: #e6efe8; color: var(--ok); }
.form-err { background: var(--stamp-soft); color: var(--danger); }

.crumbs {
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  font-size: 14px;
  color: var(--muted);
}
.crumbs a { color: var(--muted); }

.page-hero { padding: 36px 0 10px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); }

footer {
  background: var(--night);
  color: #efe7d8;
  padding: 56px 0 28px;
}
footer a { color: #efe7d8; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
footer h4 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin: 0 0 8px; }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(239, 231, 216, 0.18);
  font-size: 13px;
  color: #c9bfae;
}

.offer-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
}

.map-box {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--cream);
}
.map-box iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  content-visibility: auto;
}
.map-box-sm iframe { height: 180px; }
.map-box figcaption { padding: 8px 12px; font-size: 14px; }
.map-box figcaption a { text-decoration: none; }
.map-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: center;
}

.buy-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.buy-row .btn { min-width: 160px; }

@media (max-width: 900px) {
  .hero, .section-head, .split, .price-grid, .foot-grid, .map-row {
    grid-template-columns: 1fr;
  }
  .area-list, .ind-list { grid-template-columns: 1fr 1fr; }
  .menu-btn { display: inline-flex; align-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 4px;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a, .nav-links .btn { min-height: 44px; }
}

@media (max-width: 560px) {
  .area-list, .ind-list { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; }
}

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