/* ──────────────────────────────────────────────────────────────────────
   The Outlet Atlas — shared styles
   Swiss graphic poster. Helvetica. One accent color per plate.
   ────────────────────────────────────────────────────────────────────── */

:root {
  --paper: #F4F1EC;
  --ink:   #111111;
  --bg:    #E30613;   /* overridden per-plate */
  --fg:    var(--paper);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.7; }

/* ── Poster frame ───────────────────────────────────────────────────── */
.poster {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 72px 64px;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 48px;
}

/* ── Masthead ───────────────────────────────────────────────────────── */
.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--fg);
}
.masthead .slot-l,
.masthead .slot-r,
.masthead .issue {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}
.masthead .slot-r { text-align: right; }
.masthead .issue  { white-space: nowrap; }

/* ── Two-column main ────────────────────────────────────────────────── */
.main {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 72px;
  align-items: stretch;
}

/* ── Outlet side ────────────────────────────────────────────────────── */
.outlet-pane {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 24px;
}
.outlet-pane svg.outlet {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  color: var(--fg);
}

/* ── Text side ──────────────────────────────────────────────────────── */
.text-pane {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding-top: 8px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow .num {
  display: inline-block;
  min-width: 28px;
  padding: 3px 8px 2px;
  text-align: center;
  background: var(--fg);
  color: var(--bg);
  font-weight: 700;
  letter-spacing: 0.08em;
}

h1.display {
  font-weight: 900;
  font-size: clamp(56px, 7.2vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  text-transform: uppercase;
}
h1.display .break { display: block; }
h1.display .slash {
  display: inline-block;
  font-weight: 400;
  opacity: 0.75;
  margin: 0 0.08em;
}

.lede {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  max-width: 46ch;
  margin: 0 0 24px;
}
.lede strong { font-weight: 700; }
.lede:last-child { margin-bottom: 0; }

/* Spec block */
.specs {
  border-top: 1px solid var(--fg);
  border-bottom: 1px solid var(--fg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.specs dl {
  margin: 0;
  padding: 14px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  align-items: last baseline;
}
.specs dl:nth-child(odd)  { border-right: 1px solid var(--fg); padding-right: 20px; }
.specs dl:nth-child(even) { padding-left: 20px; }
.specs dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}
.specs dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

/* Country list */
.countries { margin-top: 8px; }
.countries .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 12px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 8px;
}
.countries ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 24px;
  font-size: 14px;
  line-height: 1.7;
}
.countries li {
  break-inside: avoid;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.countries li .dot { flex: 1; border-bottom: 1px dotted; opacity: 0.4; margin: 0 6px 5px; }
.countries li .hz  { font-variant-numeric: tabular-nums; opacity: 0.8; font-size: 12px; }

/* Colophon / footer nav */
.colophon {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: end;
  padding-top: 20px;
  border-top: 2px solid var(--fg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.colophon .r { text-align: right; }
.colophon .c { text-align: center; }
.colophon a .arrow { display: inline-block; padding: 0 6px; }
.colophon .nav-block {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.colophon .nav-block .title { opacity: 0.6; font-size: 10px; letter-spacing: 0.2em; }

@media (max-width: 900px) {
  .poster { padding: 32px 28px 48px; gap: 32px; }
  .main { grid-template-columns: 1fr; gap: 40px; }
  .outlet-pane { min-height: 50vh; }
  .masthead {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 16px;
  }
  .masthead .slot-l,
  .masthead .slot-r,
  .masthead .issue {
    text-align: left;
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .masthead .slot-r { display: none; }
  .masthead .slot-r br { display: none; }
  .masthead .issue {
    align-self: start;
    border-top: 1px solid var(--fg);
    padding-top: 8px;
    margin-top: 4px;
    white-space: normal;
    opacity: 0.75;
  }
  .colophon { grid-template-columns: 1fr; gap: 12px; }
  .colophon .r, .colophon .c { text-align: left; }
  /* On plate pages (prev/next nav), keep left+right on one row and hide center */
  .poster .colophon { grid-template-columns: 1fr 1fr; gap: 16px; }
  .poster .colophon .c { display: none; }

  /* Specs: collapse two side-by-side <dl>s into one shared grid so
     "Voltage / Frequency / Current" line up with "Standard / IEC Class / Introduced" */
  .specs {
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    row-gap: 4px;
    padding: 14px 0;
    align-items: baseline;
  }
  .specs dl { display: contents; }
  .specs dt,
  .specs dd {
    line-height: 1.3;
    align-self: baseline;
  }
  .specs dl:nth-child(odd),
  .specs dl:nth-child(even) {
    border-right: 0;
    padding: 0;
  }
  /* Hairline between the two groups — flush across both columns.
     Force these two cells to align to the top of the row so the borders match. */
  .specs dl:nth-child(2) dt:first-of-type,
  .specs dl:nth-child(2) dd:first-of-type {
    border-top: 1px solid var(--fg);
    padding-top: 20px;
    margin-top: 8px;
    align-self: start;
  }
  .specs dl:nth-child(2) dt:first-of-type {
    /* Push the dt text down so it baseline-matches the dd text after the rule */
    padding-top: 22px;
  }
  .poster .colophon .r { text-align: right; }
  h1.display { font-size: clamp(44px, 12vw, 80px); }
  .countries ul { columns: 1; }
}

/* ──────────────────────────────────────────────────────────────────────
   INDEX PAGE — cover + directory
   ────────────────────────────────────────────────────────────────────── */

.cover {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 72px 64px;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 48px;
}

.cover .hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  padding-bottom: 24px;
}
.cover h1.bigtitle {
  font-weight: 900;
  font-size: clamp(72px, 10vw, 176px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0;
  text-transform: uppercase;
}
.cover h1.bigtitle .li { display: block; }
.cover .tagline {
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 24ch;
  margin: 0;
  text-align: right;
}

.cover .directory {
  padding-top: 24px;
  border-top: 2px solid var(--fg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.cover .directory .head,
.tool .head,
.worldmap .head {
  min-width: 140px;
}

.cover .directory .head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
}
.cover .plates {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--fg);
}
.cover .plates li {
  border-bottom: 1px solid var(--fg);
}
.cover .plates li:not(:nth-child(3n)) { border-right: 1px solid var(--fg); }
.cover .plates a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  transition: background 140ms, color 140ms;
}
.cover .plates a:hover {
  background: var(--fg);
  color: var(--bg);
  opacity: 1;
}
.cover .plates .no {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.65;
}
.cover .plates .nm { font-weight: 600; }
.cover .plates .tp {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .cover { padding: 32px 28px 48px; gap: 32px; }
  .cover .hero { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .cover .tagline { text-align: left; max-width: none; }
  .cover .directory { grid-template-columns: 1fr; gap: 16px; }
  .cover .plates { grid-template-columns: 1fr; }
  .cover .plates li:not(:nth-child(3n)) { border-right: 0; }
}

/* ─────────────────────────────────────────────────────────────────
   WORLD MAP
   ───────────────────────────────────────────────────────────────── */
.worldmap {
  padding-top: 24px;
  border-top: 2px solid var(--fg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.worldmap .head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
}
.worldmap .body { display: grid; gap: 16px; }
.worldmap h2 {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
}
.worldmap .lede { font-size: 16px; line-height: 1.45; max-width: 60ch; margin: 0; }
.worldmap .mapwrap {
  position: relative;
  border: 2px solid var(--fg);
  background: #F4F1EC;
  overflow: hidden;
}
.worldmap .mapwrap svg { display: block; width: 100%; height: auto; }
.worldmap .mapwrap [cc] { stroke: #F4F1EC; stroke-width: 0.4; transition: opacity 120ms; }
.worldmap .mapwrap [cc]:hover { opacity: 0.7; }
.worldmap .mapwrap #outline,
.worldmap .mapwrap #boundaries { pointer-events: none; }
.worldmap .mapwrap #bg { fill: #F4F1EC; }
.worldmap .maptip {
  position: absolute;
  pointer-events: none;
  background: var(--fg);
  color: var(--bg);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 80ms;
  white-space: nowrap;
  z-index: 5;
}
.worldmap .legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  border: 2px solid var(--fg);
}
.worldmap .legend li {
  border-right: 1px solid var(--fg);
  border-bottom: 1px solid var(--fg);
}
.worldmap .legend a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.worldmap .legend a:hover { background: var(--fg); color: var(--bg); opacity: 1; }
.worldmap .legend .sw { width: 14px; height: 14px; border: 1px solid var(--fg); flex-shrink: 0; }

@media (max-width: 900px) {
  .worldmap { grid-template-columns: 1fr; gap: 16px; }
}

/* ──────────────────────────────────────────────────────────────────────
   TRAVELER TOOL — country lookup + adapter advisor
   ────────────────────────────────────────────────────────────────────── */

.tool {
  padding-top: 24px;
  border-top: 2px solid var(--fg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.tool .head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
}
.tool .body { display: grid; gap: 20px; }

.tool h2 {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.tool .controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--fg);
}
.tool .field {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  position: relative;
}
.tool .field + .field { border-left: 2px solid var(--fg); }
.tool .field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.tool .field input {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--fg);
  font: 600 22px/1.2 "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em;
  padding: 2px 0;
  outline: none;
  width: 100%;
}
.tool .field input::placeholder { color: var(--fg); opacity: 0.35; }

.tool .suggest {
  position: absolute;
  top: 100%;
  left: -2px;
  right: -2px;
  background: var(--bg);
  border: 2px solid var(--fg);
  border-top: 0;
  z-index: 10;
  max-height: 260px;
  overflow-y: auto;
  display: none;
}
.tool .suggest.open { display: block; }
.tool .suggest button {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  padding: 10px 18px;
  appearance: none;
  background: transparent;
  color: var(--fg);
  border: 0;
  border-top: 1px solid;
  border-color: color-mix(in oklab, var(--fg), transparent 70%);
  font: 500 15px/1.2 "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: left;
  cursor: pointer;
}
.tool .suggest button:first-child { border-top: 0; }
.tool .suggest button:hover,
.tool .suggest button[aria-selected="true"] {
  background: var(--fg);
  color: var(--bg);
}
.tool .suggest .p {
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}

.tool .result {
  border: 2px solid var(--fg);
  padding: 24px 20px;
  display: grid;
  gap: 14px;
}
.tool .result .verdict {
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.tool .result .sub {
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
  max-width: 60ch;
}
.tool .result .sub strong { font-weight: 700; }
.tool .result .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.tool .result .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1.5px solid var(--fg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tool .result .badge.filled { background: var(--fg); color: var(--bg); }
.tool .result .link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1.5px solid var(--fg);
  padding-bottom: 2px;
  align-self: start;
}
.tool .result.hidden { display: none; }

.tool .hint {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

@media (max-width: 900px) {
  .tool { grid-template-columns: 1fr; gap: 16px; }
  .tool .controls { grid-template-columns: 1fr; }
  .tool .field + .field { border-left: 0; border-top: 2px solid var(--fg); }
}

/* ──────────────────────────────────────────────────────────────────────
   PRELUDE CARD on the index — teaser to Plates/00 History.html
   ────────────────────────────────────────────────────────────────────── */
.prelude-card {
  padding-top: 24px;
  border-top: 2px solid var(--fg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.prelude-card .head {
  min-width: 140px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
}
.prelude-card .body {
  display: grid;
  gap: 16px;
  border: 2px solid var(--fg);
  padding: 28px 32px 24px;
  text-decoration: none;
  color: inherit;
  transition: background 140ms, color 140ms;
}
.prelude-card .body:hover {
  background: var(--fg);
  color: var(--bg);
  opacity: 1;
}
.prelude-card .body:hover .cta { border-bottom-color: var(--bg); }
.prelude-card .kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.prelude-card h2 {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  max-width: 18ch;
}
.prelude-card .lede {
  font-size: 16px;
  line-height: 1.45;
  max-width: 64ch;
  margin: 0;
}
.prelude-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.prelude-card .meta .cta {
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
}

@media (max-width: 900px) {
  .prelude-card { grid-template-columns: 1fr; gap: 16px; }
  .prelude-card .body { padding: 20px 22px; }
}

/* ──────────────────────────────────────────────────────────────────────
   PROVISIONS — recommended gear (affiliate)
   Styled as an editorial sidebar / appendix, not a banner ad.
   Two-column on the cover; one-column inline on plate pages.
   ────────────────────────────────────────────────────────────────────── */

.provisions {
  padding-top: 24px;
  border-top: 2px solid var(--fg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.provisions .head {
  min-width: 140px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
}
.provisions .body { display: grid; gap: 20px; }
.provisions h2 {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
}
.provisions .lede {
  font-size: 16px;
  line-height: 1.45;
  max-width: 60ch;
  margin: 0 0 8px;
}

.provisions .picks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--fg);
}
.provisions .picks > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 22px 22px 20px;
  align-items: start;
  position: relative;
}
.provisions .picks > li + li { border-left: 2px solid var(--fg); }

.provisions .pick-no {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  background: var(--fg);
  color: var(--bg);
  padding: 4px 8px 3px;
  align-self: start;
  margin-top: 4px;
}
.provisions .pick-icon {
  width: 84px;
  height: 84px;
  border: 1.5px solid var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex-shrink: 0;
}
.provisions .pick-icon svg { width: 64px; height: 64px; color: var(--fg); display: block; }

.provisions .pick-meta { display: grid; gap: 10px; min-width: 0; }
.provisions .pick-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.provisions .pick-kicker .pick-no {
  margin: 0;
}
.provisions .pick-name {
  font-weight: 900;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
}
.provisions .pick-desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 38ch;
}
.provisions .pick-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-top: 1px solid var(--fg);
  padding-top: 10px;
  margin-top: 4px;
}
.provisions .pick-price {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  opacity: 0.75;
}
.provisions .pick-price strong { font-weight: 700; opacity: 1; letter-spacing: 0; }
.provisions .pick-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1.5px solid var(--fg);
  padding-bottom: 2px;
  white-space: nowrap;
}
.provisions .pick-cta:hover { opacity: 1; background: var(--fg); color: var(--bg); border-bottom-color: transparent; }

.provisions .disclosure {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0;
}

/* Plates-only variant — picks alone, no head column or h2 */
.provisions.plates-only {
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 24px;
}
.provisions.plates-only .body { gap: 16px; }

@media (max-width: 900px) {
  .provisions { grid-template-columns: 1fr; gap: 16px; }
  .provisions .picks,
  .provisions.compact .picks { grid-template-columns: 1fr; }
  .provisions .picks > li + li { border-left: 0; border-top: 2px solid var(--fg); }
  .provisions .picks > li { grid-template-columns: auto 1fr; }
}

@media (max-width: 600px) {
  .provisions h2 { font-size: clamp(28px, 9vw, 44px); letter-spacing: -0.02em; }
  .provisions .lede { font-size: 15px; }
  .provisions .picks > li {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 18px 16px;
  }
  .provisions .pick-icon {
    width: 64px;
    height: 64px;
    padding: 8px;
  }
  .provisions .pick-icon svg { width: 44px; height: 44px; }
  .provisions .pick-name { font-size: 20px; line-height: 1.05; }
  .provisions .pick-desc { font-size: 13px; max-width: none; }
  .provisions .pick-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .provisions .pick-cta { align-self: flex-start; }
  .provisions .pick-kicker {
    flex-wrap: wrap;
    gap: 6px 8px;
  }
}


/* ──────────────────────────────────────────────────────────────────────
   DISPATCH — community submission CTA ("Send a dispatch")
   Lives just above the colophon on the index and every plate page.
   ────────────────────────────────────────────────────────────────────── */
.dispatch {
  padding-top: 28px;
  border-top: 2px solid var(--fg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.dispatch .head {
  min-width: 140px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
}
.dispatch .body {
  display: grid;
  gap: 0;
  border: 2px solid var(--fg);
  padding: 0;
  position: relative;
}

/* ── Collapsible summary (clickable) ─────────────────────────────── */
.dispatch .dispatch-summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  gap: 16px;
  padding: 28px 32px 24px;
  user-select: none;
  transition: background 140ms, color 140ms;
}
.dispatch .dispatch-summary::-webkit-details-marker { display: none; }
.dispatch .dispatch-summary::marker { content: ''; }
.dispatch .dispatch-summary:hover { background: var(--fg); color: var(--bg); }
.dispatch .dispatch-summary:hover .dispatch-toggle-chev { background: var(--bg); color: var(--fg); }
.dispatch .dispatch-summary:hover .dispatch-toggle-chev::before,
.dispatch .dispatch-summary:hover .dispatch-toggle-chev::after { background: var(--fg); }
.dispatch .lede {
  display: grid;
  gap: 8px;
  padding-bottom: 0;
  border-bottom: 0;
  margin: 0;
}

.dispatch .dispatch-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.dispatch .dispatch-toggle-label-close { display: none; }
.dispatch[open] .dispatch-toggle-label-open,
.dispatch .body[open] .dispatch-toggle-label-open { display: none; }
.dispatch .body[open] .dispatch-toggle-label-close { display: inline; }

/* Plus / minus chevron */
.dispatch .dispatch-toggle-chev {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  display: inline-block;
  flex-shrink: 0;
}
.dispatch .dispatch-toggle-chev::before,
.dispatch .dispatch-toggle-chev::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
}
.dispatch .dispatch-toggle-chev::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.dispatch .dispatch-toggle-chev::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}
.dispatch .body[open] .dispatch-toggle-chev::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* ── The unfolded form area ─────────────────────────────────────── */
.dispatch .dispatch-fold {
  border-top: 2px solid var(--fg);
  padding: 28px 32px 24px;
  display: grid;
  gap: 22px;
}
.dispatch .body[open] .dispatch-summary { background: var(--fg); color: var(--bg); }
.dispatch .body[open] .dispatch-toggle-chev { background: var(--bg); color: var(--fg); }
.dispatch .body[open] .dispatch-toggle-chev::before { background: var(--fg); }
.dispatch .body[open] .dispatch-toggle-chev::after { background: var(--fg); }
.dispatch .kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.dispatch .kicker .ig { font-variant-numeric: tabular-nums; opacity: 1; }
.dispatch .kicker .ig a { border-bottom: 1.5px solid var(--fg); padding-bottom: 1px; }
.dispatch h2 {
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.dispatch .sub {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  max-width: 64ch;
}

/* ── form layout ─────────────────────────────────────────────────────── */
.dispatch form {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}
.dispatch .col-photo,
.dispatch .col-meta {
  display: grid;
  gap: 16px;
  align-content: start;
}

.dispatch .field { display: grid; gap: 6px; }
.dispatch .field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.dispatch .field .hint {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.55;
  margin-left: 8px;
}
.dispatch input[type="text"],
.dispatch input[type="email"],
.dispatch select,
.dispatch textarea {
  font: inherit;
  background: transparent;
  color: inherit;
  border: 0;
  border-bottom: 1.5px solid var(--fg);
  padding: 8px 0;
  border-radius: 0;
  outline: none;
  width: 100%;
  font-size: 15px;
}
.dispatch input::placeholder,
.dispatch textarea::placeholder { color: inherit; opacity: 0.4; }
.dispatch input:focus,
.dispatch select:focus,
.dispatch textarea:focus {
  border-bottom-width: 2px;
  border-bottom-color: var(--fg);
  outline: none;
}
.dispatch select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--fg) 50%),
    linear-gradient(135deg, var(--fg) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 24px;
}
.dispatch textarea {
  border: 1.5px solid var(--fg);
  padding: 10px 12px;
  resize: vertical;
  min-height: 96px;
  line-height: 1.4;
}
.dispatch .dispatch-counter {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  opacity: 0.55;
  align-self: end;
  text-align: right;
}

.dispatch .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.85;
}
.dispatch .check input { accent-color: var(--fg); margin-top: 2px; }

/* ── dropzone & preview ──────────────────────────────────────────────── */
.dispatch .dispatch-drop {
  border: 1.5px dashed var(--fg);
  padding: 28px 22px;
  display: grid;
  gap: 10px;
  text-align: center;
  cursor: pointer;
  transition: background 140ms, color 140ms;
  min-height: 220px;
  place-content: center;
}
.dispatch .dispatch-drop.is-over,
.dispatch .dispatch-drop:hover {
  background: var(--fg);
  color: var(--bg);
}
.dispatch .dispatch-drop .glyph {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border: 2px solid currentColor;
  display: grid;
  place-items: center;
}
.dispatch .dispatch-drop .glyph svg { width: 32px; height: 32px; display: block; }
.dispatch .dispatch-drop .label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.dispatch .dispatch-drop .label u { text-decoration: underline; }
.dispatch .dispatch-drop .fmt {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}
.dispatch input[type="file"] { display: none; }

.dispatch .dispatch-preview {
  border: 1.5px solid var(--fg);
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}
.dispatch .dispatch-preview[hidden],
.dispatch .dispatch-drop[hidden] { display: none; }
.dispatch .dispatch-preview img {
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
}
.dispatch .dispatch-preview-meta {
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1.5px solid var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-variant-numeric: tabular-nums;
}
.dispatch .dispatch-remove {
  font: inherit;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--fg);
  cursor: pointer;
  padding: 0 0 1px;
  color: inherit;
}
.dispatch .dispatch-remove:hover { background: var(--fg); color: var(--bg); }

/* ── submit row ─────────────────────────────────────────────────────── */
.dispatch .submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--fg);
  margin-top: 4px;
}
.dispatch .privacy {
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0;
  opacity: 0.7;
  max-width: 56ch;
  margin: 0;
}
.dispatch .dispatch-submit {
  font: inherit;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--fg);
  color: var(--bg);
  border: 2px solid var(--fg);
  padding: 14px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 140ms, color 140ms;
}
.dispatch .dispatch-submit:hover {
  background: var(--bg);
  color: var(--fg);
}

/* ── confirmation overlay ────────────────────────────────────────────── */
.dispatch-confirm {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  z-index: 200;
  padding: 24px;
}
.dispatch-confirm[hidden] { display: none; }
.dispatch-confirm .panel {
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--fg);
  max-width: 480px;
  padding: 28px 32px 24px;
  display: grid;
  gap: 14px;
}
.dispatch-confirm .panel .kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}
.dispatch-confirm .panel h3 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.dispatch-confirm .panel .dispatch-confirm-msg {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.dispatch-confirm .panel .dispatch-confirm-msg strong { font-weight: 700; }
.dispatch-confirm-close {
  font: inherit;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--fg);
  color: var(--bg);
  border: 2px solid var(--fg);
  padding: 10px 18px;
  cursor: pointer;
  justify-self: end;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .dispatch { grid-template-columns: 1fr; gap: 16px; }
  .dispatch .dispatch-summary { padding: 20px 22px; }
  .dispatch .dispatch-fold { padding: 20px 22px; }
  .dispatch form { grid-template-columns: 1fr; gap: 22px; }
  .dispatch .submit-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .dispatch .dispatch-submit { width: 100%; }
}
