@font-face {
  font-family: "Roxborough Local";
  src: url("roxborough-subset.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Glacial Local";
  src: url("glacial-subset.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #3f3732;
  --wine: #6e8b74;
  --wine-dark: #58705d;
  --cream: #f4efe7;
  --paper: #fcfaf6;
  --muted: #746860;
  --line: rgba(122, 92, 77, .16);
  --white: #fffdf9;
  --accent: #6b343a;
  --serif: "Roxborough Local", "Didot", "Bodoni 72", Georgia, serif;
  --sans: "Glacial Local", "Century Gothic", "Avenir Next", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background-color: #f7f3ef;
  background-image: linear-gradient(rgba(247,243,239,.86), rgba(247,243,239,.86)), url("paper-texture.jpg");
  background-size: auto, 1100px auto;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-underline-offset: 4px; }
a:hover { color: var(--wine); }

.shell {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}

header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .94);
}

.header-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-row.shell { width: min(1180px, calc(100% - 48px)); }
.logo { display: inline-flex; flex-direction: column; align-items: center; color: var(--ink); line-height: 1; letter-spacing: .025em; text-decoration: none; }
.logo strong { font-family: var(--serif); font-size: 43px; font-weight: 400; letter-spacing: .025em; }
.logo span { margin-top: 4px; color: var(--ink); font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .075em; }
.back { font-size: 13px; font-weight: 600; text-decoration: none; }

main { padding: 72px 0 96px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow::before { width: 34px; height: 1px; background: currentColor; content: ""; }

h1, h2 { font-family: var(--sans); font-weight: 400; letter-spacing: -.018em; }
h1 { margin: 0 0 30px; font-size: clamp(34px, 3.5vw, 50px); line-height: 1.1; }
h2 { margin: 0 0 14px; font-size: clamp(32px, 3.4vw, 46px); line-height: 1.17; }
p { margin: 0 0 18px; }

.draft-notice {
  margin: 0 0 48px;
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  font-size: 16px;
}

.legal-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-of-type { border-top: 0; }
.legal-section ul { margin: 10px 0 18px; padding-left: 22px; }
.legal-section li { margin: 5px 0; }
.address { font-style: normal; }
.placeholder { color: var(--accent); font-weight: 600; }
.small { color: var(--muted); font-size: 15px; }

footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-row { display: flex; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; gap: 22px; }

@media (max-width: 620px) {
  .shell { width: min(100% - 30px, 920px); }
  .header-row { min-height: 82px; }
  .header-row.shell { width: min(100% - 30px, 1180px); }
  .logo strong { font-size: 32px; }
  .logo span { font-size: 8px; }
  main { padding: 50px 0 70px; }
  .footer-row { flex-direction: column; }
}
