:root {
  --navy: #002269;
  --navy-2: #00184e;
  --gold: #ffc72a;
  --gold-hover: #e8b012;
  --cream: #f6f3ea;
  --paper: #fffcf4;
  --ink: #151210;
  --red: #6e1616;
  --line: #d5d0c4;
  --display: "Arial Narrow", "Helvetica Neue Condensed", "Franklin Gothic Medium", Impact, sans-serif;
  --sans: "Jost", Arial, Helvetica, sans-serif;
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --wrap: 72rem;
  --wrap-wide: 80rem;
  --pad: 1.5rem;
  --pad-lg: 2rem;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(4.5rem + env(safe-area-inset-top, 0px));
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.shell {
  width: 100%;
  max-width: var(--wrap-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.shell-6 { max-width: var(--wrap); }
@media (min-width: 1024px) {
  .shell {
    padding-left: var(--pad-lg);
    padding-right: var(--pad-lg);
  }
}

::selection {
  background: var(--navy);
  color: var(--gold);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

a { color: var(--navy); }
a:hover { color: var(--red); }
button, input, select, textarea { font: inherit; touch-action: manipulation; }
a { touch-action: manipulation; }
img { max-width: 100%; height: auto; display: block; }

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 10px;
  top: 10px;
  background: var(--gold);
  padding: 8px;
}

.bar {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 199, 42, 0.45);
}
.bar .shell {
  display: flex;
  align-items: center;
  gap: 12px 24px;
  min-height: 64px;
  padding-top: env(safe-area-inset-top);
}
.bar a { color: var(--cream); text-decoration: none; }
.bar a:hover { color: var(--gold); }
.nameplate {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding: 8px 0;
  flex-shrink: 0;
}
.nameplate b {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.1;
  white-space: nowrap;
}
.nameplate span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.bar nav {
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.bar nav a {
  padding: 20px 0 20px 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bar-sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  line-height: 1;
  min-height: 44px;
}
.bar-sign:hover {
  background: var(--gold-hover);
  color: var(--navy) !important;
}
.menu-btn {
  display: none;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 199, 42, 0.75);
  padding: 8px 12px;
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO — copy + portrait, same shell, no empty 100vh well */
.hero {
  background: var(--navy-2);
  color: var(--cream);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 28rem);
  align-items: center;
  gap: 2.5rem 3.5rem;
  padding-top: clamp(2rem, 5vh, 3.5rem);
  padding-bottom: clamp(2rem, 5vh, 3.5rem);
}
.hero-shot {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 34rem;
  background: #00143f;
}
.hero-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}
.cut {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 3;
  margin: 0;
  max-width: 14rem;
  text-align: right;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 239, 228, 0.8);
  line-height: 1.4;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 36rem;
  margin: 0;
  padding: 0 0 0 1.5rem;
  background: transparent;
  border-left: 3px solid var(--gold);
  box-shadow: none;
}
.hero-copy .k {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.k-short { display: none; }
.hero-copy h1 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  line-height: 1.12;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: none;
  max-width: 12ch;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
  text-decoration-skip-ink: none;
  padding-bottom: 0.08em;
}
.hero-copy .deck {
  margin: 0 0 22px;
  font-size: 1.125rem;
  max-width: 32rem;
  color: #ddd6c8;
  line-height: 1.55;
}
.hero-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 20px;
  font-size: 15px;
  text-transform: none;
  border: 0;
  min-height: 44px;
}
.go:hover {
  background: var(--gold-hover);
  color: var(--navy);
}
.go-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--gold);
}
.go-ghost:hover {
  background: var(--gold);
  color: var(--navy);
}

/* PETITION */
.split { background: var(--paper); }
.sign {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--paper);
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem 4rem;
  align-items: start;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
@media (min-width: 1024px) {
  .sign {
    padding-left: var(--pad-lg);
    padding-right: var(--pad-lg);
  }
}
.sign-names {
  padding: 0;
  border-left: 1px solid var(--line);
  padding-left: 2rem;
}
.wall {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 28rem;
  overflow: auto;
}
.sign-names .wall-title { margin-top: 0; }
.folio {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a6458;
  margin: 0 0 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
}
.sign h2,
.record h2,
.boards-copy h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
}
.sign h2 {
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-style: italic;
  margin: 0 0 14px;
}
.sign .ask {
  margin: 0 0 18px;
  max-width: 38rem;
}
.official {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 32px;
  max-width: 38rem;
}
.official span {
  font-size: 15px;
  color: #5a554c;
  line-height: 1.45;
}
.official span a { font-weight: 700; }
.more {
  margin: 8px 0 0;
  max-width: 28rem;
  border-top: 1px solid var(--line);
  padding-top: 4px;
}
.more summary {
  font-family: var(--sans);
  font-size: 14px;
  color: #4a463c;
  cursor: pointer;
  padding: 12px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  list-style: none;
}
.more summary::-webkit-details-marker { display: none; }
.more summary::after {
  content: " +";
  color: var(--gold);
  font-weight: 700;
}
.more[open] summary::after { content: " −"; }
.more[open] summary { margin-bottom: 8px; }

/* BOARDS — locations only */
.boards {
  background: var(--navy-2);
  color: var(--cream);
  border-top: 1px solid rgba(255, 199, 42, 0.25);
  border-bottom: 1px solid rgba(255, 199, 42, 0.25);
}
.boards-copy {
  padding: clamp(2.25rem, 5vw, 4rem) 0;
  max-width: var(--wrap);
}
.boards-copy .k {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.boards-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  font-style: italic;
  color: var(--cream);
  text-transform: none;
}
.boards-copy > p {
  margin: 0 0 18px;
  max-width: 32rem;
  color: #d8d0c0;
  font-size: 16px;
}
.spots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
  max-width: 44rem;
}
.spots li {
  border-top: 1px solid rgba(255, 199, 42, 0.4);
  padding: 14px 0 16px;
}
.spots strong {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}
.spots span {
  display: block;
  font-size: 15px;
  color: #cfc6b4;
}
.boards-copy .hero-acts {
  margin-top: 8px;
}

.fields {
  display: grid;
  gap: 14px;
  max-width: 420px;
}
.fields label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #555;
}
.fields input,
.fields select,
.write input,
.write select {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--navy);
  background: transparent;
  padding: 10px 2px;
  font-size: 16px;
  min-height: 44px;
  max-width: 100%;
  border-radius: 0;
}
.fields input:focus,
.fields select:focus {
  outline: none;
  border-color: var(--gold);
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
}
.check input { margin-top: 4px; }
.sign-btn {
  justify-self: start;
  background: var(--navy);
  color: var(--cream);
  border: 0;
  padding: 13px 20px;
  font-family: var(--sans);
  font-weight: 700;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
}
.sign-btn:hover { background: #001a54; }
.sign-btn:disabled { opacity: 0.5; }
.msg { margin: 0; font-size: 15px; min-height: 1.2em; }
.msg.ok { color: #1b5c32; }
.wall-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #666;
}
.wall li {
  border-bottom: 1px solid var(--line);
  padding: 7px 0 8px;
  font-size: 16px;
  break-inside: avoid;
}
.wall li span { color: #666; font-size: 13px; font-family: var(--sans); margin-left: 8px; }
.wall li.empty { color: #999; font-style: italic; border: 0; }

.rail {
  background: var(--red);
  color: #fff6d8;
  padding: 28px 24px;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
}
.rail p { margin: 16px 0 0; font-family: var(--sans); font-size: 14px; text-transform: none; }
.rail a { color: var(--gold); }
.rail .go {
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}

/* BOYCOTT */
.boycott {
  background: var(--red);
  color: #fff6d8;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.boycott-strap {
  margin: 0;
  padding: 10px var(--pad);
  background: #5c0e0e;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.boycott-stage {
  padding: clamp(2.25rem, 5vh, 4rem) 0;
  max-width: var(--wrap);
}
.boycott-cmds {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.boycott-cmds li {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.12;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 0.2em;
}
.boycott-cmds li:last-child { color: var(--gold); }
.boycott-note {
  margin: 8px 0 28px;
  font-size: 1.125rem;
  max-width: 36rem;
  line-height: 1.55;
}
.boycott-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.boycott-act {
  display: inline-block;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 16px;
  border: 2px solid #fff6d8;
  color: #fff6d8;
  background: transparent;
}
.boycott-act:hover {
  background: #fff6d8;
  color: var(--red);
}
.boycott-act.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #3d0707;
}
.boycott-act.gold:hover {
  background: #fff6d8;
  border-color: #fff6d8;
}

/* RECORD */
.record {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--pad) 3rem;
}
@media (min-width: 1024px) {
  .record { padding-left: var(--pad-lg); padding-right: var(--pad-lg); }
}
.record > section { margin: 0 0 4.5rem; }
.record h2 {
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-style: italic;
  margin: 0 0 8px;
}
.record h2::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  background: var(--gold);
  margin: 12px 0 22px;
}
.happened,
.docs,
.faq {
  max-width: 48rem;
}

.happened .k,
.docs .k,
#players .k,
#capital .k {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 8px;
}

.beats {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-top: 2px solid var(--navy);
}
.beats li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 18px;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.beats time {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 4px;
  font-weight: 700;
}
.beats p { margin: 0; max-width: 38rem; }

.pull {
  margin: 2.4rem 0 2.6rem;
  padding: 0;
  border: 0;
  max-width: 14em;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  line-height: 1.18;
  color: var(--navy);
  quotes: none;
}
.pull::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 3px;
  background: var(--gold);
  margin-bottom: 14px;
}
.life {
  background: transparent;
  border-left: 3px solid var(--gold);
  padding: 2px 0 2px 22px;
  margin: 0 0 32px;
}
.life h3 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #666;
}
.life p { margin: 0 0 14px; max-width: 40rem; }

.chron {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.chron li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dotted var(--line);
  font-size: 16px;
}
.chron span {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding-top: 3px;
}

.share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}
.share .go,
.share .ghost {
  margin: 0;
}

.docs .lede, .roster + .leave, #players .lede, #capital .lede {
  max-width: 40rem;
  margin: 0 0 22px;
}
.sheet {
  background: #fff;
  padding: 26px 24px 20px;
  margin: 0 0 22px;
  border: 1px solid var(--line);
  max-width: 40rem;
}
.sheet p { margin: 0 0 14px; font-size: 1.08rem; }
.sheet-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px !important;
}
.sheet-sign {
  font-family: var(--sans);
  font-size: 14px;
  color: #555;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-bottom: 0 !important;
}
.sheet-2 { border-top: 4px solid var(--navy); }
.need {
  font-size: 16px;
  max-width: 40rem;
  color: #333;
}

.roster {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.roster li {
  background: transparent;
  padding: 18px 0 16px;
  border-left: 0;
  border-bottom: 1px solid var(--line);
}
.roster li:has(.face) {
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 16px;
  align-items: start;
}
.roster .face {
  grid-column: 1;
  grid-row: 1 / span 8;
  width: 92px;
  height: 118px;
  object-fit: cover;
  object-position: 50% 12%;
}
.roster li:has(.face) > :not(.face) {
  grid-column: 2;
}
.roster h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.01em;
}
.roster .job {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 10px;
}
.roster p { margin: 0 0 10px; }
.reach-acts,
.call-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}
.reach-acts .go,
.call-acts .go,
.faq-act .go {
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.reach-acts .ghost,
.call-acts .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.faq-act { margin: 12px 0 0; }
.leave {
  background: transparent;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--gold);
  max-width: 40rem;
}

.calls {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
}
.calls li {
  background: transparent;
  padding: 0 0 20px;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}
.calls .face {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 12%;
  margin: 0 0 12px;
  background: var(--navy);
}
.calls .who {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  overflow-wrap: anywhere;
}
.calls .job {
  margin: 2px 0 8px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #666;
}
.calls .num {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--navy);
}
.calls .call-acts { margin-top: 0; }

.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.write label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 10px 0 4px;
}
.write input, .write select {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--navy);
  background: transparent;
  padding: 10px 2px;
  font-size: 16px;
  min-height: 44px;
  border-radius: 0;
}
.letter {
  white-space: pre-wrap;
  font-size: 16px;
  line-height: 1.55;
  margin: 20px 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}
.row { display: flex; flex-wrap: wrap; gap: 10px; }
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 12px 14px;
  font-family: var(--sans);
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  min-height: 44px;
}
.ghost:hover {
  background: var(--navy);
  color: var(--cream);
}
.ghost-gold {
  border-color: var(--gold);
  color: var(--gold);
}
.ghost-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.clips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.press a {
  display: block;
  color: inherit;
  text-decoration: none;
  background: transparent;
  padding: 16px 0 18px;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}
.press a:hover { background: transparent; color: var(--red); }
.press em {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.press strong {
  display: block;
  font-weight: 400;
  font-size: 1.12rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
.press span { color: #555; font-size: 15px; }

.faq dl {
  margin: 0;
  display: grid;
  gap: 10px;
}
.faq dl > div {
  background: transparent;
  padding: 16px 0 18px;
  border-bottom: 1px solid var(--line);
}
.faq dt {
  font-family: var(--sans);
  font-size: 15px;
  margin: 0;
  font-weight: 700;
}
.faq dd { margin: 8px 0 0; }

footer.site {
  max-width: none;
  background: var(--navy-2);
  color: #c9c2b3;
  padding: 3rem 0 3.5rem;
  font-size: 14px;
}
footer.site .built {
  color: var(--gold);
  font-size: 16px;
  margin: 0 0 10px;
}
footer.site a { color: var(--gold); }
footer.site .footer-acts { margin-top: 1.25rem; }
footer.site .go { color: var(--navy); }
footer.site .go:hover { color: var(--navy); }

.dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  font-family: var(--sans);
  font-weight: 700;
  text-transform: none;
  text-decoration: none;
  letter-spacing: 0;
  font-size: 15px;
  z-index: 30;
  min-height: 48px;
}

@media (max-width: 1080px) {
  :root { --pad: 1.15rem; }
  html {
    scroll-padding-top: calc(3.6rem + env(safe-area-inset-top, 0px));
  }
  body {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    font-size: 16px;
  }
  .k-long { display: none; }
  .k-short { display: inline; }
  .bar .shell {
    gap: 8px;
    min-height: 52px;
    flex-wrap: nowrap;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .bar nav { display: none; }
  .bar nav.open {
    display: flex;
    flex-direction: column;
    flex: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-2);
    padding: 8px 1rem 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 50;
    border-bottom: 1px solid var(--gold);
    max-height: calc(100dvh - 52px - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    justify-content: flex-start;
  }
  .bar nav.open a {
    display: flex;
    align-items: center;
    padding: 14px 0;
    min-height: 44px;
    border-bottom: 1px solid rgba(244, 240, 230, 0.12);
    font-size: 15px;
    letter-spacing: 0.08em;
  }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .nameplate {
    flex: 1;
    min-width: 0;
    flex-shrink: 1;
    padding: 6px 0;
  }
  .nameplate b {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
  }
  .nameplate span { display: none; }
  .bar-sign {
    margin-left: 0;
    padding: 10px 12px;
    font-size: 11px;
  }
  .hero-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    padding: 0;
  }
  .hero-shot {
    position: relative;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    height: min(46svh, 20rem);
    max-height: none;
    min-height: 12rem;
  }
  .hero-shot img {
    width: 100%;
    height: 100%;
    object-position: 50% 14%;
  }
  .hero-copy {
    margin: 0;
    padding: 1.35rem 1.15rem 1.6rem;
    max-width: none;
    border-left: 0;
    border-top: 3px solid var(--gold);
  }
  .hero-copy .k {
    letter-spacing: 0.1em;
    font-size: 11px;
    line-height: 1.4;
  }
  .hero-copy .deck {
    font-size: 1.05rem;
    margin-bottom: 1.15rem;
  }
  .cut {
    right: 12px;
    top: auto;
    bottom: 12px;
    max-width: min(12rem, 72%);
    font-size: 10px;
  }
  .hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    max-width: 11ch;
    margin-bottom: 12px;
  }
  .hero-acts {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-copy .go,
  .hero-acts .go,
  .boards-copy .go,
  .official .go,
  .sign-btn,
  .reach-acts .go,
  .call-acts .go,
  .faq-act .go,
  .share .go,
  .share .ghost,
  .row .go {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 15px 16px;
  }
  .reach-acts,
  .share {
    flex-direction: column;
  }
  .reach-acts .ghost {
    width: 100%;
  }
  .sign {
    grid-template-columns: 1fr;
    padding: 1.75rem var(--pad) 2.25rem;
    gap: 1.5rem;
  }
  .sign h2 { font-size: 1.85rem; }
  .sign-names {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1.25rem;
  }
  .wall {
    max-width: none;
    max-height: 16rem;
    -webkit-overflow-scrolling: touch;
  }
  .folio {
    letter-spacing: 0.06em;
    line-height: 1.45;
  }
  .split { grid-template-columns: 1fr; }
  .pair { grid-template-columns: 1fr; }
  .clips { grid-template-columns: 1fr; }
  .spots { grid-template-columns: 1fr; }
  .boards-copy { padding-top: 1.75rem; padding-bottom: 2rem; }
  .boycott-cmds li {
    font-size: clamp(1.35rem, 6.8vw, 1.85rem);
    line-height: 1.15;
    overflow-wrap: break-word;
  }
  .boycott-note { font-size: 1rem; }
  .boycott-stage { padding-top: 1.5rem; padding-bottom: 1.75rem; }
  .boycott-act {
    flex: 1 1 100%;
    text-align: center;
    padding: 14px 16px;
    min-height: 44px;
  }
  .beats li, .chron li { grid-template-columns: 1fr; gap: 4px; }
  .record { padding-top: 2rem; padding-bottom: 1.25rem; }
  .record h2 { font-size: 1.85rem; }
  .letter { padding: 14px; font-size: 15px; overflow-x: auto; }
  .roster li:has(.face) {
    grid-template-columns: 4.5rem 1fr;
    column-gap: 12px;
  }
  .roster .face {
    width: 4.5rem;
    height: 5.75rem;
  }
  .calls {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .calls li {
    display: grid;
    grid-template-columns: 4.75rem 1fr;
    column-gap: 12px;
    align-items: start;
    padding: 14px 0;
  }
  .calls .face {
    width: 4.75rem;
    height: 6rem;
    aspect-ratio: auto;
    margin: 0;
    grid-column: 1;
    grid-row: 1 / span 8;
  }
  .calls li > :not(.face) {
    grid-column: 2;
  }
  .calls .who { font-size: 18px; }
  .calls .job { margin-bottom: 4px; }
  .calls .num { margin-bottom: 8px; }
  .call-acts {
    flex-direction: row;
    gap: 8px;
    margin-top: 0;
  }
  .call-acts .go,
  .call-acts .ghost {
    width: auto;
    flex: 1;
    padding: 10px 8px;
    font-size: 12px;
  }
  .row { flex-direction: column; }
  .row .ghost,
  .row .sign-btn,
  .row a.ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .dock { display: block; }
  footer.site { padding: 1.5rem 0 1.75rem; }
  .check { font-size: 16px; }
  .check input { min-width: 22px; min-height: 22px; }
}

@media (max-width: 1200px) and (min-width: 1081px) {
  .bar nav a { padding-left: 14px; font-size: 12px; }
  .nameplate span { display: none; }
  .calls { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .hero-copy h1 { font-size: 1.75rem; }
  .boycott-cmds li { font-size: 1.35rem; }
}

.flip {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 1.25rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  border: 0;
  background: transparent;
  color: var(--cream);
  overflow: auto;
}
.flip:not([open]) { display: none; }
.flip[open] {
  display: grid;
  place-items: center;
}
body:has(.flip[open]) .dock {
  visibility: hidden;
}
.flip::backdrop {
  background: rgba(8, 18, 48, 0.84);
}
.flip-card {
  position: relative;
  display: grid;
  grid-template-columns: 13.5rem 1fr;
  width: min(36rem, calc(100vw - 2.5rem));
  max-height: min(32rem, calc(100dvh - 2.5rem));
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
}
.flip-x {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-x:hover {
  background: var(--gold-hover);
}
.flip-shot {
  position: relative;
  min-height: 22rem;
  background: #00143f;
}
.flip-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}
.flip-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3.25rem 1.85rem 1.5rem;
  border-left: 3px solid var(--gold);
  min-width: 0;
}
.flip-k {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.flip-copy h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.flip-copy p {
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #e6dfd0;
}
.flip-copy .go {
  display: inline-flex;
  width: auto;
  margin-bottom: 0.35rem;
  align-self: flex-start;
}
.flip-skip {
  display: flex;
  align-items: center;
  align-self: flex-start;
  margin: 0;
  padding: 8px 0;
  min-height: 44px;
  border: 0;
  background: none;
  color: rgba(246, 243, 234, 0.7);
  font-family: var(--sans);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .flip[open] {
    place-items: end stretch;
    padding: 0;
  }
  .flip-card {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    max-height: min(90dvh, 42rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .flip-shot {
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 2;
    max-height: 15rem;
  }
  .flip-shot img {
    object-position: 50% 16%;
  }
  .flip-copy {
    border-left: 0;
    border-top: 3px solid var(--gold);
    padding: 1.2rem 1.15rem calc(1.15rem + env(safe-area-inset-bottom, 0px));
  }
  .flip-copy h2 { font-size: 1.65rem; }
  .flip-copy .go {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
  .flip-x {
    top: 0.65rem;
    right: 0.65rem;
  }
}

@media print {
  .dock, .menu-btn, .flip { display: none !important; }
  footer.site { padding-bottom: 28px; }
}
