:root {
  --charcoal: #0e1112;
  --steel: #1e3a56;
  --paper: #faf8f3;
  --white: #fffdf8;
  --line: #ddd3c3;
  --brass: #b08a4e;
  --muted: #5e6763;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--charcoal);
  background:
    linear-gradient(rgba(14, 17, 18, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 17, 18, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: var(--steel); }

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

.header-inner {
  min-height: 96px;
  padding: 8px clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  flex: 1 1 auto;
}

.brand img {
  width: min(520px, 100%);
  height: 72px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.header-link,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--charcoal);
  font-weight: 900;
  text-decoration: none;
}

.header-link { flex: 0 0 auto; }

.page-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Arial Narrow", "DIN Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(46px, 8vw, 82px);
  line-height: .95;
}

.lede {
  max-width: 760px;
  margin: 22px 0 0;
  color: #394542;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

.policy-card {
  margin-top: 38px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-top: 8px solid var(--steel);
  border-radius: 7px;
  background: rgba(255, 253, 248, .97);
  box-shadow: 0 18px 48px rgba(14, 17, 18, .08);
}

.policy-card h2 {
  margin: 34px 0 10px;
  font-size: clamp(26px, 4vw, 38px);
}

.policy-card h2:first-child { margin-top: 0; }
.policy-card p,
.policy-card li { color: #394542; font-size: 17px; line-height: 1.65; }
.policy-card li + li { margin-top: 8px; }
.policy-card strong { color: var(--charcoal); }

.notice {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 5px solid var(--brass);
  background: rgba(176, 138, 78, .1);
  color: #394542;
  line-height: 1.55;
}

.policy-nav {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  padding: 28px 20px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.site-footer a { margin: 0 6px; }

@media (max-width: 620px) {
  .header-inner {
    min-height: 82px;
    padding-inline: 14px;
    gap: 12px;
  }
  .brand img { height: 58px; }
  .page-shell { width: min(100% - 28px, 980px); }
  .policy-card { padding: 22px 18px; }
}
