/* D01 D02 D05 D06 D13 · CUT-004 Sprint 3 tokens + §7 motion */
/* THE CUT — publication mast + homepage (beehiiv-bar). Light default. */
:root {
  color-scheme: light;

  /* Surfaces — light default */
  --cut-page: #F0F0F0;   /* chalk — environment */
  --cut-surface: #FFFFFF;   /* inner well / cards */
  --cut-type: #0B0D0E;   /* charcoal */
  --cut-type-2: #3A3F44;   /* secondary body */
  --cut-rule: #D4D4D4;   /* hairline on chalk */
  --cut-hair: var(--cut-rule);

  /* Brand */
  --cut-optic: #DFFF00;
  --cut-navy: #001F3F;
  --cut-crimson: #A52A2A;

  /* Type faces — brand lock. One display, one body. */
  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --measure: 36em;

  /* Radius — structural square */
  --radius: 0;

  /* §7 motion tokens */
  --cut-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --cut-ease-linear: linear;
  --cut-duration-ken: 12s;
  --cut-duration-kicker: 80ms;
  --cut-duration-h1: 320ms;
  --cut-stagger-line: 60ms;
  --cut-rise-y: 8px;
  --cut-duration-cards: 180ms;
  --cut-delay-cards: 120ms;
  --cut-duration-filter: 220ms;
  --cut-duration-theme: 180ms;
  --cut-duration-hover: 140ms;
  --cut-duration-subscribe: 200ms;
}
html[data-theme="dark"] {
  color-scheme: dark;
  --cut-page: #0B0D0E;
  --cut-surface: #141618;
  --cut-type: #F0F0F0;
  --cut-type-2: #B8BDC2;
  --cut-rule: #2A2E32;
  --cut-hair: var(--cut-rule);
  /* optic / crimson unchanged; navy lightened for links/CTA contrast */
  --cut-navy: #8FB4D9;
}
html[data-theme="light"] {
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --cut-page: #0B0D0E;
    --cut-surface: #141618;
    --cut-type: #F0F0F0;
    --cut-type-2: #B8BDC2;
    --cut-rule: #2A2E32;
    --cut-hair: var(--cut-rule);
    --cut-navy: #8FB4D9;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --cut-duration-h1: 0.01ms;
    --cut-stagger-line: 0.01ms;
    --cut-duration-cards: 0.01ms;
    --cut-delay-cards: 0.01ms;
    --cut-duration-filter: 0.01ms;
    --cut-duration-theme: 0.01ms;
    --cut-duration-hover: 0.01ms;
    --cut-duration-subscribe: 0.01ms;
    --cut-duration-ken: 0.01ms;
    --cut-duration-kicker: 0.01ms;
  }
}
html:has(body.pub-page) {
  background: var(--cut-page);
  color: var(--cut-type);
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
  transition: background-color var(--cut-duration-theme) var(--cut-ease-out),
              color var(--cut-duration-theme) var(--cut-ease-out);
}
html:has(body.pub-page)[data-theme="dark"] { color-scheme: dark; }
@media (prefers-color-scheme: dark) {
  html:has(body.pub-page):not([data-theme="light"]) { color-scheme: dark; }
}
*,
*::before,
*::after { box-sizing: border-box; }
[hidden] { display: none !important; }

/* Shared mast — §5.6 CUT-004-s2-d19. Desktop 56px; mobile 2-row. */
:root {
  --cut-mast: 56px;
}
header.cut-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--cut-mast);
  min-height: var(--cut-mast);
  max-height: var(--cut-mast);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav tools";
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  margin: 0;
  background: #FFFFFF;
  color: #0B0D0E;
  border-bottom: 1px solid #E5E5E5;
  box-sizing: border-box;
  overflow: visible;
}
html[data-theme="dark"] header.cut-header {
  background: #141618;
  color: #F0F0F0;
  border-bottom-color: rgba(240, 240, 240, 0.14);
}
header.cut-header a.cut-brand,
header.cut-header > a {
  grid-area: brand;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  padding: 0;
  min-height: 44px;
}
header.cut-header .cut-logo {
  height: 36px;
  width: auto;
  display: block;
  max-width: none;
}
header.cut-header img.cut-logo-on-dark { display: none; }
html[data-theme="dark"] header.cut-header img.cut-logo-on-light { display: none; }
html[data-theme="dark"] header.cut-header img.cut-logo-on-dark { display: block; }

header.cut-header .cut-header-tools {
  grid-area: tools;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  justify-self: end;
}

header.cut-header .cut-nav {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: none;
}
header.cut-header .cut-nav a {
  color: #0B0D0E;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  border-bottom: 1px solid transparent;
}
html[data-theme="dark"] header.cut-header .cut-nav a { color: #F0F0F0; }
header.cut-header .cut-nav a:hover { border-bottom-color: var(--cut-navy); }
header.cut-header .cut-nav a[aria-current="page"] {
  border-bottom-color: var(--cut-navy);
}

header.cut-header .cut-theme {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
header.cut-header .cut-theme-btn,
header.cut-header .cut-theme-cycle {
  appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0 8px;
  min-height: 44px;
  min-width: 44px;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: var(--cut-navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header.cut-header .cut-theme-btn.is-on,
header.cut-header .cut-theme-cycle[aria-pressed="true"] {
  color: #0B0D0E;
  border-bottom: 2px solid var(--cut-optic);
}
html[data-theme="dark"] header.cut-header .cut-theme-btn.is-on,
html[data-theme="dark"] header.cut-header .cut-theme-cycle[aria-pressed="true"] {
  color: #F0F0F0;
}

header.cut-header .cut-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  background: var(--cut-navy);
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 4px;
  white-space: nowrap;
  box-sizing: border-box;
}
html[data-theme="dark"] header.cut-header .cut-subscribe {
  background: #8FB4D9;
  color: #0B0D0E;
}
header.cut-header .cut-subscribe:hover {
  opacity: 0.92;
}
header.cut-header .cut-subscribe[aria-current="page"] {
  outline: 2px solid var(--cut-optic);
  outline-offset: 2px;
}

/* D02: system + prefers-dark mirrors attribute dark */
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) header.cut-header {
    background: #141618;
    color: #F0F0F0;
    border-bottom-color: rgba(240, 240, 240, 0.14);
  }
  html:not([data-theme="light"]) header.cut-header img.cut-logo-on-light { display: none; }
  html:not([data-theme="light"]) header.cut-header img.cut-logo-on-dark { display: block; }
  html:not([data-theme="light"]) header.cut-header .cut-nav a { color: #F0F0F0; }
  html:not([data-theme="light"]) header.cut-header .cut-theme-btn.is-on,
  html:not([data-theme="light"]) header.cut-header .cut-theme-cycle[aria-pressed="true"] {
    color: #F0F0F0;
  }
  html:not([data-theme="light"]) header.cut-header .cut-subscribe {
    background: #8FB4D9;
    color: #0B0D0E;
  }
  html:not([data-theme="light"]) .pub-btn {
    background: #8FB4D9;
    color: #0B0D0E;
  }
  html:not([data-theme="light"]) .chip.is-on,
  html:not([data-theme="light"]) .chip[aria-pressed="true"] {
    background: #8FB4D9;
    color: #0B0D0E;
    border-color: #8FB4D9;
  }
  html:not([data-theme="light"]) .pub-park { border-left-color: #8FB4D9; }
}

/* Mobile §5.6 two-row — brand|tools / nav. Prefer ≥44px targets; ~88px total. */
@media (max-width: 900px) {
  header.cut-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand tools"
      "nav nav";
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 0 12px;
    gap: 0;
    align-items: center;
  }
  header.cut-header a.cut-brand {
    min-height: 44px;
  }
  header.cut-header .cut-logo { height: 28px; }
  header.cut-header .cut-header-tools {
    gap: 8px;
  }
  header.cut-header .cut-nav {
    grid-column: auto;
    justify-content: flex-start;
    gap: 8px 20px;
    min-height: 44px;
  }
  header.cut-header .cut-nav a {
    min-height: 44px;
    padding: 0 4px;
  }
  header.cut-header .cut-subscribe {
    min-height: 44px;
    padding: 0 12px;
  }
  header.cut-header .cut-theme-cycle {
    min-height: 44px;
    min-width: 44px;
    padding: 0 6px;
    font-size: 12px;
  }
}

/* Publication */
body.pub-page {
  margin: 0;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--cut-type);
  background: var(--cut-page);
}
.pub-well {
  width: min(1120px, calc(100% - 96px));
  margin: 0 auto;
  background: var(--cut-surface);
}
@media (max-width: 720px) {
  .pub-well { width: calc(100% - 40px); }
}

.pub-section {
  padding: 80px 48px;
}
@media (max-width: 720px) {
  .pub-section { padding: 48px 20px; }
}

.pub-fold {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.pub-fold-type { min-width: 0; }
.pub-fold-still { min-width: 0; }
@media (max-width: 860px) {
  .pub-fold {
    grid-template-columns: 1fr;
  }
  .pub-fold-still { order: 2; }
  .pub-fold-type { order: 1; }
}

.pub-kicker {
  margin: 0 0 12px;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cut-navy);
}
.pub-h1 {
  margin: 0 0 16px;
  max-width: 12em;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cut-type);
}
.pub-lede {
  margin: 0 0 24px;
  max-width: 36em;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--cut-type);
}

/* §7 — home page load: H1 lines only. Mast / strip / letter / footer motionless. */
@keyframes cut-rise-fade {
  from { opacity: 0; transform: translate3d(0, var(--cut-rise-y), 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
.pub-fold .cut-hero-line {
  display: block;
  animation: cut-rise-fade var(--cut-duration-h1) var(--cut-ease-out) both;
}
.pub-fold .cut-hero-line:nth-of-type(1) { animation-delay: 0ms; }
.pub-fold .cut-hero-line:nth-of-type(2) { animation-delay: calc(1 * var(--cut-stagger-line)); }
.pub-fold .cut-hero-line:nth-of-type(3) { animation-delay: calc(2 * var(--cut-stagger-line)); }

.pub-still {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cut-page);
}
.pub-still img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.pub-still--drift img {
  animation: cut-ken var(--cut-duration-ken) var(--cut-ease-linear) infinite alternate;
  transform-origin: 50% 58%;
}
@keyframes cut-ken {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(2%, -1.2%, 0); }
}

.pub-form {
  display: grid;
  gap: 12px;
  max-width: 36em;
  margin: 0 0 12px;
}
.pub-form .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.pub-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  line-height: 20px;
  color: var(--cut-type);
}
.pub-form input[type="email"],
.pub-form input[type="text"] {
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--cut-navy);
  border-radius: 0;
  background: var(--cut-surface);
  color: var(--cut-type);
  font-family: inherit;
  font-size: 16px;
}
.pub-form .check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
}
.pub-form .check input { width: auto; height: auto; margin: 0; }

.pub-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: var(--cut-navy); /* navy fill — never crimson / never optic */
  color: #F0F0F0;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transform: none;
}
html[data-theme="dark"] .pub-btn {
  background: #8FB4D9;
  color: #0B0D0E;
}
.pub-btn:hover { transform: none; }

.pub-watch {
  display: inline-block;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--cut-navy);
  text-decoration: none;
}
.pub-watch:hover { text-decoration: underline; }
.pub-fine {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 18px;
  color: var(--cut-navy);
  opacity: 0.6;
}

.pub-h2 {
  margin: 0 0 24px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cut-navy);
}

.pub-issue {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .pub-issue { grid-template-columns: 1fr; }
}
.pub-issue-date {
  margin: 0 0 8px;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: var(--cut-navy);
}
.pub-issue-title {
  margin: 0 0 12px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 32px);
  line-height: 1.1;
  color: var(--cut-type);
}
.pub-issue-dek {
  margin: 0 0 20px;
  max-width: 36em;
  font-size: 16px;
  line-height: 24px;
  color: var(--cut-type);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pub-archive { list-style: none; margin: 0; padding: 0; }
.pub-archive-row {
  display: grid;
  grid-template-columns: 11em 1fr 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--cut-hair);
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--cut-type);
}
.pub-archive-row:first-child { border-top: 1px solid var(--cut-hair); }
.pub-archive-dek {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
@media (max-width: 720px) {
  .pub-archive-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .pub-archive-dek { white-space: normal; }
}

.pub-foot {
  padding: 80px 48px 48px;
  border-top: 1px solid var(--cut-hair);
}
@media (max-width: 720px) {
  .pub-foot { padding: 48px 20px 32px; }
}
.pub-foot-links {
  margin: 20px 0 0;
  font-size: 14px;
}
.pub-foot-links a {
  color: var(--cut-navy);
  text-decoration: none;
}
.pub-foot-links a:hover { text-decoration: underline; }
.pub-rain {
  margin: 16px 0 0;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: var(--cut-navy);
}

/* Inner pages (guide.css / cut.css): compact footer subscribe, keep page bodies. */
.pub-colophon-sub {
  margin: 32px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--cut-hair, #E5E5E5);
  max-width: 36em;
}
.pub-colophon-sub .pub-form { margin-bottom: 8px; }

@media (prefers-reduced-motion: reduce) {
  .pub-fold .cut-hero-line,
  .pub-still--drift img {
    animation: none !important;
    transform: none;
    opacity: 1;
  }
}

/* Age filter — View Transitions (Watchlist) */
#parks {
  view-transition-name: cut-parks;
}
::view-transition-old(cut-parks),
::view-transition-new(cut-parks) {
  animation-duration: var(--cut-duration-filter);
  animation-timing-function: var(--cut-ease-out);
}
.pub-park.is-filter-fade {
  transition: opacity var(--cut-duration-filter) var(--cut-ease-out),
              transform var(--cut-duration-filter) var(--cut-ease-out);
}
#parks.is-filter-swap {
  transition: opacity var(--cut-duration-filter) var(--cut-ease-out);
}
html.cut-reduce .pub-still--drift img {
  animation: none;
  transform: scale(1) translate3d(0, 0, 0);
}

.pub-colophon-sub {
  width: min(1120px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.pub-proof {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  max-width: 36em;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--cut-type);
}
.pub-proof li + li { margin-top: 12px; }

.pub-still--fold { aspect-ratio: 4 / 5; }
.pub-fold-form.pub-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0;
  max-width: 36em;
}
.pub-fold-form.pub-form > label:not(.check) { grid-column: 1; }
.pub-fold-form.pub-form .pub-btn {
  grid-column: 2;
  grid-row: 1;
  border-radius: 0 8px 8px 0;
  height: 44px;
}
.pub-fold-form.pub-form input[type="email"] {
  border-right: 0;
  border-radius: 8px 0 0 8px;
}
.pub-fold-form.pub-form .check { grid-column: 1 / -1; margin-top: 10px; }
.pub-fold-form.pub-form .visually-hidden { grid-column: 1 / -1; }
@media (max-width: 520px) {
  .pub-fold-form.pub-form { grid-template-columns: 1fr; }
  .pub-fold-form.pub-form .pub-btn { grid-column: 1; grid-row: auto; border-radius: 8px; }
  .pub-fold-form.pub-form input[type="email"] { border-right: 1px solid var(--cut-navy); border-radius: 8px; }
}

/* home-pass: age, nominate, quiet sponsor. Fold form already one row. */
.pub-promise {
  margin: 8px 0 0;
  max-width: 36em;
  font-size: 14px;
  line-height: 22px;
  color: var(--cut-type);
}
.pub-fold-type .pub-watch { display: block; }
.pub-still--latest { aspect-ratio: 16 / 9; }
.pub-latest .pub-kicker { margin-bottom: 24px; }

.pub-section-h2 {
  margin: 0 0 16px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cut-type);
}

.pub-age,
.pub-parks-tease,
.pub-nom {
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--cut-hair);
}
.pub-age { max-width: none; }
.pub-age-list {
  margin: 0 0 12px;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: var(--cut-type);
}
.pub-age-list a {
  color: var(--cut-navy);
  text-decoration: none;
}
.pub-age-list a:hover { text-decoration: underline; }
.pub-age-help {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--cut-navy);
  opacity: 0.7;
}

.pub-parks-tease .pub-watch { margin-top: 0; }

.pub-nom-body {
  margin: 0 0 20px;
  max-width: 36em;
  font-size: 16px;
  line-height: 24px;
  color: var(--cut-type);
}
.pub-nom-form.pub-form { max-width: 28em; }
.pub-form select,
.pub-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--cut-navy);
  border-radius: 0;
  background: var(--cut-surface);
  color: var(--cut-type);
  font-family: inherit;
  font-size: 16px;
}
.pub-form select { height: 44px; padding: 0 12px; }
.pub-form textarea { min-height: 96px; resize: vertical; line-height: 24px; }
.pub-nom-wall {
  margin: 16px 0 0;
  max-width: 36em;
  font-size: 14px;
  line-height: 22px;
  color: var(--cut-navy);
  opacity: 0.7;
}

.pub-sponsor {
  margin: 0 0 40px;
  padding: 0 0 32px;
  border-bottom: 1px solid var(--cut-hair);
  max-width: 36em;
}
.pub-sponsor .pub-kicker { margin-bottom: 8px; }
.pub-sponsor-line {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 22px;
  color: var(--cut-type);
}
.pub-sponsor .pub-watch { margin-top: 0; }
.pub-foot .pub-form { margin-top: 0; }


/* home-pass watchlist + letter */
.pub-watchlist .pub-section-h2 { max-width: 16em; }
.filters { margin: 24px 0 32px; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}
.chip {
  appearance: none;
  background: transparent;
  color: var(--cut-navy);
  border: 1px solid var(--cut-navy);
  border-radius: 0;
  padding: 8px 12px;
  font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.chip:hover { background: var(--cut-page); }
.chip.is-on,
.chip[aria-pressed="true"] {
  background: #001F3F;
  color: #F0F0F0;
  border-color: #001F3F;
}
html[data-theme="dark"] .chip.is-on,
html[data-theme="dark"] .chip[aria-pressed="true"] {
  background: #8FB4D9;
  color: #0B0D0E;
  border-color: #8FB4D9;
}

.pub-park {
  margin: 0 0 16px;
  padding: 16px 20px;
  background: var(--cut-page);
  border-left: 4px solid #001F3F;
}
html[data-theme="dark"] .pub-park { border-left-color: #8FB4D9; }
.pub-park-name {
  margin: 0 0 6px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cut-type);
}
.pub-park-event {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 22px;
  color: var(--cut-navy);
}
.pub-park-line {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 22px;
  color: var(--cut-type);
}
.pub-park-line:last-child { margin-bottom: 0; }

.pub-empty,
.empty {
  margin: 16px 0 0;
  padding: 16px 20px;
  background: var(--cut-page);
  border-left: 4px solid var(--cut-navy);
  font-size: 16px;
  line-height: 24px;
  color: var(--cut-type);
}

.pub-letter { max-width: 40em; }
.pub-letter .pub-h1 { max-width: 16em; }
.pub-letter-h {
  margin: 32px 0 12px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cut-navy);
}
.pub-letter p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 24px;
}
.pub-letter-list {
  margin: 0 0 8px;
  padding-left: 1.15rem;
  font-size: 16px;
  line-height: 24px;
}
.pub-letter-list li + li { margin-top: 6px; }
.pub-letter .pub-park { margin-bottom: 12px; }

.pub-letter-foot { padding-top: 32px; }
.pub-sponsor--quiet {
  margin: 0;
  padding: 0;
  border-bottom: 0;
  max-width: 36em;
}

.pub-archive-row {
  grid-template-columns: 11em minmax(0, 1.4fr) minmax(0, 1fr);
}
.pub-archive-row a {
  color: var(--cut-type);
  text-decoration: none;
}
.pub-archive-row a:hover { text-decoration: underline; color: var(--cut-navy); }

.pub-credit {
  margin: 12px 0 0;
  max-width: 36em;
  font-size: 14px;
  line-height: 22px;
  color: var(--cut-type);
}
.pub-optional {
  font-size: 12px;
  opacity: 0.7;
  text-transform: none;
  letter-spacing: 0;
}
.pub-notes {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 13px;
  line-height: 20px;
  color: var(--cut-navy);
}
.pub-notes li + li { margin-top: 8px; }
.pub-notes a { color: var(--cut-navy); }
.pub-signup-form { margin-top: 24px; }
.pub-h1 { max-width: 18em; }
.pub-issue { grid-template-columns: 1fr; }
.pub-archive-row { grid-template-columns: 1fr; }


/* D13 — sponsor frame (/issue/001 only). Ruled, no fill/shadow/crimson. */
.cut-sponsor {
  margin: 40px 0 32px;
  padding: 28px 0;
  max-width: var(--measure, 36em);
  border-top: 1px solid var(--cut-rule);
  border-bottom: 1px solid var(--cut-rule);
  border-radius: var(--radius, 0);
  background: transparent;
  box-shadow: none;
}
.cut-sponsor-label {
  margin: 0 0 12px;
  font-family: var(--font-body), "Archivo", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cut-type-2);
}
.cut-sponsor-line {
  margin: 0 0 12px;
  font-family: var(--font-display), "Oswald", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--cut-type);
}
.cut-sponsor-link {
  color: var(--cut-navy);
  text-decoration: none;
}
.cut-sponsor-link:hover {
  text-decoration: underline;
}
.cut-sponsor-disclosure {
  margin: 0;
  font-family: var(--font-body), "Archivo", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  color: var(--cut-type-2);
}

/* CUT-004 Sprint 3 — §6.5 Weekend strip (home only; static; crimson once) */
.cut-weekend-strip {
  background: var(--cut-crimson); /* #A52A2A — same band in dark theme */
  color: #F0F0F0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 32px 48px;
  box-sizing: border-box;
  border-radius: var(--radius, 0);
  box-shadow: none;
}
.cut-weekend-strip-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.cut-weekend-strip-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px 24px;
  margin: 0 0 24px;
}
.cut-weekend-strip-date {
  margin: 0;
  font-family: var(--font-display, "Oswald", system-ui, sans-serif);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
  color: #F0F0F0;
}
.cut-weekend-strip-watch {
  font-family: var(--font-body, "Archivo", system-ui, sans-serif);
  font-size: 0.875rem;
  line-height: 1.4;
  color: #F0F0F0;
  text-decoration: none;
}
.cut-weekend-strip-watch:hover {
  text-decoration: underline;
}
.cut-weekend-strip-parks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-radius: var(--radius, 0);
}
.cut-weekend-strip-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
  text-decoration: none;
  color: #F0F0F0;
  border-radius: var(--radius, 0);
  box-shadow: none;
  border-left: 1px solid rgba(240, 240, 240, 0.2);
}
.cut-weekend-strip-cell:first-child {
  border-left: 0;
  padding-left: 0;
}
.cut-weekend-strip-cell:last-child {
  padding-right: 0;
}
.cut-weekend-strip-park {
  font-family: var(--font-display, "Oswald", system-ui, sans-serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  color: #F0F0F0;
}
.cut-weekend-strip-meta {
  font-family: var(--font-body, "Archivo", system-ui, sans-serif);
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: rgba(240, 240, 240, 0.8);
}
/* Dark theme: SAME crimson band — do not recolor */
html[data-theme="dark"] .cut-weekend-strip,
html[data-theme="dark"] .cut-weekend-strip a {
  background: var(--cut-crimson);
  color: #F0F0F0;
}
html[data-theme="dark"] .cut-weekend-strip {
  background: var(--cut-crimson);
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .cut-weekend-strip {
    background: var(--cut-crimson);
    color: #F0F0F0;
  }
}
@media (max-width: 720px) {
  .cut-weekend-strip {
    padding: 28px 20px;
  }
  .cut-weekend-strip-parks {
    grid-template-columns: 1fr;
  }
  .cut-weekend-strip-cell {
    border-left: 0;
    border-top: 1px solid rgba(240, 240, 240, 0.2);
    padding: 14px 0;
  }
  .cut-weekend-strip-cell:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .cut-weekend-strip-cell:last-child {
    padding-bottom: 0;
  }
}
