:root {
  --paper: #f1e6cd;
  --paper-2: #ead9b3;
  --paper-3: #e2cc9c;
  --ink: #1d160e;
  --ink-2: #5b4a32;
  --ink-3: #8a7553;
  --seal: #6f1414;
  --seal-2: #931f1f;
  --gold: #9b7a2c;
  --rule: rgba(29, 22, 14, 0.28);
  --rule-soft: rgba(29, 22, 14, 0.14);
  --tabbar-h: 56px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "EB Garamond", Georgia, serif;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(255,245,210,0.55), transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 90%, rgba(120, 80, 30, 0.10), transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(120, 80, 30, 0.08), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(120, 80, 30, 0.06), transparent 40%);
  min-height: 100vh;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMjAnIGhlaWdodD0nMjIwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44NScgbnVtT2N0YXZlcz0nMicgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjxmZUNvbG9yTWF0cml4IHZhbHVlcz0nMCAwIDAgMCAwLjIgIDAgMCAwIDAgMC4xNSAgMCAwIDAgMCAwLjA1ICAwIDAgMCAwLjA4IDAnLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0nMTAwJScgaGVpZ2h0PScxMDAlJyBmaWx0ZXI9J3VybCgjbiknLz48L3N2Zz4=");
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.app {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 20px calc(var(--tabbar-h) + var(--safe-bottom) + 40px);
}

/* ============== Masthead ============== */
.mast {
  text-align: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.mast .crest {
  width: min(78vw, 280px);
  height: auto;
  margin: 0 auto 14px;
  display: block;
}
.mast .eyebrow {
  font-family: "Cormorant SC", "Cormorant Garamond", serif;
  letter-spacing: 0.24em;
  font-size: 10px;
  color: var(--ink-2);
  text-transform: uppercase;
}
.mast h1 {
  font-family: "IM Fell English", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(28px, 8vw, 44px);
  margin: 4px 0 2px;
  letter-spacing: 0.005em;
  line-height: 1.05;
  text-wrap: balance;
}
.mast .sub {
  font-family: "EB Garamond", serif;
  font-style: italic;
  color: var(--ink-2);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.45;
  text-wrap: balance;
}
.mast .sub a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--rule); }
.mast .sub .dot { color: var(--ink-3); margin: 0 6px; }
@media (min-width: 720px) {
  .mast { padding-bottom: 28px; }
  .mast .crest { width: 340px; margin-bottom: 18px; }
  .mast .eyebrow { letter-spacing: 0.32em; font-size: 11px; }
  .mast .sub { font-size: 16px; margin-top: 10px; }
}

/* ============== Tab nav (mobile: bottom bar; desktop: inline top) ============== */
nav.tabs {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: calc(var(--tabbar-h) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: var(--paper);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -8px 24px rgba(29, 22, 14, 0.06);
}
.tab-btn {
  appearance: none;
  background: transparent;
  border: 0;
  border-top: 2px solid transparent;
  padding: 8px 6px 6px;
  font-family: "Cormorant SC", "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  cursor: pointer;
  transition: color 120ms ease, border-color 120ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.tab-btn .tab-glyph {
  font-family: "IM Fell English", serif;
  font-size: 18px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-3);
  transition: color 120ms ease;
}
.tab-btn[aria-selected="true"] {
  color: var(--ink);
  border-top-color: var(--seal);
}
.tab-btn[aria-selected="true"] .tab-glyph { color: var(--seal); }
.tab-btn:active { background: rgba(29, 22, 14, 0.04); }

@media (min-width: 720px) {
  nav.tabs {
    position: static;
    display: flex;
    justify-content: center;
    gap: 4px;
    height: auto;
    padding: 0;
    margin: 24px 0 32px;
    background: transparent;
    border-top: 0;
    box-shadow: none;
  }
  .tab-btn {
    flex-direction: row;
    padding: 10px 22px;
    border: 1px solid var(--rule);
    border-top-color: var(--rule);
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--ink-2);
    gap: 8px;
    min-height: 0;
  }
  .tab-btn .tab-glyph { font-size: 15px; }
  .tab-btn:hover { color: var(--ink); background: rgba(29, 22, 14, 0.04); }
  .tab-btn[aria-selected="true"] {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .tab-btn[aria-selected="true"] .tab-glyph { color: var(--paper); }
}

/* ============== View shell ============== */
.view { display: none; }
.view.is-active { display: block; }

.view-head {
  text-align: center;
  margin: 18px 0 24px;
}
.view-head .article-mark {
  font-family: "Cormorant SC", serif;
  letter-spacing: 0.24em;
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
}
.view-head h2 {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-size: clamp(24px, 6.5vw, 36px);
  margin: 4px 0 6px;
  line-height: 1.1;
  text-wrap: balance;
}
.view-head p {
  font-style: italic;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto;
  font-size: 15px;
  text-wrap: pretty;
}
@media (min-width: 720px) {
  .view-head { margin: 0 0 32px; }
  .view-head .article-mark { letter-spacing: 0.28em; font-size: 11px; }
  .view-head p { font-size: 16px; }
}

/* ============== Constitution ============== */
.constitution h3 {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  margin: 40px 0 6px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-wrap: balance;
}
.constitution h3::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--ink-3);
  margin: 0 auto 14px;
}
.constitution h4 {
  font-family: "Cormorant SC", serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 22px 0 6px;
  text-align: left;
  text-wrap: balance;
}
.constitution p {
  text-align: left;
  margin: 0 0 12px;
  text-wrap: pretty;
  hyphens: auto;
}
.constitution ul {
  margin: 0 0 14px;
  padding-left: 20px;
}
.constitution ul li {
  margin-bottom: 6px;
}
.constitution ul li::marker { color: var(--ink-3); }
.preamble {
  margin: 0 auto 24px;
  max-width: 680px;
}
.preamble .lead::first-letter {
  font-family: "IM Fell English", serif;
  font-size: 4.2em;
  float: left;
  line-height: 0.86;
  padding: 6px 8px 0 0;
  color: var(--seal);
}
.ornament-row {
  text-align: center;
  color: var(--ink-3);
  letter-spacing: 0.5em;
  font-size: 13px;
  margin: 32px 0 16px;
}
.article-card {
  background: linear-gradient(180deg, rgba(255,250,235,0.4), rgba(255,250,235,0));
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding: 6px 16px 22px;
  margin-top: 20px;
}
@media (min-width: 720px) {
  .constitution h3 { font-size: 26px; margin-top: 56px; }
  .constitution h3::before { width: 48px; margin-bottom: 18px; }
  .constitution h4 { font-size: 15px; letter-spacing: 0.1em; margin-top: 28px; }
  .constitution p { text-align: justify; margin-bottom: 14px; }
  .preamble { text-align: center; }
  .preamble p { text-align: justify; }
  .preamble .lead::first-letter { font-size: 4.4em; padding: 6px 10px 0 0; }
  .ornament-row { font-size: 14px; letter-spacing: 0.6em; margin: 40px 0 20px; }
  .article-card { padding: 6px 32px 28px; margin-top: 24px; }
}

/* Decorative wax seal at end of constitution */
.wax {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 40px auto 0;
}
.wax .seal-disc {
  width: 96px; height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, #c34141 0%, #8a1818 45%, #5a0a0a 85%);
  box-shadow:
    inset 0 -8px 16px rgba(0,0,0,0.35),
    inset 0 6px 8px rgba(255,255,255,0.15),
    0 6px 14px rgba(90, 10, 10, 0.35);
  display: grid;
  place-items: center;
  color: #f5d28a;
  font-family: "IM Fell English", serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  transform: rotate(-6deg);
  position: relative;
}
.wax .seal-disc::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(245, 210, 138, 0.55);
  border-radius: 50%;
}
.wax .seal-label {
  font-family: "Cormorant SC", serif;
  letter-spacing: 0.24em;
  font-size: 10px;
  color: var(--ink-2);
  text-transform: uppercase;
}
@media (min-width: 720px) {
  .wax { margin-top: 48px; }
  .wax .seal-disc { width: 110px; height: 110px; font-size: 28px; }
  .wax .seal-label { letter-spacing: 0.28em; font-size: 11px; }
}

/* ============== Officers ============== */
.officers-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.officer-card {
  border-bottom: 1px solid var(--rule);
  padding: 16px 4px 16px 64px;
  background: rgba(255, 250, 235, 0.25);
  position: relative;
  min-height: 64px;
}
.officer-card .badge {
  position: absolute;
  left: 4px;
  top: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: "IM Fell English", serif;
  font-size: 18px;
  line-height: 44px;
  color: var(--ink);
  background: var(--paper);
}
.officer-card .position {
  font-family: "Cormorant SC", serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.3;
  margin-top: 2px;
}
.officer-card .name {
  font-family: "IM Fell English", serif;
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
  margin: 2px 0 4px;
}
.officer-card .name.vacant {
  color: var(--ink-3);
  font-style: italic;
}
.officer-card .officer-title {
  font-family: "Cormorant SC", serif;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.officer-card .duty {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
  font-style: italic;
}
@media (min-width: 720px) {
  .officers-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    border-left: 1px solid var(--rule);
  }
  .officer-card {
    padding: 22px 18px 20px;
    border-right: 1px solid var(--rule);
    min-height: 0;
  }
  .officer-card .badge {
    position: static;
    margin-bottom: 6px;
    width: 46px; height: 46px;
    line-height: 46px;
  }
  .officer-card .position { font-size: 12px; margin-top: 4px; }
  .officer-card .name { font-size: 22px; }
}

/* Members roster */
.roster {
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.roster-title {
  font-family: "IM Fell English", serif;
  font-size: 22px;
  text-align: center;
  margin: 0 0 4px;
}
.roster-sub {
  text-align: center;
  color: var(--ink-2);
  font-style: italic;
  margin: 0 0 20px;
  font-size: 14px;
  text-wrap: pretty;
}
.members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.members[hidden] { display: none; }
.members li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dotted var(--rule-soft);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
}
.roster-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 0 20px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
}
.roster-tab-btn {
  appearance: none;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--rule);
  flex: 1;
  padding: 8px 12px;
  font-family: "Cormorant SC", serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
  -webkit-tap-highlight-color: transparent;
}
.roster-tab-btn:last-child { border-right: 0; }
.roster-tab-btn:active { background: rgba(29, 22, 14, 0.04); }
.roster-tab-btn[aria-selected="true"] {
  background: var(--ink);
  color: var(--paper);
}
@media (min-width: 720px) {
  .roster-tab-btn { font-size: 12px; padding: 9px 16px; }
}

.members li .num {
  font-family: "Cormorant SC", serif;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  min-width: 22px;
}
@media (min-width: 720px) {
  .roster { margin-top: 48px; padding-top: 28px; }
  .roster-title { font-size: 24px; }
  .roster-sub { font-size: 16px; margin-bottom: 24px; }
  .members { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px 18px; }
  .members li { font-size: 19px; padding: 6px 0; }
}

/* ============== Beer Hall ============== */
.beer-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  padding: 0 4px 8px;
  margin-bottom: 4px;
  font-family: "Cormorant SC", serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.beer-head .col-rating { text-align: right; }
.beer-list { list-style: none; padding: 0; margin: 0; }
.beer-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: baseline;
  padding: 14px 4px;
  border-bottom: 1px solid var(--rule-soft);
}
.beer-row .rank {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: "IM Fell English", serif;
  font-size: 20px;
  color: var(--ink-3);
  text-align: right;
  align-self: center;
}
.beer-row .rank-top { color: var(--seal); }
.beer-row .name {
  grid-column: 2;
  grid-row: 1;
  font-family: "IM Fell English", serif;
  font-size: 19px;
  line-height: 1.2;
  text-wrap: balance;
}
.beer-row .style {
  grid-column: 2;
  grid-row: 2;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.2;
}
.beer-row .rating {
  grid-column: 3;
  grid-row: 1 / span 2;
  font-family: "Cormorant SC", serif;
  font-weight: 600;
  font-size: 22px;
  text-align: right;
  color: var(--ink);
  letter-spacing: 0.04em;
  align-self: center;
  white-space: nowrap;
}
.beer-row .rating small {
  font-family: "EB Garamond", serif;
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 2px;
}
@media (min-width: 720px) {
  .beer-head {
    padding: 0 8px 8px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }
  .beer-row {
    grid-template-columns: 32px 1fr 160px 80px;
    grid-template-rows: auto;
    gap: 16px;
    padding: 16px 8px;
    align-items: baseline;
  }
  .beer-row .rank { grid-row: 1; font-size: 22px; align-self: baseline; }
  .beer-row .name { grid-column: 2; grid-row: 1; font-size: 22px; }
  .beer-row .style { grid-column: 3; grid-row: 1; font-size: 16px; }
  .beer-row .rating { grid-column: 4; grid-row: 1; align-self: baseline; }
  .beer-row:hover { background: rgba(155, 122, 44, 0.08); }
}

.beer-foot {
  margin-top: 28px;
  text-align: center;
  color: var(--ink-2);
  font-style: italic;
  font-size: 14px;
  text-wrap: pretty;
}
.beer-foot a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 720px) {
  .beer-foot { margin-top: 32px; font-size: 15px; }
}

/* Style filter chips */
.style-filter {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 6px;
  padding: 0 4px 12px;
  margin: 0 -20px 16px;
  padding-left: 20px;
  padding-right: 20px;
  scrollbar-width: none;
}
.style-filter::-webkit-scrollbar { display: none; }
.chip {
  appearance: none;
  border: 1px solid var(--rule);
  background: transparent;
  padding: 7px 14px;
  font-family: "Cormorant SC", serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  cursor: pointer;
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
  -webkit-tap-highlight-color: transparent;
}
.chip:active { background: rgba(29, 22, 14, 0.04); }
.chip[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
@media (min-width: 720px) {
  .style-filter {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: center;
    padding: 0;
    margin: 0 0 24px;
  }
  .chip { padding: 5px 14px; letter-spacing: 0.16em; }
  .chip:hover { background: rgba(29, 22, 14, 0.04); color: var(--ink); }
}

/* ============== Minutes ============== */
.minutes-empty { text-align: center; margin-top: 16px; }
.minutes-empty-text {
  color: var(--ink-3);
  font-style: italic;
  font-size: 15px;
  max-width: 420px;
  margin: 12px auto 0;
  text-wrap: pretty;
}
@media (min-width: 720px) { .minutes-empty-text { font-size: 16px; } }

.minutes-card {
  border-top: 1px solid var(--rule);
  padding: 22px 0 28px;
}
.mc-date {
  font-family: "IM Fell English", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 3px;
}
.mc-weather {
  display: inline-block;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
  padding: 3px 10px;
  margin: 6px 0 18px;
  letter-spacing: 0.02em;
}
.minutes-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.minutes-card ul li {
  padding: 7px 0 7px 18px;
  border-bottom: 1px dotted var(--rule-soft);
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  text-wrap: pretty;
}
.minutes-card ul li:last-child { border-bottom: 0; }
.minutes-card ul li::before {
  content: "·";
  position: absolute;
  left: 2px;
  color: var(--seal);
  font-size: 20px;
  line-height: 1.3;
}
@media (min-width: 720px) {
  .minutes-card { padding: 26px 0 32px; }
  .mc-date { font-size: 30px; }
  .mc-weather { font-size: 14px; }
  .minutes-card ul li { font-size: 17px; padding: 8px 0 8px 20px; }
}

/* Charter: spacing before constitution sub-section */
.charter-constitution-divider { margin-top: 56px; }
@media (min-width: 720px) { .charter-constitution-divider { margin-top: 72px; } }

/* ============== Prizes (coming soon) ============== */
.prizes-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 64px auto 0;
}
.prizes-seal {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #d4a843 0%, #9b7a2c 45%, #6b520f 85%);
  box-shadow:
    inset 0 -8px 16px rgba(0,0,0,0.3),
    inset 0 6px 8px rgba(255,255,255,0.18),
    0 6px 24px rgba(107, 82, 15, 0.4),
    0 0 0 0 rgba(155, 122, 44, 0.5);
  display: grid;
  place-items: center;
  font-family: "IM Fell English", serif;
  font-size: 36px;
  color: #f9eccc;
  transform: rotate(-6deg);
  position: relative;
}
.prizes-seal::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(249, 236, 204, 0.5);
  border-radius: 50%;
}
.prizes-coming {
  font-family: "Cormorant SC", serif;
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
}
.prizes-note {
  font-style: italic;
  color: var(--ink-2);
  font-size: 15px;
  text-align: center;
  max-width: 380px;
  line-height: 1.55;
  text-wrap: pretty;
}
@media (min-width: 720px) {
  .prizes-seal { width: 116px; height: 116px; font-size: 42px; }
  .prizes-note { font-size: 16px; }
}

/* ============== Footer ============== */
footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  text-align: center;
  color: var(--ink-2);
  font-size: 13px;
  font-style: italic;
  text-wrap: pretty;
}
footer .colophon {
  font-family: "Cormorant SC", serif;
  font-style: normal;
  letter-spacing: 0.24em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
@media (min-width: 720px) {
  footer { margin-top: 80px; padding-top: 24px; font-size: 14px; }
  footer .colophon { letter-spacing: 0.28em; }
}
