:root {
  --bg: #fdfaf4;
  --paper: #fffdf8;
  --ink: #171511;
  --muted: #6d6458;
  --green: #1b5f37;
  --deep: #103622;
  --brass: #b88f45;
  --line: rgba(23, 21, 17, 0.12);
  --line-soft: rgba(23, 21, 17, 0.07);
  --warning-bg: #fff7e8;
  --warning-line: rgba(184, 143, 69, 0.36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #fffdf8 0%, #fdfaf4 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--deep); }
a:focus-visible, button:focus-visible {
  outline: 2px solid rgba(16, 54, 34, 0.4);
  outline-offset: 3px;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(22px, 3vw, 28px); }
p, li { color: rgba(23, 21, 17, 0.78); line-height: 1.65; }
ul { margin: 0; padding-left: 20px; }

.wrap {
  width: min(980px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.logo { width: clamp(140px, 15vw, 180px); }
.back-link, .meta-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

button.meta-link {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

button.meta-link:hover {
  text-decoration: underline;
}

.hero {
  display: grid;
  gap: 14px;
  padding: 28px 0 22px;
}

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(16, 54, 34, 0.72);
}

.callout {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  background: var(--warning-bg);
  border: 1px solid var(--warning-line);
}

.section {
  display: grid;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
}

.rows {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.row:last-child { border-bottom: 0; }
.row strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(16, 54, 34, 0.72);
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.note {
  font-size: 13px;
  color: rgba(23, 21, 17, 0.6);
}

@media (max-width: 820px) {
  .section-grid, .row, .topbar {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }
}
