:root {
  --paper: #f5f3ee;
  --sheet: #fbfaf6;
  --ink: #1e2a24;
  --muted: #4f5a54;
  --rule: #cfc8b8;
  --bronze: #8a6d3b;
  --serif: "Iowan Old Style", Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { background: var(--paper); }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 1.0625rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--ink); text-underline-offset: 0.18em; }
a:hover { color: var(--bronze); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.75rem;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 20; }

.wrap {
  width: min(44rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

header {
  padding: 2.75rem 0 0;
}

.mark {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 1.75rem;
}
.mark svg { display: block; width: 3rem; height: 3rem; }

h1 {
  font-family: var(--serif);
  font-size: clamp(2.05rem, 5.5vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.kicker {
  margin-top: 0.55rem;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 1.6rem 0 1.85rem;
}

main { flex: 1; padding-bottom: 3rem; }

.lede {
  font-size: 1.125rem;
  line-height: 1.55;
  max-width: 38rem;
}
.lede p + p { margin-top: 0.9rem; }

h2 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2.4rem 0 1rem;
}

.brands {
  display: grid;
  gap: 1rem;
}
@media (min-width: 44rem) {
  .brands { grid-template-columns: 1fr 1fr; }
}

.brand {
  background: var(--sheet);
  border: 1px solid var(--rule);
  padding: 1.2rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.brand .num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}

.brand h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
}

.brand p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.brand p + p { margin-top: 0.35rem; }

.brand .go {
  margin-top: auto;
  padding-top: 0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact {
  display: grid;
  gap: 1.15rem 2rem;
}
@media (min-width: 40rem) {
  .contact { grid-template-columns: 1fr 1fr; }
}

.contact dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.3rem;
}

.contact dd {
  font-style: normal;
  line-height: 1.45;
}

.contact a { text-decoration-thickness: 1px; }

footer {
  border-top: 1px solid var(--rule);
  padding: 1.15rem 0 1.6rem;
  color: var(--muted);
  font-size: 0.88rem;
}

footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: space-between;
}

footer a { color: var(--muted); }

.note {
  color: var(--muted);
  max-width: 36rem;
}
.note p + p { margin-top: 0.85rem; }

@media print {
  body { background: #fff; }
  .brand { break-inside: avoid; }
  a { text-decoration: none; }
}
