/* WC4 — Washington Crossing Card Collectors Club
   Shared design system across all pages.
   Aesthetic: editorial postcard archive — aged paper, deep ink, vintage stamp red. */

:root {
  --paper: #f4ead6;
  --paper-2: #ede0c4;
  --paper-3: #e3d2ad;
  --ink: #1a2533;
  --ink-soft: #3a4658;
  --stamp: #b94436;
  --stamp-deep: #8c2f24;
  --sage: #6b7d5e;
  --gold: #b8893e;
  --rule: rgba(26, 37, 51, 0.18);
  --rule-soft: rgba(26, 37, 51, 0.08);
  --type-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --type-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --type-mono: "Special Elite", "Courier Prime", "Courier New", monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--type-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(at 12% 8%, rgba(184,137,62,0.10) 0px, transparent 60%),
    radial-gradient(at 88% 24%, rgba(107,125,94,0.08) 0px, transparent 55%),
    radial-gradient(at 32% 92%, rgba(185,68,54,0.06) 0px, transparent 60%);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--stamp-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

/* Visible focus indicators for keyboard navigation (accessibility). */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
.cta:focus-visible,
nav.mast-nav a:focus-visible,
.hamburger:focus-visible,
.nav-close:focus-visible,
.action:focus-visible,
.where-card .map-link:focus-visible {
  outline: 2px solid var(--stamp);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ─────────── skip-link (a11y) ─────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  font-family: var(--type-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1000;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}
main:focus { outline: none; }

/* ─────────── source-comparison banner ─────────── */
.source-bar {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--type-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px double rgba(244,234,214,0.3);
}
.source-bar a { color: var(--paper); text-decoration: underline; text-underline-offset: 4px; }
.source-bar a:hover { color: #f0c97b; }
.source-bar .sep { opacity: 0.4; padding: 0 10px; }

/* ─────────── masthead + nav ─────────── */
.masthead {
  padding: 30px 8vw 22px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}
.mast-id .mark {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
  display: inline-block;
}
.mast-id .mark em {
  font-style: italic;
  color: var(--stamp-deep);
}
.mast-id .strap {
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}
nav.mast-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
nav.mast-nav a {
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
nav.mast-nav a:hover { border-bottom-color: var(--stamp); color: var(--stamp-deep); }
nav.mast-nav a[aria-current="page"] {
  border-bottom-color: var(--stamp);
  color: var(--stamp-deep);
}

/* hamburger button — hidden on desktop */
.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--ink);
  padding: 10px 14px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  align-self: start;
}
.hamburger:hover { background: var(--ink); color: var(--paper); }
.hamburger .bars {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}
.hamburger .bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.nav-close {
  display: none;
  background: transparent;
  border: 1px solid var(--paper);
  color: var(--paper);
  font-size: 24px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-family: var(--type-display);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
}
.nav-close:hover { background: var(--paper); color: var(--ink); }

/* ─────────── page header (each interior page) ─────────── */
.page-head {
  padding: 70px 8vw 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--rule);
}
.page-head .eyebrow {
  font-family: var(--type-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stamp-deep);
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-head .eyebrow::before {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--stamp);
}
.page-head h1 {
  font-family: var(--type-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
}
.page-head h1 em {
  font-style: italic;
  color: var(--stamp-deep);
  font-weight: 400;
}
.page-head .lede {
  font-family: var(--type-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 38em;
  margin-top: 10px;
}
.page-head .crumbs {
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.page-head .crumbs a { color: var(--ink-soft); text-decoration: none; }
.page-head .crumbs a:hover { color: var(--stamp-deep); }
.page-head .crumbs .sep { opacity: 0.5; padding: 0 8px; }

/* ─────────── homepage hero ─────────── */
.hero {
  padding: 80px 8vw 90px;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}
.hero-text .eyebrow {
  font-family: var(--type-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stamp-deep);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-text .eyebrow::before,
.hero-text .eyebrow::after {
  content: "";
  flex: 0 0 50px;
  height: 1px;
  background: var(--stamp);
}
.hero-text .eyebrow::after { flex: 1; }
.hero-text h1 {
  font-family: var(--type-display);
  font-weight: 500;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--stamp-deep);
  font-weight: 400;
}
.hero-text .lede {
  font-family: var(--type-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 32em;
  margin-bottom: 36px;
}
.hero-text .meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: baseline;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  font-family: var(--type-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-text .meta strong { color: var(--stamp-deep); font-weight: normal; }

/* ─────────── postcard collage (real archival images) ─────────── */
.collage {
  position: relative;
  height: 540px;
}
.pc {
  position: absolute;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.06),
    0 14px 30px -10px rgba(26,37,51,0.35),
    0 4px 8px rgba(26,37,51,0.18);
  background: white;
  padding: 8px 8px 28px;
  border-radius: 1px;
}
.pc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bankbonimus scans show the picture-front on top and the postcard-back
     on the bottom; crop to the top so we display only the picture. */
  object-position: top center;
  filter: saturate(0.92);
}
.pc::after {
  content: attr(data-cap);
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  font-family: var(--type-mono);
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.35;
}
/* heights set to match the picture-front aspect (~5:3) so the crop is clean */
.pc-1 { width: 320px; height: 192px; top: 20px; right: 60px; transform: rotate(-4deg); z-index: 3; }
.pc-2 { width: 270px; height: 162px; top: 200px; left: 10px; transform: rotate(5deg); z-index: 2; }
.pc-3 { width: 250px; height: 150px; top: 350px; right: 30px; transform: rotate(-2deg); z-index: 4; }

/* ─────────── home: action cards ─────────── */
.actions {
  padding: 0 8vw 70px;
}
.actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.action {
  background: var(--paper-2);
  padding: 32px 30px;
  border: 1px solid var(--rule);
  position: relative;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: background .2s, transform .2s;
}
.action:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}
.action:hover .action-lbl { color: #f0c97b; }
.action:hover .action-cta { color: #f0c97b; }
.action .action-lbl {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stamp-deep);
  margin-bottom: 12px;
}
.action h3 {
  font-family: var(--type-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 8px;
}
.action p {
  font-size: 14px;
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 18px;
}
.action .action-cta {
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stamp-deep);
}

/* ─────────── next-gathering panel (dark) ─────────── */
.gather { padding: 0 8vw 70px; }
.gather-inner {
  background: var(--ink);
  color: var(--paper);
  padding: 50px clamp(30px, 5vw, 70px);
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 50px;
  align-items: center;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.gather-inner::before {
  content: "POSTMARKED · TITUSVILLE NJ · DELAWARE VALLEY · POSTMARKED ·";
  position: absolute;
  top: 14px;
  left: -10px;
  right: -10px;
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(244,234,214,0.15);
  white-space: nowrap;
}
.gather .seal {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
}
.gather .seal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(244,234,214,0.4);
}
.gather .seal .yr { font-family: var(--type-display); font-size: 28px; letter-spacing: 0; }
.gather .col h3 {
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,234,214,0.6);
  margin-bottom: 14px;
}
.gather .col .when {
  font-family: var(--type-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--paper);
}
.gather .col .when em { color: #f0c97b; font-style: italic; }
.gather .col .detail { font-size: 14px; margin-top: 12px; opacity: 0.82; line-height: 1.55; }
.gather .col .detail a { color: #f0c97b; }

/* ─────────── interior pages: section scaffold ─────────── */
.body-wrap { padding: 70px 8vw 100px; }
.body-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}
.body-grid.no-aside { grid-template-columns: 1fr; max-width: 800px; }
.body-aside {
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stamp-deep);
  position: sticky;
  top: 80px;
}
.body-aside .aside-block {
  padding: 10px 0;
  border-top: 1px solid var(--rule);
}
.body-aside .aside-block:first-child { border-top: none; padding-top: 0; }
.body-aside .aside-block a {
  display: block;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 4px 0;
}
.body-aside .aside-block a:hover { color: var(--stamp-deep); }

.body-content h2 {
  font-family: var(--type-display);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 50px;
  margin-bottom: 22px;
}
.body-content h2:first-child { margin-top: 0; }
.body-content h2 em { font-style: italic; color: var(--stamp-deep); }
.body-content h3 {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  margin-top: 30px;
  margin-bottom: 10px;
}
.body-content p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 18px;
  color: var(--ink);
}
.body-content p.lede {
  font-family: var(--type-display);
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.body-content ul, .body-content ol {
  margin: 0 0 22px 1.4em;
  font-size: 17px;
  line-height: 1.7;
}
.body-content ul li, .body-content ol li { margin-bottom: 6px; }

/* asymmetric image-text split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  margin: 40px 0;
  align-items: start;
}
.split.flip { grid-template-columns: 1fr 1.1fr; }
.split .imgwrap {
  position: relative;
}
.split .imgwrap img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  object-position: top center;
  background: white;
  padding: 14px 14px 36px;
  box-shadow: 0 18px 36px -14px rgba(26,37,51,0.35);
  filter: saturate(0.92);
}
.split .imgwrap.tilt-l img { transform: rotate(-2deg); }
.split .imgwrap.tilt-r img { transform: rotate(2deg); }
.split .imgwrap .caption {
  position: absolute;
  bottom: -10px;
  left: 24px;
  right: 24px;
  text-align: center;
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ─────────── meeting timeline ─────────── */
.timeline {
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin: 30px 0 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  border-left: 1px dashed var(--ink);
}
.timeline li {
  position: relative;
  padding: 0 0 32px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--stamp);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--stamp);
}
.timeline .time {
  font-family: var(--type-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--stamp-deep);
  padding-top: 4px;
}
.timeline .what h4 {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 6px;
}
.timeline .what p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin: 0; }

/* ─────────── where-card (location) ─────────── */
.where-card {
  background: var(--paper-2);
  padding: 38px;
  border: 1px solid var(--rule);
  position: relative;
  margin: 30px 0;
}
.where-card .pin {
  position: absolute;
  top: -14px;
  left: 38px;
  background: var(--stamp);
  color: var(--paper);
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.where-card h3 {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.05;
  margin: 14px 0 6px;
}
.where-card .addr {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 24px;
}
.where-card .when-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
  margin-bottom: 24px;
  font-family: var(--type-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.where-card .when-strip strong { color: var(--stamp-deep); font-weight: normal; }
.where-card .note {
  font-family: var(--type-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 22px;
}
.where-card .map-link {
  display: inline-block;
  font-family: var(--type-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}
.where-card .map-link:hover { background: var(--stamp-deep); color: var(--paper); }

/* ─────────── membership tickets ─────────── */
.tickets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 30px 0 24px;
}
.ticket {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  position: relative;
  box-shadow: 0 8px 0 -2px var(--paper-3);
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--ink);
}
.ticket::before { left: -8px; }
.ticket::after { right: -8px; }
.ticket .tier {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
}
.ticket .sub {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.ticket .price {
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--stamp-deep);
  line-height: 1;
}
.ticket.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.ticket.featured .price { color: #f0c97b; }
.ticket.featured .sub { color: rgba(244,234,214,0.7); }

/* benefits list */
.benefits {
  list-style: none;
  column-count: 2;
  column-gap: 36px;
  column-rule: 1px dotted var(--rule);
  margin: 24px 0;
}
.benefits li {
  padding: 12px 0;
  border-bottom: 1px dotted var(--rule);
  font-size: 16px;
  break-inside: avoid;
  display: flex;
  gap: 12px;
}
.benefits li::before {
  content: "✦";
  color: var(--stamp);
  font-size: 12px;
  padding-top: 4px;
}

/* ─────────── coupon ─────────── */
.coupon {
  display: inline-block;
  border: 2px dashed var(--stamp);
  padding: 18px 26px;
  font-family: var(--type-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--stamp-deep);
  text-transform: uppercase;
  margin: 18px 0;
}
.coupon strong {
  font-family: var(--type-display);
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0;
}

/* ─────────── auction catalog ─────────── */
.auction-list {
  column-count: 3;
  column-gap: 36px;
  font-family: var(--type-mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink);
  margin: 30px 0;
}
.auction-list .lot {
  display: grid;
  grid-template-columns: 30px 24px 1fr;
  gap: 6px;
  break-inside: avoid;
  padding: 4px 0;
  border-bottom: 1px dotted var(--rule);
}
.auction-list .lot .n { color: var(--stamp-deep); }
.auction-list .lot .qty { color: var(--ink-soft); text-align: right; }

/* ─────────── era timeline (postcard history) ─────────── */
.era-list {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin: 20px 0;
}
.era { display: contents; }
.era .years {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--stamp-deep);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  grid-column: 1;
}
.era .era-body {
  padding: 24px 0 30px;
  border-top: 1px solid var(--rule);
  grid-column: 2;
}
.era .era-body h4 {
  font-family: var(--type-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 8px;
  font-style: italic;
}
.era .era-body p { font-size: 16px; line-height: 1.65; color: var(--ink); max-width: 60em; }
.era .era-body .era-img {
  margin-top: 20px;
  max-width: 280px;
  background: white;
  padding: 10px 10px 28px;
  box-shadow: 0 14px 30px -10px rgba(26,37,51,0.3);
  position: relative;
  filter: saturate(0.92);
}
.era .era-body .era-img img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.era .era-body .era-img .cap {
  position: absolute;
  bottom: 6px;
  left: 10px;
  right: 10px;
  text-align: center;
  font-family: var(--type-mono);
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.35;
}

/* ─────────── glossary ─────────── */
.gloss {
  column-count: 2;
  column-gap: 60px;
  margin: 30px 0;
}
.gloss dt {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--stamp-deep);
  margin-top: 18px;
}
.gloss dd {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-top: 4px;
  break-after: always;
}

/* ─────────── resources / staff lists ─────────── */
.res-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 70px;
  margin: 30px 0;
}
.res h4 {
  font-family: var(--type-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stamp-deep);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.res .item {
  padding: 14px 0;
  border-bottom: 1px dotted var(--rule);
}
.res .item .nm { font-family: var(--type-display); font-weight: 600; font-size: 19px; line-height: 1.2; }
.res .item .det { font-size: 14px; color: var(--ink-soft); margin-top: 4px; line-height: 1.55; }

/* ─────────── officer grid (dark) ─────────── */
.officers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(244,234,214,0.15);
  border: 1px solid rgba(244,234,214,0.15);
  margin: 24px 0;
}
.officer {
  background: var(--ink);
  color: var(--paper);
  padding: 26px;
}
.officer .role {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f0c97b;
  margin-bottom: 10px;
}
.officer .nm {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.officer .loc { font-size: 13px; color: rgba(244,234,214,0.65); margin-bottom: 8px; }
.officer .ph { font-family: var(--type-mono); font-size: 13px; color: rgba(244,234,214,0.9); }
.officer .term {
  font-family: var(--type-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(244,234,214,0.5);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ─────────── pull quote ─────────── */
.pull {
  font-family: var(--type-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.35;
  color: var(--ink);
  border-left: 4px solid var(--stamp);
  padding: 8px 0 8px 26px;
  margin: 30px 0;
  max-width: 30em;
}

/* ─────────── inline data row ─────────── */
.row {
  padding: 14px 0;
  border-bottom: 1px dotted var(--rule);
}
.row .lbl {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.row .val {
  font-family: var(--type-display);
  font-size: 19px;
  color: var(--ink);
}
.row .val .ph { font-family: var(--type-mono); font-size: 14px; color: var(--stamp-deep); margin-left: 8px; }

/* mailing block */
.mailing {
  border: 1px dashed var(--ink);
  padding: 22px 26px;
  margin: 24px 0;
  font-family: var(--type-mono);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  display: inline-block;
}

/* typographic show announcement card (no image — info as design) */
.show-announcement {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 36px 40px 32px;
  max-width: 520px;
  margin: 30px 0;
  position: relative;
  box-shadow: 0 24px 60px -20px rgba(26,37,51,0.35);
  transform: rotate(-1.2deg);
}
.show-announcement::before {
  content: "POSTCARD";
  position: absolute;
  top: -14px;
  right: 30px;
  background: var(--paper);
  padding: 0 12px;
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--stamp-deep);
}
.show-ann-rule {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  height: 6px;
  margin: 4px 0 18px;
}
.show-ann-rule:last-of-type { margin: 18px 0; }
.show-ann-eyebrow {
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stamp-deep);
  text-align: center;
  margin-bottom: 14px;
}
.show-ann-title {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: clamp(38px, 5.5vw, 56px);
  line-height: 0.95;
  text-align: center;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.show-ann-title em {
  font-style: italic;
  color: var(--stamp-deep);
  font-weight: 500;
}
.show-ann-meta {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}
.show-ann-meta > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px dotted var(--rule);
}
.show-ann-meta > div:last-child { border-bottom: none; padding-bottom: 0; }
.show-ann-meta .lbl {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.show-ann-meta .val {
  font-family: var(--type-display);
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 500;
}
.show-ann-stamp {
  text-align: center;
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stamp-deep);
  border-top: 1px dashed var(--ink);
  padding-top: 16px;
  margin-top: 8px;
}
.show-ann-stamp em { font-style: italic; }

/* CTA buttons */
.cta {
  display: inline-block;
  font-family: var(--type-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  margin: 6px 8px 6px 0;
}
.cta:hover { background: var(--stamp-deep); color: var(--paper); }
.cta.alt { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.cta.alt:hover { background: var(--ink); color: var(--paper); }

/* ─────────── footer ─────────── */
footer.foot {
  padding: 60px 8vw 40px;
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
}
footer.foot .foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
footer.foot .foot-grid h5 {
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stamp-deep);
  margin-bottom: 14px;
}
footer.foot .foot-grid p, footer.foot .foot-grid li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}
footer.foot .foot-grid ul {
  list-style: none;
}
footer.foot .foot-grid a {
  color: var(--ink);
  text-decoration: none;
}
footer.foot .foot-grid a:hover {
  color: var(--stamp-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
footer.foot .foot-sig {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}
footer.foot .foot-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
footer.foot .foot-bottom .epigraph {
  font-family: var(--type-display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  max-width: 38em;
  text-align: right;
}

/* ─────────── responsive ─────────── */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 60px 6vw 50px; }
  .collage { height: 420px; margin-top: 20px; }
  /* Mobile heights also use 5:3 to keep the picture-front crop clean. */
  .pc-1 { width: 240px; height: 144px; right: 30px; }
  .pc-2 { width: 200px; height: 120px; }
  .pc-3 { width: 190px; height: 114px; right: 10px; top: 250px; }
  .actions-grid { grid-template-columns: 1fr; }
  .gather-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; }
  .gather .seal { width: 100px; height: 100px; }
  .split, .split.flip { grid-template-columns: 1fr; gap: 30px; }
  .auction-list { column-count: 2; }
  .gloss { column-count: 1; }
  .res-grid { grid-template-columns: 1fr; gap: 36px; }
  .tickets { grid-template-columns: 1fr; }
  .officers { grid-template-columns: 1fr; }
  .body-grid { grid-template-columns: 1fr; gap: 20px; }
  /* Mobile: keep the in-page TOC visible but collapsed by default
     (uses native <details>-like styling via CSS only — still useful jump links). */
  .body-aside {
    position: static;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    padding: 14px 18px;
    margin-bottom: 8px;
  }
  .body-aside .aside-block strong {
    display: block;
    margin-bottom: 6px;
  }
  .body-aside .aside-block a {
    display: inline-block;
    margin-right: 14px;
    padding: 6px 0;
  }
  /* Show hamburger; hide top-bar nav until toggled */
  .masthead {
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
  }
  .hamburger { display: inline-flex; }
  .nav-close { display: inline-flex; align-items: center; justify-content: center; }
  nav.mast-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    color: var(--paper);
    z-index: 200;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 8vw 40px;
    gap: 4px;
    overflow-y: auto;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open nav.mast-nav { display: flex; }
  nav.mast-nav a {
    font-family: var(--type-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--paper);
    padding: 14px 0;
    border-bottom: none;
    width: 100%;
    line-height: 1.1;
  }
  nav.mast-nav a:hover,
  nav.mast-nav a[aria-current="page"] {
    color: #f0c97b;
    border-bottom: none;
  }
  footer.foot .foot-grid { grid-template-columns: 1fr 1fr; }
  footer.foot .foot-bottom { flex-direction: column; align-items: flex-start; }
  footer.foot .foot-bottom .epigraph { text-align: left; }
  .source-bar { font-size: 11px; padding: 8px 14px; }
  .source-bar .sep { padding: 0 6px; }
  .era-list { grid-template-columns: 1fr; gap: 0; }
  .era .years { border-top: 2px solid var(--ink); padding-top: 18px; }
  .era .era-body { border-top: none; padding-top: 0; }
  .benefits { column-count: 1; }
}
@media (max-width: 560px) {
  .body-wrap { padding: 50px 6vw 70px; }
  .auction-list { column-count: 1; }
  .timeline li { grid-template-columns: 1fr; gap: 4px; }
  .timeline .time { padding-top: 0; }
  .where-card { padding: 28px 22px; }
  .where-card h3 { font-size: 26px; }
  footer.foot .foot-grid { grid-template-columns: 1fr; }
}

/* ─────────── SITEFLINT SAMPLE watermark ─────────── */
.sf-watermark {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transform: rotate(-30deg) scale(1.6);
  transform-origin: center center;
}
.sf-watermark span {
  display: block;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: 72px;
  letter-spacing: 0.2em;
  white-space: nowrap;
  text-align: center;
  color: rgba(128,128,128,0.18);
  -webkit-text-stroke: 1px rgba(128,128,128,0.20);
  text-stroke: 1px rgba(128,128,128,0.20);
}
