/* ==========================================================================
   Fearless — storefront
   Monochrome. With colour gone, hierarchy comes from contrast steps, spacing
   and the type's width axis. Dark mode is charcoal, never pure black, so the
   product mockups (mostly shot on white) do not punch holes in the page.
   ========================================================================== */

/* --- theme ---------------------------------------------------------------- */

:root {
  color-scheme: light;

  --bg: #ffffff;
  --bg-sunken: #f4f4f5;      /* image wells, quiet panels */
  --bg-raised: #ffffff;
  --band: #111114;           /* inverted sections */
  --band-text: #f3f3f4;
  --band-text-2: #9d9da6;

  --text: #101013;
  --text-2: #5b5b64;
  --text-3: #8a8a93;

  --line: #e5e5e8;
  --line-2: #c8c8cf;
  --line-strong: #101013;

  --img-well: #efeff1;
  --logo-filter: none;
  --shadow: 0 1px 2px rgba(16, 16, 19, 0.06);
}

/* System preference, unless the reader has explicitly chosen light. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;

    --bg: #17181c;
    --bg-sunken: #1d1e23;
    --bg-raised: #212229;
    --band: #101115;
    --band-text: #f3f3f4;
    --band-text-2: #8d8d97;

    --text: #f2f2f4;
    --text-2: #a2a2ac;
    --text-3: #74747e;

    --line: #2b2c33;
    --line-2: #3b3c45;
    --line-strong: #f2f2f4;

    --img-well: #23242a;
    --logo-filter: invert(1);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  }
}

/* Explicit choice always wins, in both directions. */
:root[data-theme="dark"] {
  color-scheme: dark;

  --bg: #17181c;
  --bg-sunken: #1d1e23;
  --bg-raised: #212229;
  --band: #101115;
  --band-text: #f3f3f4;
  --band-text-2: #8d8d97;

  --text: #f2f2f4;
  --text-2: #a2a2ac;
  --text-3: #74747e;

  --line: #2b2c33;
  --line-2: #3b3c45;
  --line-strong: #f2f2f4;

  --img-well: #23242a;
  --logo-filter: invert(1);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

:root {
  --shell: 1400px;
  --pad: clamp(1.15rem, 4vw, 3.25rem);
  --gap: clamp(1.25rem, 2.4vw, 2.25rem);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font: Archivo, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* --- reset ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

/* height:auto matters: images carry width/height attributes for layout
   stability, and a CSS width alone leaves the attribute height in place. */
img { max-width: 100%; height: auto; display: block; }

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

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--line-strong);
  outline-offset: 3px;
  border-radius: 1px;
}

::selection { background: var(--text); color: var(--bg); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text);
  color: var(--bg);
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip:focus { left: 0; }

.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --- type ----------------------------------------------------------------- */

h1, h2, h3 {
  margin: 0;
  font-weight: 800;
  font-stretch: 88%;          /* the width axis does the work colour used to */
  letter-spacing: -0.028em;
  line-height: 1.02;
  text-wrap: balance;
}

.h-display {
  font-size: clamp(2.75rem, 9vw, 7rem);
  text-transform: uppercase;
}

.h-section { font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
.h-product { font-size: clamp(1.4rem, 2.4vw, 2rem); font-stretch: 94%; }

.lede {
  max-width: 46ch;
  color: var(--text-2);
  margin: 0.85rem 0 0;
}

.meta {
  font-size: 0.8125rem;
  color: var(--text-2);
}

/* --- header --------------------------------------------------------------- */

.announce {
  background: var(--band);
  color: var(--band-text);
  text-align: center;
  font-size: 0.78125rem;
  letter-spacing: 0.01em;
  padding: 0.55rem 1rem;
}
.announce:empty { display: none; }

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
@supports not (backdrop-filter: blur(1px)) {
  .masthead { background: var(--bg); }
}
.masthead[data-stuck="true"] { border-bottom-color: var(--line); }

.masthead-inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  height: 4rem;
}

.wordmark { display: block; flex: none; }
.wordmark img {
  height: 1.375rem;
  width: auto;
  filter: var(--logo-filter);
}

.nav {
  display: flex;
  gap: clamp(0.9rem, 1.8vw, 1.6rem);
  margin-inline-start: auto;
  align-items: center;
  font-size: 0.9375rem;
}

.nav a {
  padding-block: 0.3rem;
  border-bottom: 1.5px solid transparent;
  color: var(--text-2);
  transition: color 0.15s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--text);
}

@media (max-width: 47.99rem) {
  .nav .nav-more { display: none; }
  .masthead-inner { gap: 0.9rem; height: 3.5rem; }
  .wordmark img { height: 1.125rem; }
}

.cart-button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.3rem 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.9375rem;
}

.cart-count {
  min-width: 1.3rem;
  height: 1.3rem;
  padding-inline: 0.35rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  line-height: 1;
}
.cart-count[data-empty="true"] {
  background: transparent;
  color: var(--text-3);
  box-shadow: inset 0 0 0 1px var(--line-2);
}

/* theme switch */
.theme-toggle {
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  color: var(--text-2);
  flex: none;
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.theme-toggle:hover { color: var(--text); border-color: var(--line-2); }
.theme-toggle svg { width: 1rem; height: 1rem; display: block; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: none; }
}

/* --- hero ----------------------------------------------------------------- */

.hero {
  padding-block: clamp(3rem, 11vh, 7rem) clamp(2.5rem, 7vh, 4.5rem);
  border-bottom: 1px solid var(--line);
}

.hero-mark {
  width: clamp(10rem, 24vw, 17rem);
  margin-bottom: clamp(2rem, 6vh, 3.5rem);
}
.hero-mark img { width: 100%; filter: var(--logo-filter); }

.hero-line {
  font-size: clamp(2.25rem, 7.5vw, 5.5rem);
  font-weight: 800;
  font-stretch: 86%;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
  margin: 0;
  max-width: 16ch;
  text-wrap: balance;
}

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(1.75rem, 5vh, 2.75rem);
}

.hero-sub {
  color: var(--text-2);
  max-width: 34ch;
  margin: 0;
}

.hero-link {
  border-bottom: 1.5px solid var(--text);
  padding-bottom: 0.15rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero-link:hover { color: var(--text-2); border-bottom-color: var(--text-2); }

/* the one moving thing on the page */
.ticker {
  background: var(--band);
  color: var(--band-text);
  overflow: hidden;
  padding-block: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  font-stretch: 92%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding-inline-start: 2.5rem;
  animation: slide 42s linear infinite;
}
.ticker span { flex: none; white-space: nowrap; }
.ticker span:nth-child(even) { color: var(--band-text-2); }

@keyframes slide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* --- sections ------------------------------------------------------------- */

.band { padding-block: clamp(2.75rem, 7vh, 5rem); }
.band-tight { padding-block: clamp(2rem, 5vh, 3.25rem); }

.band-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 3.5vh, 2.25rem);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.9375rem;
}
.filters button {
  background: none;
  border: 0;
  border-bottom: 1.5px solid transparent;
  padding: 0.2rem 0;
  cursor: pointer;
  color: var(--text-3);
}
.filters button:hover { color: var(--text); }
.filters button[aria-pressed="true"] {
  color: var(--text);
  border-bottom-color: var(--text);
  font-weight: 600;
}

/* --- product grid --------------------------------------------------------- */

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap) clamp(0.9rem, 1.8vw, 1.5rem);
}
@media (min-width: 48rem) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 75rem) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.card { display: block; }

.card-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--img-well);
  overflow: hidden;
}
.card-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card-frame img.alt { opacity: 0; transition: opacity 0.3s var(--ease); }

@media (hover: hover) {
  .card:hover .card-frame img.alt { opacity: 1; }
  .card:hover .card-frame img { transform: scale(1.025); }
}

.card-sold {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--text);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
}

.card-body {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.7rem;
  font-size: 0.9375rem;
}
.card-name { font-weight: 600; line-height: 1.3; }
.card-price { flex: none; color: var(--text-2); }

.swatches { display: flex; gap: 0.3rem; margin-top: 0.45rem; }
.swatch {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line-2);
}

.empty {
  padding: clamp(2.5rem, 9vh, 5rem) 0;
  text-align: center;
  color: var(--text-2);
}
.empty strong { display: block; color: var(--text); font-size: 1.125rem; margin-bottom: 0.4rem; }

.skeleton .card-frame { background: var(--img-well); }
.skeleton .card-body span {
  display: block;
  height: 0.7rem;
  background: var(--img-well);
  width: 60%;
}

/* --- product page --------------------------------------------------------- */

.product {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(1.25rem, 3vh, 2.25rem) clamp(3rem, 8vh, 5rem);
}
@media (min-width: 60rem) {
  .product { grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr); }
}

.gallery { display: grid; gap: 0.6rem; }
@media (min-width: 40rem) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 60rem) { .gallery { grid-template-columns: 1fr; } }

.gallery figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  background: var(--img-well);
  overflow: hidden;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; }

.buybox { position: sticky; top: 5.5rem; align-self: start; }

.price {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.6rem 0 0;
}

.option-set { margin-top: 1.85rem; }

.option-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.8125rem;
  margin-bottom: 0.55rem;
}
.option-head b { font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
.option-head span, .option-head a { color: var(--text-2); }

.colors { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.color {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line-2);
  border: 0;
  cursor: pointer;
  padding: 0;
}
.color[aria-pressed="true"] {
  box-shadow: inset 0 0 0 1px var(--line-2), 0 0 0 2px var(--bg), 0 0 0 3.5px var(--text);
}

.sizes { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.size {
  min-width: 3.1rem;
  padding: 0.55rem 0.5rem;
  border: 1px solid var(--line-2);
  background: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.12s var(--ease), color 0.12s var(--ease);
}
.size:hover:not([disabled]) { border-color: var(--text); }
.size[aria-pressed="true"] { background: var(--text); color: var(--bg); border-color: var(--text); }
.size[disabled] {
  color: var(--text-3);
  border-color: var(--line);
  cursor: not-allowed;
  text-decoration: line-through;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
  padding: 0.9rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.15s var(--ease);
}
.btn:hover { opacity: 0.82; }
.btn[disabled] {
  background: var(--bg-sunken);
  border-color: var(--line);
  color: var(--text-3);
  cursor: not-allowed;
  opacity: 1;
}

.btn-wide { width: 100%; margin-top: 1.4rem; }

.btn-quiet {
  background: none;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-quiet:hover { background: var(--text); color: var(--bg); border-color: var(--text); opacity: 1; }

.details { margin-top: 1.85rem; border-top: 1px solid var(--line); }
.details details { border-bottom: 1px solid var(--line); }
.details summary {
  cursor: pointer;
  padding: 0.85rem 0;
  font-weight: 600;
  font-size: 0.9375rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.details summary::-webkit-details-marker { display: none; }
.details summary::after { content: "+"; color: var(--text-3); }
.details details[open] summary::after { content: "\2013"; }
.details .body {
  padding-bottom: 1.05rem;
  font-size: 0.9375rem;
  color: var(--text-2);
  max-width: 62ch;
}
.details .body p { margin: 0 0 0.7rem; }
.details .body p:last-child { margin-bottom: 0; }

/* --- cart drawer ---------------------------------------------------------- */

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
  z-index: 50;
}
.scrim[data-open="true"] { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(26rem, 100%);
  background: var(--bg);
  z-index: 51;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  border-inline-start: 1px solid var(--line);
}
.drawer[data-open="true"] { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem var(--pad);
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 { font-size: 1.0625rem; font-stretch: 94%; }

.icon-button {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem;
  color: var(--text-2);
}
.icon-button:hover { color: var(--text); }

.drawer-body { flex: 1; overflow-y: auto; padding: 0 var(--pad); }

.line {
  display: grid;
  grid-template-columns: 4.25rem 1fr auto;
  gap: 0.9rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.line img {
  width: 4.25rem;
  height: 5.3rem;
  object-fit: cover;
  background: var(--img-well);
}
.line-name { font-weight: 600; font-size: 0.9375rem; line-height: 1.3; }
.line-meta { font-size: 0.8125rem; color: var(--text-2); margin-top: 0.15rem; }

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-2);
  margin-top: 0.55rem;
}
.qty button {
  background: none;
  border: 0;
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
  line-height: 1;
  color: var(--text-2);
}
.qty button:hover { color: var(--text); }
.qty output { min-width: 1.6rem; text-align: center; font-size: 0.875rem; }

.line-remove {
  background: none;
  border: 0;
  padding: 0;
  color: var(--text-3);
  font-size: 0.8125rem;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 0.55rem;
}
.line-remove:hover { color: var(--text); }

.drawer-foot {
  border-top: 1px solid var(--line);
  padding: 1.15rem var(--pad) calc(1.15rem + env(safe-area-inset-bottom));
}
.total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.drawer-foot .meta { margin-bottom: 0.9rem; }

/* --- forms / checkout ----------------------------------------------------- */

.checkout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-block: clamp(1.75rem, 4vh, 2.5rem) clamp(3rem, 8vh, 5rem);
}
@media (min-width: 56rem) {
  .checkout { grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr); }
}

.field { margin-bottom: 0.9rem; }
.field label {
  display: block;
  font-size: 0.78125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 0.3rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-2);
  background: var(--bg-raised);
  color: var(--text);
  border-radius: 2px;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--text); }

.field-row {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
}

.summary {
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  padding: clamp(1.15rem, 3vw, 1.6rem);
  align-self: start;
  position: sticky;
  top: 5.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.9375rem;
}
.summary-total {
  border-top: 1px solid var(--line);
  margin-top: 0.55rem;
  padding-top: 0.75rem;
  font-weight: 700;
  font-size: 1.0625rem;
}

.notice {
  border-inline-start: 2px solid var(--text);
  padding: 0.7rem 0 0.7rem 0.9rem;
  font-size: 0.875rem;
  margin: 1.4rem 0;
  color: var(--text-2);
}
.notice strong { color: var(--text); }

.alert {
  border: 1px solid var(--text);
  background: var(--bg-sunken);
  padding: 0.8rem 0.95rem;
  font-size: 0.9375rem;
  margin-bottom: 1.15rem;
}
.alert[hidden] { display: none; }

/* --- editorial pair ------------------------------------------------------- */

.pair { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 52rem) { .pair { grid-template-columns: 1fr 1fr; } }

.pair-text p { max-width: 42ch; color: var(--text-2); }

.rule-list { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.rule-list li {
  border-top: 1px solid var(--line);
  padding: 0.8rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.9375rem;
}
.rule-list li span { color: var(--text-2); text-align: right; }

/* --- signup --------------------------------------------------------------- */

.signup {
  background: var(--band);
  color: var(--band-text);
  padding-block: clamp(2.75rem, 7vh, 4.5rem);
}
.signup h2 { max-width: 18ch; }
.signup p { color: var(--band-text-2); max-width: 40ch; }

.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
  max-width: 28rem;
}
.signup-form input {
  flex: 1 1 12rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(243, 243, 244, 0.28);
  background: transparent;
  color: var(--band-text);
  border-radius: 2px;
}
.signup-form input::placeholder { color: rgba(243, 243, 244, 0.42); }
.signup-form input:focus { border-color: var(--band-text); outline-color: var(--band-text); }
.signup-form button {
  background: var(--band-text);
  color: var(--band);
  border: 1px solid var(--band-text);
  padding: 0.8rem 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
}
.signup-form button:hover { opacity: 0.85; }
.signup-note { font-size: 0.8125rem; margin-top: 0.7rem; min-height: 1.2rem; color: var(--band-text-2); }

/* --- footer --------------------------------------------------------------- */

.footer {
  background: var(--band);
  color: var(--band-text-2);
  padding-block: clamp(2.25rem, 6vh, 3.5rem) 1.85rem;
  font-size: 0.875rem;
}
.footer a { color: var(--band-text); }
.footer a:hover { text-decoration: underline; }

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}
.footer h3 {
  color: var(--band-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  font-stretch: 100%;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.35rem; }

.footer-mark img { height: 1.5rem; filter: invert(1); opacity: 0.92; }

.footer-base {
  margin-top: clamp(1.85rem, 4.5vh, 2.75rem);
  padding-top: 1.15rem;
  border-top: 1px solid rgba(243, 243, 244, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8125rem;
}

/* --- prose ---------------------------------------------------------------- */

.prose { max-width: 68ch; }
.prose h2 { font-size: 1.3rem; margin-top: 2.25rem; font-stretch: 94%; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--text-2); }
.prose a { text-decoration: underline; }
