:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --text: #181818;
  --muted: #60605c;
  --line: #d9d7d0;
  --soft: #efede6;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
a { color: inherit; }
.skipLink { position: absolute; left: -9999px; top: 0; }
.skipLink:focus { left: 1rem; top: 1rem; z-index: 99; background: var(--surface); padding: .75rem 1rem; border: 1px solid var(--text); }
.siteHeader { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--bg) 94%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.headerInner { max-width: var(--max); margin: auto; padding: .9rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.wordmark { font-weight: 800; letter-spacing: .16em; text-decoration: none; }
.nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.nav a { text-decoration: none; font-size: .95rem; }
main { min-height: 70vh; }
.hero { max-width: var(--max); margin: 0 auto; padding: clamp(4rem, 10vw, 8rem) 1.25rem clamp(3rem, 7vw, 6rem); }
.heroNarrow { max-width: 880px; }
.hero h1 { max-width: 900px; font-size: clamp(2.6rem, 6vw, 5.6rem); line-height: .98; letter-spacing: -.045em; margin: .4rem 0 1.4rem; font-weight: 650; }
.lead { max-width: 760px; font-size: clamp(1.12rem, 2vw, 1.45rem); color: var(--muted); }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 750; color: var(--muted); }
.ctaRow { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: .7rem 1rem; border: 1px solid var(--text); border-radius: 999px; text-decoration: none; background: var(--text); color: var(--surface); font-weight: 700; }
.button.secondary { background: transparent; color: var(--text); }
.section { border-top: 1px solid var(--line); }
.sectionInner { max-width: var(--max); margin: auto; padding: clamp(2.75rem, 6vw, 5.5rem) 1.25rem; }
.section h2 { max-width: 820px; font-size: clamp(1.9rem, 4vw, 3.5rem); line-height: 1.08; letter-spacing: -.03em; margin: .35rem 0 1.5rem; }
.section h3 { font-size: 1.2rem; margin-top: 2rem; }
.cards, .priceGrid, .twoCols, .factGrid { display: grid; gap: 1rem; }
.cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .priceGrid article, .factGrid > div, .formCard { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 1.35rem; }
.card h3 { font-size: 1.6rem; margin: .35rem 0; }
.card p { color: var(--muted); }
.priceGrid { grid-template-columns: repeat(2, minmax(0,1fr)); margin: 1.5rem 0; }
.priceGrid strong { font-size: 2rem; }
.twoCols { grid-template-columns: repeat(2, minmax(0,1fr)); }
.factGrid { grid-template-columns: repeat(4, minmax(0,1fr)); margin: 2rem 0; }
.factGrid dt { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.factGrid dd { margin: .4rem 0 0; font-weight: 700; }
.note { padding: 1rem 1.1rem; background: var(--soft); border-left: 3px solid var(--text); }
.statusOpen { display: inline-block; padding: .35rem .7rem; border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; }
table { width: 100%; border-collapse: collapse; background: var(--surface); }
th, td { text-align: left; vertical-align: top; padding: .85rem; border-bottom: 1px solid var(--line); }
th { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
form { display: grid; gap: 1rem; }
label { display: grid; gap: .35rem; font-weight: 650; }
input, select, textarea { font: inherit; width: 100%; border: 1px solid #aaa; border-radius: 10px; padding: .75rem .8rem; background: #fff; color: #111; }
textarea { min-height: 150px; resize: vertical; }
footer { border-top: 1px solid var(--line); }
.footerInner { max-width: var(--max); margin: auto; padding: 2rem 1.25rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; color: var(--muted); }
.footerLinks { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 1099px) {
  .factGrid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 767px) {
  .headerInner { align-items: flex-start; flex-direction: column; }
  .cards, .priceGrid, .twoCols, .factGrid { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
  th, td { padding: .6rem; }
}
