:root {
  --green-deep: #15302a;
  --green-card: #1b4034;
  --seal-green: #33574d;
  --gold: #b89548;
  --gold-light: #e9d9b0;
  --cream: #f5f1e8;
  --ink: #1c2925;
  --muted: #5c6b64;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: clamp(0px, 2vw, 26px);
  background: var(--green-deep);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.sheet {
  width: min(820px, 100%);
  margin: 0 auto;
  background: var(--cream);
}

.sheet-top {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: clamp(22px, 3.4vw, 34px) clamp(22px, 4.4vw, 54px);
  background: var(--green-card);
  color: #fff;
}
.sheet-top .seal { width: clamp(58px, 9vw, 76px); height: auto; flex: none; display: block; }
.sheet-top-text { min-width: 0; }
.sheet-top-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sheet-top-back {
  display: inline-block;
  margin-top: 3px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}
.sheet-top-back:hover { color: #fff; }

.sheet-body {
  padding: clamp(28px, 4.6vw, 56px) clamp(22px, 4.4vw, 54px) clamp(34px, 5vw, 60px);
}
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: #8a6f33;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  flex: 0 0 30px;
  height: 1px;
  background: var(--gold);
}
h1 {
  margin: 0 0 clamp(22px, 3vw, 32px);
  font-size: clamp(30px, 4.6vw, 44px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.08;
}
h2 {
  margin: clamp(30px, 4vw, 42px) 0 10px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: -.01em;
}
h3 {
  margin: 24px 0 6px;
  font-size: 15px;
  font-weight: 700;
}
p, li { font-size: clamp(15px, 1.5vw, 16.5px); }
p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 22px; }
li { margin-bottom: 6px; }
.lead { color: var(--muted); }
address { font-style: normal; }
.hint {
  margin: 0 0 14px;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: #ece5d6;
  font-size: 14.5px;
}
.updated { margin-top: 34px; color: var(--muted); font-size: 13.5px; }

.sheet-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 22px;
  padding: clamp(18px, 2.6vw, 24px) clamp(22px, 4.4vw, 54px);
  border-top: 1px solid rgba(255,255,255,.18);
  background: var(--green-card);
  color: rgba(255,255,255,.66);
  font-size: 12px;
}
.sheet-foot a { color: rgba(255,255,255,.78); text-decoration: none; }
.sheet-foot a:hover { color: #fff; }
.sheet-foot .claim { margin-right: auto; color: var(--gold-light); font-size: 14px; }
