/* The Crimson Wire — staging landing page. Palette/type roles per TAL-80 brief. */

:root {
  --crimson-black: #1a0308;
  --wire-crimson: #4c0519;
  --wire-crimson-deep: #340311;
  --live-red: #e01e2b;
  --paper: #f2ece1;
  --ash: #a79e92;
  --solder-gold: #c6a15b;

  --display: 'Anton', 'Archivo Black', Impact, sans-serif;
  --editorial: 'Newsreader', Georgia, serif;
  --mono: 'Space Mono', 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--crimson-black);
  color: var(--paper);
  width: 100%;
}

body {
  font-family: var(--editorial);
  line-height: 1.5;
  /* clip (not overflow-x:hidden) contains stray horizontal overflow WITHOUT
     turning the element into a scroll container. overflow-x:hidden on the
     root/body makes iOS Safari treat it as the scroller, which breaks
     position:sticky + momentum scroll and locks vertical scrolling. */
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img { display: block; max-width: 100%; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top progress bar */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--live-red);
  z-index: 100;
  transition: width 80ms linear;
}

/* Masthead */
header.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--crimson-black);
  border-bottom: 1px solid var(--wire-crimson);
}

.masthead-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.wordmark {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.wordmark img {
  height: 44px;
  width: auto;
  display: block;
  transition: filter 160ms linear, transform 160ms ease;
}
.wordmark:hover img, .wordmark:focus-visible img { animation: wire-neon 500ms steps(2, end); filter: brightness(1.08) drop-shadow(0 0 2px rgba(238, 31, 57, .62)) drop-shadow(0 0 5px rgba(238, 31, 57, .38)) drop-shadow(0 0 10px rgba(238, 31, 57, .14)); }
@keyframes wire-neon { 0%, 13% { opacity: .88; } 14%, 28% { opacity: 1; } 29%, 35% { opacity: .93; } 36%, 100% { opacity: 1; } }

.masthead-actions { display: inline-flex; align-items: center; gap: 2px; }
.masthead-actions--placeholder { width: 147px; visibility: hidden; }
.masthead-instagram { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; color: var(--ash); }
.masthead-instagram svg { width: 17px; height: 17px; stroke: var(--ash); }
.masthead-instagram svg circle[fill] { fill: var(--ash); }
.masthead-instagram:hover, .masthead-instagram:focus-visible { color: var(--paper); }
.masthead-instagram:hover svg, .masthead-instagram:focus-visible svg { stroke: var(--paper); }
.masthead-instagram:hover svg circle[fill], .masthead-instagram:focus-visible svg circle[fill] { fill: var(--paper); }

nav.masthead-nav {
  display: flex;
  min-width: 270px;
  align-items: center;
  gap: 24px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-wrap: wrap;
}

nav.masthead-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 8px;
  color: var(--ash);
  transition: color 120ms linear;
}
nav.masthead-nav a:hover,
nav.masthead-nav a:focus-visible { color: var(--paper); }

.section-select {
  min-height: 36px;
  padding: 0 28px 0 10px;
  border: 1px solid var(--wire-crimson);
  border-radius: 0;
  background: var(--crimson-black);
  color: var(--ash);
  font: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--wire-crimson);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.language-toggle button {
  min-width: 42px;
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ash);
  cursor: pointer;
  font: inherit;
}

.language-toggle button + button { border-left: 1px solid var(--wire-crimson); }
.language-toggle button[aria-pressed="true"] { background: var(--paper); color: var(--crimson-black); }
.language-toggle button:hover { color: var(--paper); }
.language-toggle button[aria-pressed="true"]:hover { color: var(--crimson-black); }

.btn-subscribe {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--live-red);
  color: var(--paper);
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 0;
}
.btn-subscribe:hover { background: #ff2d3d; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--live-red);
  outline-offset: 2px;
}

/* The Wire — signature ticker */
.wire {
  background: var(--wire-crimson);
  border-bottom: 1px solid var(--wire-crimson-deep);
  overflow: hidden;
  white-space: nowrap;
}

.wire-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.ticker-toggle {
  flex: none;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 14px;
}

.ticker-toggle:hover,
.ticker-toggle:focus-visible { color: var(--live-red); }

.on-air-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live-red);
  margin-left: 24px;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.wire-station {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--paper);
  flex: none;
}

.wire-track-viewport {
  overflow: hidden;
  flex: 1;
}

.wire-track {
  display: inline-flex;
  gap: 32px;
  /* JS sets this from the current language's ticker length so one DE item
     moves at the same readable speed as a full EN transmission. */
  animation: marquee var(--ticker-duration, 90s) linear infinite;
  white-space: nowrap;
}

.wire-track a {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ash);
}
.wire-track a:hover, .wire-track a:focus-visible { color: var(--paper); }

.wire:hover .wire-track { animation-play-state: paused; }
.ticker-paused .wire-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .on-air-dot { animation: none; }
  .wire-track { animation: none; }
  .wire-track-viewport { overflow-x: auto; }
  .wordmark:hover img, .wordmark:focus-visible img { animation: none; transform: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(500px, 56.25vw, 900px);
  display: flex;
  align-items: flex-end;
  background: var(--wire-crimson-deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Preserve the top of artist portraits; the old centered crop lost heads on wide desktops. */
  object-position: center top;
  opacity: 0.62;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.38) 42%, rgba(0,0,0,0) 72%);
}
.hero-controls { position: absolute; right: max(24px, calc((100vw - 1120px) / 2)); bottom: 28px; z-index: 3; display: flex; align-items: center; gap: 14px; }
.hero-arrow, .hero-dot { border: 1px solid rgba(255,255,255,.42); background: rgba(14,0,5,.48); color: var(--paper); cursor: pointer; }
.hero-arrow { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; font: 34px/.8 var(--editorial); backdrop-filter: blur(8px); transition: transform 160ms ease, border-color 160ms linear, background 160ms linear, color 160ms linear; }
.hero-arrow:hover, .hero-arrow:focus-visible { border-color: var(--live-red); background: rgba(238,31,57,.18); color: var(--paper); transform: scale(1.08); }
.hero-arrow-prev, .hero-arrow-next { padding-bottom: 4px; }
.hero-dots { display: flex; align-items: center; gap: 7px; }
.hero-dot { width: 8px; height: 8px; padding: 0; border-radius: 50%; border-color: var(--ash); }
.hero-dot[aria-current="true"] { background: var(--live-red); border-color: var(--live-red); box-shadow: 0 0 7px rgba(238,31,57,.4); }
.hero-slide-enter { animation: hero-slide-in 360ms cubic-bezier(.2,.7,.2,1) both; }
.hero-image.hero-slide-enter { animation-name: hero-image-in; }
@keyframes hero-slide-in { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }
@keyframes hero-image-in { from { opacity: 0; transform: scale(1.025); } to { opacity: .62; transform: scale(1); } }

.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 0 56px;
  width: 100%;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ash);
  display: block;
  margin-bottom: 12px;
}

.eyebrow .cat + .cat::before { content: " | "; }

.hero-headline {
  font-family: var(--display);
  font-size: clamp(32px, 6vw, 76px);
  line-height: 0.98;
  margin: 0 0 16px;
  max-width: 900px;
  color: var(--paper);
}

.dek {
  font-family: var(--editorial);
  font-size: 18px;
  color: var(--ash);
  max-width: 640px;
  margin: 0 0 20px;
}

.cta {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper);
  border-bottom: 1px solid var(--live-red);
  padding-bottom: 2px;
  display: inline-block;
}
.cta:hover, .cta:focus-visible { color: var(--live-red); }

.site-status { width: min(100% - 48px, 1120px); margin: 24px auto 0; color: var(--ash); font-family: var(--mono); font-size: 13px; }
.band-callout { border-block: 1px solid var(--wire-crimson); background: #120005; }
.band-callout-inner { display: grid; grid-template-columns: 130px 1fr auto; gap: 32px; align-items: center; padding-block: 28px; }
.band-callout-kicker { margin: 0; color: var(--live-red); font: 11px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.band-callout h2, .submit-band h2 { margin: 0; font: 400 clamp(28px, 4vw, 48px)/.95 var(--display); text-transform: uppercase; }
.band-callout p:not(.band-callout-kicker), .submit-band-copy p:not(.band-callout-kicker) { margin: 8px 0 0; color: var(--ash); }
.band-callout-link { color: var(--paper); font: 12px var(--mono); letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.band-callout-link:hover, .band-callout-link:focus-visible { color: var(--live-red); }
.submit-band { margin-block: 36px 72px; padding: 0; border: 1px solid var(--wire-crimson); background: linear-gradient(105deg, #150005, #080001); box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 18px 44px rgba(0,0,0,.22); }
.submit-band-summary { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 26px clamp(24px, 4vw, 48px); cursor: pointer; list-style: none; }
.submit-band-summary::-webkit-details-marker { display: none; }
.submit-band[open] .submit-band-summary { border-bottom: 1px solid var(--wire-crimson); }
.submit-band-copy { display: grid; grid-template-columns: auto 1fr; column-gap: 20px; align-items: baseline; }
.submit-band-copy .band-callout-kicker { grid-row: 1 / span 2; }
.submit-band-copy h2 { margin: 0; font-size: clamp(30px, 3vw, 42px); letter-spacing: -.01em; }
.submit-band-copy p:not(.band-callout-kicker) { grid-column: 2; margin: 4px 0 0; font: 17px/1.35 var(--editorial); }
.submit-band-toggle { align-self: center; justify-self: end; color: var(--paper); font: 12px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.submit-band-toggle b { display: inline-block; margin-left: 8px; color: var(--live-red); transition: transform 180ms ease; }
.submit-band[open] .submit-band-toggle b { transform: rotate(180deg); }
.band-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: clamp(28px, 4vw, 48px); border-top: 1px solid var(--wire-crimson); background: rgba(0,0,0,.28); }
.band-form label { display: grid; gap: 8px; color: var(--ash); font: 10px var(--mono); letter-spacing: .11em; text-transform: uppercase; }
.band-form label span { color: var(--live-red); }
.band-form input, .band-form textarea { width: 100%; box-sizing: border-box; border: 1px solid #5d182b; border-radius: 0; background: #050001; color: var(--paper); padding: 12px; font: 17px var(--editorial); transition: border-color 120ms linear, box-shadow 120ms linear; }
.band-form input:focus, .band-form textarea:focus { outline: 0; border-color: var(--live-red); box-shadow: 0 0 0 2px rgba(235,31,57,.2); }
.band-form-message, .band-form-footer { grid-column: 1 / -1; }
.band-form textarea { resize: vertical; }
.band-form-footer { display: flex; align-items: center; gap: 18px; padding-top: 4px; }
.band-form button { justify-self: start; background: var(--paper); color: var(--crimson-black); }
.band-form button:hover, .band-form button:focus-visible { background: var(--live-red); color: var(--paper); }
.band-form-status { min-height: 1.4em; margin: 0; color: var(--ash); font: 12px var(--mono); }
.band-honeypot { position: absolute; left: -10000px; }

/* Section divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px 0 28px;
  scroll-margin-top: 140px;
}

.section-label {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--paper);
  white-space: nowrap;
}

.section-rule {
  flex: 1;
  height: 1px;
  background: var(--wire-crimson);
}

/* Tile grid — auto-fit so a partial row (e.g. 2 of 3 thirds, or a lone
   half) stretches to fill the row instead of leaving an empty gap where
   a missing tile would have been. */
.tile-grid {
  display: grid;
  /* min(Npx, 100%) clamps the track's min width to the container on narrow
     screens so the grid never forces horizontal overflow on phones. */
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.tile-grid.halves {
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
}

.tile-grid.fulls {
  grid-template-columns: minmax(0, 1fr);
}

.tile {
  display: block;
}

.tile-image-wrap {
  position: relative;
  border: 1px solid var(--wire-crimson);
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.tile-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 120ms linear;
}

.tile:hover .tile-image-wrap img,
.tile:focus-visible .tile-image-wrap img { opacity: 0.7; }

.lock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--crimson-black);
  color: var(--paper);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 1px solid var(--wire-crimson);
}

.tile-body { padding-top: 14px; }

.tile-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ash);
  display: block;
  margin-bottom: 8px;
  transition: color 120ms linear;
}

.tile-eyebrow .cat + .cat::before { content: " | "; }

.tile-headline {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.05;
  color: var(--paper);
  margin: 0 0 8px;
  transition: color 120ms linear;
}

.tile-dek {
  font-family: var(--editorial);
  font-size: 15px;
  color: var(--ash);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tile:hover .tile-headline,
.tile:focus-visible .tile-headline { color: var(--ash); }
.tile:hover .tile-eyebrow,
.tile:focus-visible .tile-eyebrow { color: #8a8177; }

/* Subscribe panel */
.subscribe-panel {
  background: var(--wire-crimson);
  text-align: center;
  padding: 72px 24px;
  margin-top: 64px;
}

.subscribe-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--paper);
  margin: 0 0 12px;
}

.subscribe-sub {
  font-family: var(--editorial);
  color: var(--ash);
  max-width: 560px;
  margin: 0 auto 28px;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.subscribe-form input[type="email"] {
  font-family: var(--mono);
  font-size: 14px;
  padding: 14px 16px;
  border: 1px solid var(--paper);
  background: var(--crimson-black);
  color: var(--paper);
  flex: 1;
  min-width: 220px;
}

.subscribe-form button {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--live-red);
  color: var(--paper);
  border: none;
  padding: 14px 24px;
  cursor: pointer;
}
.subscribe-form button:hover { background: #ff2d3d; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--wire-crimson);
}

.site-footer-inner {
  padding: 32px 0 calc(48px + env(safe-area-inset-bottom));
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-credit a { color: inherit; text-decoration: none; }
.footer-credit a:hover, .footer-credit a:focus-visible { color: var(--paper); }

.footer-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-legal-desktop { display: none; }
.footer-legal-mobile { display: block; position: relative; }
.footer-legal-mobile summary { display: flex; align-items: center; min-height: 44px; padding: 0 6px; cursor: pointer; list-style: none; }
.footer-legal-mobile summary::-webkit-details-marker { display: none; }
.footer-legal-mobile summary::after { content: '⌄'; margin-left: 4px; color: var(--ash); }
.footer-legal-mobile[open] summary { color: var(--paper); }
.footer-legal-mobile[open] summary::after { transform: rotate(180deg); }
.footer-legal-menu { position: absolute; right: 0; bottom: 46px; z-index: 60; display: flex; flex-direction: column; min-width: 132px; border: 1px solid var(--wire-crimson); background: var(--crimson-black); box-shadow: 0 12px 24px rgba(0, 0, 0, .35); }
.footer-legal-menu a { justify-content: flex-end; min-height: 40px; padding: 0 12px; white-space: nowrap; }

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 6px;
}
.footer-instagram { display: none !important; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--paper); }

/* Legal pages */
.legal-main { min-height: calc(100vh - 202px); }
.legal-copy { width: min(100%, 800px); padding: 80px 0 96px; }
.legal-kicker { margin: 0 0 14px; color: var(--live-red); font: 11px/1.2 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.legal-copy h1 { margin: 0 0 42px; font-family: var(--display); font-size: clamp(42px, 8vw, 86px); font-weight: 400; letter-spacing: .01em; line-height: .96; text-transform: uppercase; }
.legal-copy h2 { margin: 48px 0 16px; color: var(--paper); font-family: var(--display); font-size: 26px; font-weight: 400; letter-spacing: .02em; line-height: 1; text-transform: uppercase; }
.legal-copy h3 { margin: 28px 0 8px; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.legal-copy p { max-width: 720px; margin: 0 0 18px; color: var(--ash); font-size: 18px; line-height: 1.65; }
.legal-copy address { margin: 0 0 18px; color: var(--ash); font-size: 18px; font-style: normal; line-height: 1.65; }
.legal-copy .legal-content { max-width: 720px; }
.legal-copy .legal-content h2:first-child { margin-top: 0; }

/* Responsive — tile-grid column counts are handled by auto-fit above; this
   block tightens spacing and reflows chrome that doesn't fit a phone width. */
@media (max-width: 620px) {
  .wrap { padding: 0 18px; }

  header.masthead { padding-top: env(safe-area-inset-top); }
  .masthead-row {
    min-height: 56px;
    gap: 12px;
    padding: 6px max(18px, env(safe-area-inset-right)) 6px max(18px, env(safe-area-inset-left));
    flex-wrap: nowrap;
  }
  .wordmark img { height: 31px; }
  .masthead-instagram { width: 28px; height: 32px; }
  .masthead-instagram svg { width: 16px; height: 16px; }
  .btn-subscribe { min-height: 44px; padding: 8px 15px; font-size: 11px; }
  nav.masthead-nav { display: none; }
  .language-toggle { margin-left: auto; }
  .masthead-actions--placeholder { display: none; }
  .language-toggle button { min-width: 38px; min-height: 36px; padding: 0 8px; }

  /* Keep compact live context while giving the headline back to the content. */
  .wire-inner { min-height: 40px; gap: 8px; padding: 0; }
  .wire-station { display: none; }
  .on-air-dot { width: 6px; height: 6px; margin-left: 18px; }
  .ticker-toggle { min-width: 40px; min-height: 40px; }
  .wire-track { animation-duration: var(--ticker-duration, 90s); }

  .hero { min-height: 56vh; }
  .hero-content { padding: 32px 12px 40px; }
  .hero-controls { right: 18px; bottom: 18px; }
  .hero-headline {
    font-family: var(--editorial);
    font-size: clamp(34px, 9.4vw, 44px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.025em;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .dek { font-size: 16px; overflow-wrap: break-word; }

  .section-divider { margin: 40px 0 22px; scroll-margin-top: 104px; }
  .tile-grid, .tile-grid.halves { gap: 22px; margin-bottom: 22px; }
  .tile-image-wrap { aspect-ratio: 16 / 10; }

  .subscribe-panel { padding: 48px 18px; margin-top: 44px; }
  .subscribe-form input[type="email"] { min-width: 0; }

  /* Keep the publication credit and utility links as one quiet wire-signoff. */
  .site-footer-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    font-size: 9px;
    letter-spacing: 0.04em;
  }
  .footer-credit { white-space: nowrap; }
  .footer-links { flex: none; gap: 0; margin: 0; }
  .footer-links a { min-height: 36px; padding: 0 4px; }
  .footer-credit { font-size: 8px; letter-spacing: 0; }
  .footer-legal-mobile summary { min-height: 36px; padding: 0 4px; }
  .footer-legal-menu { bottom: 38px; min-width: 116px; }
  .footer-legal-menu a { min-height: 36px; padding: 0 10px; }
  .legal-copy { padding: 52px 0 64px; }
  .legal-copy h1 { margin-bottom: 32px; }
  .legal-copy h2 { margin-top: 38px; font-size: 22px; }
  .legal-copy p, .legal-copy address { font-size: 17px; }
  .submit-band { margin-block: 44px; }
  .submit-band-summary { grid-template-columns: 1fr; gap: 24px; padding: 30px 24px; }
  .submit-band-toggle { justify-self: start; }
  .band-form { width: auto; margin: 0; grid-template-columns: 1fr; border-left: 0; padding: 24px; }
}
