:root {
  --bg: #efe8dc;
  --ink: #141210;
  --red: #8e1d22;
  --mute: #6f675d;
  --line: #d7cdbf;
  --paper: #f7f1e7;
  --serif: "Newsreader", Georgia, serif;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--sans); }
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.nav { display: flex; justify-content: space-between; padding: 22px 0; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; }
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 0.95; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.5vw, 44px); line-height: 1.05; }
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; padding: 12px 0 64px; }
.lede { font-size: 18px; line-height: 1.55; max-width: 42ch; color: #2a2622; margin-top: 18px; }
.kicker { color: var(--red); letter-spacing: 0.22em; font-size: 11px; text-transform: uppercase; }
.btn {
  display: inline-flex; background: var(--ink); color: var(--paper); text-decoration: none;
  border: 0; padding: 15px 20px; font: 650 14px var(--sans); cursor: pointer;
}
.btn.red { background: var(--red); }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.hero img { height: 72dvh; width: 100%; object-fit: cover; }
.section { padding: 72px 0; border-top: 1px solid var(--line); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.card { background: var(--paper); border: 1px solid var(--line); padding: 22px; }
.num { font-family: var(--serif); font-size: 42px; color: var(--red); }
p { line-height: 1.55; }
.gate {
  position: fixed; inset: 0; background: #efe8dcf5; z-index: 40;
  display: grid; place-items: center; text-align: center; padding: 24px;
}
form { display: grid; gap: 8px; }
label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); background: #fff; padding: 12px; font: 16px var(--sans);
}
.fine { font-size: 12px; color: var(--mute); margin-top: 14px; }
@media (max-width: 860px) {
  .hero, .grid-2 { grid-template-columns: 1fr; }
  .hero img { height: 48dvh; }
}
