/* ==========================================================================
   RennSport — Components
   SiteHeader · Navigation · Buttons · Cards · TrustRail · Specs · Accordion
   Forms · Footer · Badges
   ========================================================================== */

/* ==========================================================================
   Buttons
   The primary CTA carries one angled corner — the only place the logo's
   diagonal appears as an interactive affordance.
   ========================================================================== */

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--c-white);
  --btn-bd: var(--line-strong);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  min-height: 48px;
  /* Vertical padding + a real line-height so a label that wraps to two lines
     sets as two lines instead of colliding with itself. min-height still
     fixes the single-line case at 48px, so nothing moves in the common case. */
  padding: var(--s-2) var(--s-6);
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  line-height: 1.35;
  text-align: center;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-sm);
  transition:
    background-color var(--t-base) var(--e-out),
    border-color var(--t-base) var(--e-out),
    color var(--t-base) var(--e-out),
    transform var(--t-fast) var(--e-out),
    box-shadow var(--t-base) var(--e-out);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--c-red);
  --btn-fg: var(--c-white);
  --btn-bd: var(--c-red);
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip-corner)), calc(100% - var(--clip-corner)) 100%, 0 100%);
  box-shadow: 0 12px 30px -18px rgba(176, 3, 8, 0.9);
}
.btn--primary:hover {
  --btn-bg: var(--c-red-bright);
  --btn-bd: var(--c-red-bright);
  box-shadow: 0 18px 38px -18px rgba(212, 20, 26, 0.85);
}

.btn--ghost { --btn-bg: transparent; --btn-bd: var(--line-strong); }
.btn--ghost:hover { --btn-bd: var(--c-titanium); background: var(--veil-05); }

/* The rule is a real border rather than an absolutely positioned bar, so a
   label that wraps to two lines is underlined instead of struck through. */
.btn--quiet {
  --btn-bd: transparent;
  padding: var(--s-2) 0;
  min-height: 40px;
  /* Auto-width in a flex row this is a no-op; stretched inside a grid cell it
     keeps the label on the left rail and parks the arrow on the right. */
  justify-content: space-between;
  color: var(--c-white);
  text-align: left;
  border-bottom-color: var(--line-strong);
  border-radius: 0;
}
.btn--quiet .btn__arrow { transition: transform var(--t-base) var(--e-out); }
.btn--quiet:hover {
  transform: none;
  color: var(--c-white);
  border-bottom-color: var(--c-red);
}
.btn--quiet:hover .btn__arrow { transform: translateX(5px); }

.btn--sm { min-height: 40px; padding-inline: var(--s-5); }
.btn--block { width: 100%; }

.btn__arrow { font-size: 1.1em; line-height: 0; transform: translateY(0.5px); }

/* ==========================================================================
   Header + desktop navigation
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--t-base) var(--e-out),
    border-color var(--t-base) var(--e-out),
    backdrop-filter var(--t-base) var(--e-out);
}

.site-header::after {
  /* thin red light streak that only resolves once the header solidifies */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-red) 35%, rgba(176, 3, 8, 0) 75%);
  opacity: 0;
  transition: opacity var(--t-slow) var(--e-out);
}

.site-header.is-stuck {
  background: rgba(11, 2, 2, 0.92);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line-hairline);
}
.site-header.is-stuck::after { opacity: 1; }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  flex: none;
}
/* The mark is the RS monogram — roughly 3.3:1, so its height is what the
   lockup is set from and the width follows. */
.brand__mark {
  width: auto;
  height: 28px;
  transition: transform var(--t-base) var(--e-out);
}
.brand:hover .brand__mark { transform: translateX(2px); }

.brand__word {
  font-family: var(--font-display);
  font-size: clamp(0.8125rem, 0.72rem + 0.35vw, 0.9375rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1;
  white-space: nowrap;
}
.brand__word b { font-weight: 400; color: var(--c-red-bright); }

/* A 92px-wide mark plus a Michroma wordmark plus the menu button is more than
   a 320px screen holds at full size, so the lockup tightens rather than
   pushing the toggle off the container's right rail. */
@media (max-width: 400px) {
  .brand { gap: var(--s-2); }
  .brand__mark { height: 22px; }
  .brand__word { font-size: 0.75rem; letter-spacing: 0.08em; }
}

.nav-desktop { display: none; }

/* 1180px, not 1060px: six Michroma labels plus the wordmark and the CTA need
   that much room. Below it the six items were being squeezed until "How It
   Works" broke onto a second line and the whole bar lost its baseline. */
@media (min-width: 1180px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    /* Capped at 1.5rem: the container stops growing at 1280px, so a gap that
       kept tracking the viewport overflowed the bar again on wide monitors. */
    gap: clamp(1rem, 0.35rem + 0.9vw, 1.5rem);
  }
  .nav-desktop__link {
    position: relative;
    font-family: var(--font-display);
    font-size: var(--fs-eyebrow);
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    color: var(--c-titanium-lift);
    padding: var(--s-2) 0;
    white-space: nowrap;
    transition: color var(--t-fast) linear;
  }
  .nav-desktop__link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--c-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--t-base) var(--e-out);
  }
  .nav-desktop__link:hover { color: var(--c-white); }
  .nav-desktop__link:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav-desktop__link[aria-current="page"] { color: var(--c-white); }
  .nav-desktop__link[aria-current="page"]::after { transform: scaleX(1); }
}

.header-cta { display: none; }
@media (min-width: 1180px) { .header-cta { display: inline-flex; } }

/* --- Mobile toggle -------------------------------------------------------- */

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  /* No negative margin: the button has a visible border, so its own edge is
     what has to sit on the container's right rail. Pulling it out by 10px put
     it past every other element on the page. */
  border: 1px solid var(--line-hairline);
  border-radius: var(--r-sm);
}
@media (min-width: 1180px) { .nav-toggle { display: none; } }

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--c-white);
  transition: transform var(--t-base) var(--e-out), opacity var(--t-fast) linear;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Mobile drawer -------------------------------------------------------- */

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  display: grid;
  grid-template-rows: var(--header-h) 1fr auto;
  background: linear-gradient(175deg, var(--c-oxblood), var(--c-carbon) 55%);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform var(--t-slow) var(--e-inout), visibility 0s linear var(--t-slow);
}
.nav-drawer.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform var(--t-slow) var(--e-inout), visibility 0s linear 0s;
}
@media (min-width: 1180px) { .nav-drawer { display: none; } }

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  border-bottom: 1px solid var(--line-hairline);
}

.nav-drawer__body {
  overflow-y: auto;
  padding: var(--s-7) var(--gutter) var(--s-6);
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
}

.nav-drawer__link {
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line-hairline);
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 0.9rem + 1.4vw, 1.5rem);
  text-transform: uppercase;
  color: var(--c-white);
  min-height: 44px;
}
.nav-drawer__link[aria-current="page"] { color: var(--c-red-text); }
.nav-drawer__index {
  font-size: 0.6rem;
  letter-spacing: var(--tracking-label);
  color: var(--c-titanium-dim);
  flex: none;
}

.nav-drawer__foot {
  padding: var(--s-5) var(--gutter) calc(var(--s-6) + env(safe-area-inset-bottom));
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  border-top: 1px solid var(--line-hairline);
  display: grid;
  gap: var(--s-4);
}

body.is-locked { overflow: hidden; }

/* ==========================================================================
   Panels + cards
   ========================================================================== */

.panel {
  position: relative;
  background: var(--c-graphite);
  border: 1px solid var(--line-hairline);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
}

.panel--clip {
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip-corner)), calc(100% - var(--clip-corner)) 100%, 0 100%);
}

/* Numbered feature card with a red edge that draws in on hover */
.feature-card {
  position: relative;
  display: grid;
  gap: var(--s-4);
  align-content: start;
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
  background: var(--c-graphite);
  border: 1px solid var(--line-hairline);
  border-radius: var(--r-md);
  overflow: hidden;
  transition:
    transform var(--t-base) var(--e-out),
    border-color var(--t-base) var(--e-out),
    background-color var(--t-base) var(--e-out);
}
.feature-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--c-red), rgba(176, 3, 8, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--e-out);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: var(--c-graphite-2);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card__index {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-label);
  color: var(--c-red-text);
}
.feature-card__title { font-family: var(--font-display); font-size: var(--fs-h4); color: var(--c-white); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.35; }
.feature-card__body { font-size: var(--fs-body-sm); color: var(--c-titanium-lift); }

/* --- Icon (thin stroked, drawn in SVG) ------------------------------------ */
.icon {
  width: 22px;
  height: 22px;
  flex: none;
  stroke: var(--c-red-text);
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.icon--titanium { stroke: var(--c-titanium); }

/* ==========================================================================
   Trust rail — thin dividers, never heavy cards
   ========================================================================== */

.trust-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-hairline);
}
.trust-rail__item {
  display: grid;
  gap: var(--s-2);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line-hairline);
}
.trust-rail__head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--c-white);
}
.trust-rail__note { font-size: var(--fs-body-sm); color: var(--c-titanium); line-height: 1.5; }

@media (min-width: 560px) {
  .trust-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--s-6); }
}
@media (min-width: 1000px) {
  .trust-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 0;
    border-bottom: 1px solid var(--line-hairline);
  }
  .trust-rail__item {
    padding: var(--s-5) var(--s-6);
    border-bottom: 0;
    border-left: 1px solid var(--line-hairline);
  }
  .trust-rail__item:first-child { border-left: 0; padding-left: 0; }
  .trust-rail__item:last-child { padding-right: 0; }
}

/* ==========================================================================
   Spec list
   ========================================================================== */

/* Flex, not grid: five specs in a three-track grid left a bordered empty cell
   sitting on the end of the last row. Wrapped flex items grow to fill their
   row instead, so the block is always complete whatever the spec count. */
.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  border: 1px solid var(--line-hairline);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.spec {
  flex: 1 1 calc(50% - 1px);
  /* The rule between cells is drawn by each cell, not by a background showing
     through the gap — an incomplete last row then leaves no orphan block. */
  background: var(--c-carbon);
  box-shadow: 0 0 0 1px var(--line-hairline);
  padding: var(--s-4) var(--s-4) var(--s-5);
  display: grid;
  gap: var(--s-2);
  align-content: start;
}
/* Michroma is wide, so wider viewports let the cells size themselves rather
   than forcing a column count that clips a value like "quattro AWD". */
@media (min-width: 560px) {
  .spec-list--5 .spec,
  .spec-list--4 .spec { flex-basis: 134px; }
}
.spec__value {
  font-family: var(--font-display);
  font-size: clamp(0.8125rem, 0.72rem + 0.42vw, 1.0625rem);
  color: var(--c-white);
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.spec__key {
  font-family: var(--font-display);
  font-size: 0.5625rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--c-titanium);
}

/* ==========================================================================
   Data rows (inclusions, requirements)
   ========================================================================== */

.data-row {
  display: grid;
  gap: var(--s-2);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line-hairline);
}
@media (min-width: 760px) {
  .data-row {
    grid-template-columns: 26px minmax(0, 0.9fr) minmax(0, 1.4fr);
    align-items: baseline;
    column-gap: var(--s-5);
  }
  /* Explicit placement, not auto-flow. Auto-flow dropped the term of any
     icon-less row into the 26px icon column, where a Michroma label has a
     min-content width of one glyph and set itself vertically, one letter
     per line. Most lists on the site have no icons. */
  .data-row__icon { grid-column: 1; grid-row: 1; }
  .data-row__term { grid-column: 2; grid-row: 1; }
  .data-row__desc { grid-column: 3; grid-row: 1; }

  /* An icon-less list reclaims the gutter rather than indenting off nothing. */
  .data-row:not(:has(.data-row__icon)) {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  }
  .data-row:not(:has(.data-row__icon)) .data-row__term { grid-column: 1; }
  .data-row:not(:has(.data-row__icon)) .data-row__desc { grid-column: 2; }
}
.data-row__icon { align-self: start; padding-top: 3px; }
@media (max-width: 759px) { .data-row__icon { display: none; } }
.data-row__term {
  font-family: var(--font-display);
  font-size: var(--fs-label);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1.5;
}
.data-row__desc { font-size: var(--fs-body-sm); color: var(--c-titanium-lift); }

/* ==========================================================================
   Status badge — for values RennSport has not confirmed yet.
   Never relies on colour alone: it always carries text.
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 3px var(--s-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 0.5625rem;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--c-titanium);
  line-height: 1.6;
  white-space: nowrap;
}
.badge--pending { border-style: dashed; }
.badge--accent { color: var(--c-white); border-color: var(--line-red); background: rgba(176, 3, 8, 0.14); }

/* ==========================================================================
   Accordion (FAQ)
   ========================================================================== */

.accordion { border-top: 1px solid var(--line-hairline); }

.accordion__item { border-bottom: 1px solid var(--line-hairline); }

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  width: 100%;
  padding: var(--s-5) 0;
  text-align: left;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-white);
  min-height: 44px;
  transition: color var(--t-fast) linear;
}
.accordion__trigger:hover { color: var(--c-red-text); }

.accordion__sign {
  position: relative;
  flex: none;
  width: 16px; height: 16px;
}
.accordion__sign::before,
.accordion__sign::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: currentColor;
  transition: transform var(--t-base) var(--e-out), opacity var(--t-base) var(--e-out);
}
.accordion__sign::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.accordion__sign::after { width: 1.5px; height: 16px; transform: translate(-50%, -50%); }
.accordion__trigger[aria-expanded="true"] .accordion__sign::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-base) var(--e-inout);
}
.accordion__panel[data-open="true"] { grid-template-rows: 1fr; }
.accordion__panel > div { overflow: hidden; }
.accordion__body {
  padding-bottom: var(--s-5);
  max-width: var(--measure);
  font-size: var(--fs-body-sm);
  color: var(--c-titanium-lift);
  display: grid;
  gap: var(--s-3);
}
html.no-js .accordion__panel { grid-template-rows: 1fr; }

/* ==========================================================================
   Forms
   ========================================================================== */

/* align-content: start, not the default stretch. Side by side, a field with a
   hint under it and a field without were different heights; stretch grew the
   shorter one's label row and pushed its input out of line with its neighbour. */
.field { display: grid; gap: var(--s-2); align-content: start; }

.field__label {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--c-white);
  /* Locked, so the taller inline hint in "Phone (optional)" cannot grow that
     label a pixel past its neighbour's and drop its input out of the row. */
  line-height: 1.6;
}
.field__hint { font-size: 0.8125rem; color: var(--c-titanium); }
/* A hint sitting inside a label must not inherit the label's display casing */
.field__label .field__hint {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  line-height: inherit;
}

.field__control {
  width: 100%;
  min-height: 50px;
  padding: var(--s-3) var(--s-4);
  background: rgba(6, 1, 1, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--c-white);
  font-size: 1rem; /* 16px — prevents iOS zoom on focus */
  transition: border-color var(--t-fast) linear, background-color var(--t-fast) linear;
}
textarea.field__control { min-height: 140px; resize: vertical; line-height: 1.6; }
select.field__control {
  appearance: none;
  cursor: pointer;
  padding-right: var(--s-7);
  /* Custom caret — the native one cannot be styled to match the palette */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%239E9898' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s-4) center;
  background-size: 12px 8px;
}
select.field__control option { background: var(--c-graphite); color: var(--c-white); }

.field__control::placeholder { color: var(--c-titanium-dim); }
.field__control:hover { border-color: var(--c-titanium-dim); }
.field__control:focus {
  outline: 2px solid var(--c-white);
  outline-offset: 2px;
  border-color: var(--c-white);
  background: rgba(6, 1, 1, 0.9);
}
.field__control[aria-invalid="true"] { border-color: var(--c-red-bright); border-width: 2px; }

.field__error {
  display: none;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.8125rem;
  color: #FF8A8E; /* AA on carbon — red alone never carries the message */
}
.field__error::before { content: "!"; font-family: var(--font-display); font-size: 0.6875rem; border: 1px solid currentColor; border-radius: 50%; width: 15px; height: 15px; display: inline-grid; place-items: center; flex: none; }
.field__error.is-visible { display: flex; }

.form-note { font-size: 0.8125rem; color: var(--c-titanium); }

.form-status {
  display: none;
  gap: var(--s-3);
  padding: var(--s-4);
  border: 1px solid var(--line-red);
  border-left-width: 3px;
  border-radius: var(--r-sm);
  background: rgba(176, 3, 8, 0.1);
  font-size: var(--fs-body-sm);
  color: var(--c-white);
}
.form-status.is-visible { display: grid; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--c-ink);
  border-top: 1px solid var(--line-hairline);
  padding-block: clamp(3rem, 2rem + 4vw, 5rem) var(--s-6);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 200px;
  background: radial-gradient(70% 100% at 12% 0%, rgba(116, 1, 5, 0.22), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  gap: var(--s-8);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr)); gap: var(--s-6); } }
@media (min-width: 1060px) { .footer-grid { grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 0.8fr)); } }

.footer-col__title {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--c-titanium);
  margin-bottom: var(--s-4);
}
.footer-list { display: grid; gap: var(--s-3); }
/* Label above value rather than beside it: a "To be confirmed" badge cannot fit
   next to its label in a footer column, and the inline separator that used to
   join them was left dangling at the end of the line when the value wrapped. */
.footer-list li { display: grid; gap: 3px; justify-items: start; }
.footer-list a {
  font-size: var(--fs-body-sm);
  color: var(--c-titanium-lift);
  transition: color var(--t-fast) linear;
  display: inline-block;
}
.footer-list a:hover { color: var(--c-white); }

.footer-bottom {
  position: relative;
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-hairline);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--c-titanium-dim);
}
.footer-bottom a:hover { color: var(--c-white); }

.social-row { display: flex; gap: var(--s-3); }
.social-row a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-hairline);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast) linear, background-color var(--t-fast) linear;
}
.social-row a:hover { border-color: var(--line-strong); background: var(--veil-05); }
.social-row svg { width: 17px; height: 17px; fill: var(--c-titanium-lift); }
.social-row a:hover svg { fill: var(--c-white); }
