/* ============================================================
   main.css — one stylesheet, both brands. Every colour here comes
   from tokens.css; there are no colour literals in this file.

   Written mobile-first: the base rules are the 360 px layout and
   the media queries only ever add. Breakpoints: 768 (tablet),
   1100 (desktop).
   ============================================================ */

/* ---------- Font ---------------------------------------------------- */

/* Self-hosted; Google's css2 endpoint serves one variable file for the
   whole 600–700 range, so this is a single 35 KB request and no CDN. */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/fonts/montserrat-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Reset --------------------------------------------------- */

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

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

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  overflow-wrap: break-word;
}

img,
picture,
svg { max-width: 100%; }

img { height: auto; }

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }

ul { padding: 0; list-style: none; }

a { color: inherit; }

/* ---------- Type ---------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }

h3 {
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.lede { color: var(--muted); }

.small { font-size: var(--text-small); }

/* ---------- Utilities ----------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--s3);
  top: var(--s3);
  z-index: 10;
  transform: translateY(-200%);
  padding: var(--s3) var(--s4);
  background: var(--surface);
  color: var(--ink);
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ---------- Buttons ------------------------------------------------- */

.btn,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  min-height: var(--tap);
  padding: var(--s3) var(--s5);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn {
  background: var(--btn-bg);
  color: var(--btn-ink);
}

.btn:hover { background: var(--gold-deep); }

.btn-ghost {
  background: transparent;
  border-color: var(--btn-bg);
  color: var(--accent-strong);
}

.btn-ghost:hover { background: var(--overlay); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}

/* Inline "Details →" style link */
.link-arrow {
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--accent-strong);
  text-decoration: none;
}

.link-arrow:hover { text-decoration: underline; }

/* ---------- Header / nav -------------------------------------------- */

/* The toggle is an empty <details>; the menu is its next sibling. That keeps
   a real disclosure button (the UA manages summary's expanded state) while
   the panel's visibility comes from a plain sibling selector — so the menu
   opens and closes with JavaScript switched off, and the desktop layout
   never depends on how a browser hides <details> content internally.
   site.js only adds close-on-navigate and Escape. */

.site-header {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--ground);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: var(--s4);
  min-height: 64px;
  padding-block: var(--s3);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  text-decoration: none;
}

.brand-link img,
.brand-link svg { display: block; }

[data-brand="hd"] .brand-link img { height: 40px; width: auto; }

[data-brand="gc"] .brand-link img { height: var(--tap); width: var(--tap); }

.nav-disclosure { margin-left: auto; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--tap);
  height: var(--tap);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

/* Safari still needs the pseudo-element form to lose the disclosure marker */
.nav-toggle::-webkit-details-marker { display: none; }

.nav-disclosure:not([open]) .nav-toggle .close { display: none; }

.nav-disclosure[open] .nav-toggle .bars { display: none; }

.nav-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 5;
  padding: var(--s2) var(--gutter) var(--s4);
  background: var(--ground);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-disclosure[open] ~ .nav-panel { display: block; }

.nav-panel ul {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.nav-link {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  padding: var(--s2) var(--s1);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav-link:hover { color: var(--accent-strong); }

.nav-link[aria-current="page"] {
  color: var(--accent-strong);
  border-bottom-color: var(--gold-bright);
}

@media (min-width: 768px) {
  .nav-disclosure { display: none; }

  /* Past the breakpoint the menu is simply part of the header row. */
  .nav-panel,
  .nav-disclosure[open] ~ .nav-panel {
    display: block;
    position: static;
    margin-left: auto;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }

  .nav-panel ul {
    flex-direction: row;
    align-items: center;
    gap: var(--s5);
  }

  .nav-link {
    min-height: 0;
    padding: var(--s1) 0;
    font-size: var(--text-small);
    color: var(--muted);
  }

  .nav-link:hover,
  .nav-link[aria-current="page"] { color: var(--accent-strong); }
}

/* ---------- Sections ------------------------------------------------ */

.section {
  padding-block: var(--s7);
}

@media (min-width: 768px) {
  .section { padding-block: var(--s8); }
}

/* For a run of sections that should read as one continuous block —
   each one only adds bottom spacing, so they don't double up. */
.section-tight {
  padding-block: 0 var(--s7);
}

@media (min-width: 768px) {
  .section-tight { padding-block: 0 var(--s8); }
}

/* ---------- Hero: hd split ------------------------------------------ */

.hero-split .wrap {
  display: grid;
  gap: var(--s5);
  padding-block: var(--s6) var(--s5);
}

.hero-copy > * + * { margin-top: var(--s4); }

.hero-copy .lede { max-width: 46ch; }

.hero-media {
  order: 2;
  display: flex;
  justify-content: center;
}

.hero-media img {
  width: auto;
  max-height: 260px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero-split .wrap {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: var(--s6);
    padding-block: var(--s7) var(--s6);
  }

  .hero-media img { max-height: 380px; }
}

/* ---------- Hero: gc centred ---------------------------------------- */

.hero-center {
  text-align: center;
  padding-block: var(--s7) var(--s5);
}

/* On gotclocks the hero headline is the brand mark, in gold (mockup 2). */
[data-brand="gc"] .hero-center h1 { color: var(--accent); }

.hero-center .lede {
  max-width: 52ch;
  margin: var(--s4) auto var(--s5);
}

.hero-center .cta-row { justify-content: center; }

@media (min-width: 1100px) {
  /* The approved gotclocks mockup gives the two-word hero more presence
     than the shared h1 step; only at desktop, where there is room for it. */
  .hero-center h1 { font-size: 54px; }
}

/* ---------- Trust strip --------------------------------------------- */

.trust-strip {
  background: var(--band);
  border-block: 1px solid var(--line);
}

.trust-strip ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3) var(--s4);
  padding-block: var(--s4);
}

.trust-strip li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: var(--text-small);
  font-weight: 600;
  line-height: 1.35;
  color: var(--muted);
}

.trust-strip svg {
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  color: var(--accent-strong);
}

@media (min-width: 768px) {
  .trust-strip ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s4) var(--s7);
    padding-block: var(--s4);
  }

  .trust-strip li { align-items: center; }

  .trust-strip svg { margin-top: 0; }
}

/* ---------- Product cards ------------------------------------------- */

.card-grid {
  display: grid;
  gap: var(--s4);
}

@media (min-width: 768px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  padding: var(--s5) var(--s4);
  background: var(--media-bg);
  border: 1px solid var(--media-line);
  border-radius: var(--radius);
  text-align: center;
  /* The card is a fixed light matte on both brands (see --media-bg in
     tokens.css) so its own text needs fixed dark-on-light ink too. */
  color: var(--media-ink);
}

.card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  margin-bottom: var(--s2);
}

.card-media img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
}

.card p {
  margin: 0;
  font-size: var(--text-small);
  color: var(--media-muted);
}

.card .link-arrow { margin-top: auto; padding-top: var(--s2); color: var(--media-accent); }

/* A whole card is clickable, but only the link is in the tab order. */
.card-link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.card { position: relative; }

/* ---------- Venue photo band ---------------------------------------- */

.photo-band {
  padding-block: var(--s2) var(--s5);
}

.photo-band img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ---------- Cross-brand strip (dark, on either ground) --------------- */

.cross-strip {
  background: var(--strip-ground);
  color: var(--strip-ink);
}

.cross-strip .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  padding-block: var(--s5);
  text-align: center;
}

.cross-strip img {
  width: 72px;
  height: 72px;
}

.cross-strip a {
  color: var(--strip-accent);
  font-weight: 700;
  text-decoration: none;
}

.cross-strip a:hover { text-decoration: underline; }

@media (min-width: 768px) {
  .cross-strip .wrap {
    flex-direction: row;
    justify-content: center;
    gap: var(--s5);
    text-align: left;
  }
}

/* ---------- Secondary CTA band -------------------------------------- */

.cta-band {
  background: var(--band);
  border-block: 1px solid var(--line);
}

.cta-band .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  padding-block: var(--s5);
  text-align: center;
}

@media (min-width: 768px) {
  .cta-band .wrap {
    flex-direction: row;
    justify-content: center;
    gap: var(--s4);
  }
}

/* ---------- Product detail: positioning + intro --------------------- */

.product-intro {
  padding-block: var(--s6) var(--s5);
}

.product-intro > * + * { margin-top: var(--s3); }

.product-intro .lede { max-width: 60ch; }

.prose { max-width: 65ch; }

.prose > * + * { margin-top: var(--s4); }

/* ---------- Product gallery (CSS-only — no JS required) ------------- */

/* Radios choose which slide is current. They're siblings of both
   .gallery-main and .gallery-thumbs, so a plain sibling combinator can
   drive both from CSS alone — no :has(), no JS, nothing to degrade. */
.gallery {
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: auto;
}

.gallery-select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.gallery-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: var(--s4);
  background: var(--media-bg);
  border: 1px solid var(--media-line);
  border-radius: var(--radius);
}

/* Each slide is a <picture>, so it's the picture — not the img inside it —
   that sits at a countable position among .gallery-main's own children.
   (An img nested inside its own <picture> is always that picture's only
   img, so img:nth-of-type would always match 1 — this counts the wrapper
   instead.) */
.gallery-main picture {
  display: none;
}

.gallery-main img {
  max-height: 340px;
  width: auto;
  object-fit: contain;
}

.gallery-select:nth-of-type(1):checked ~ .gallery-main picture:nth-of-type(1),
.gallery-select:nth-of-type(2):checked ~ .gallery-main picture:nth-of-type(2),
.gallery-select:nth-of-type(3):checked ~ .gallery-main picture:nth-of-type(3),
.gallery-select:nth-of-type(4):checked ~ .gallery-main picture:nth-of-type(4),
.gallery-select:nth-of-type(5):checked ~ .gallery-main picture:nth-of-type(5),
.gallery-select:nth-of-type(6):checked ~ .gallery-main picture:nth-of-type(6) {
  display: block;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s3);
}

.gallery-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--tap);
  height: var(--tap);
  padding: var(--s1);
  background: var(--media-bg);
  border: 2px solid var(--media-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-select:nth-of-type(1):checked ~ .gallery-thumbs .gallery-thumb:nth-of-type(1),
.gallery-select:nth-of-type(2):checked ~ .gallery-thumbs .gallery-thumb:nth-of-type(2),
.gallery-select:nth-of-type(3):checked ~ .gallery-thumbs .gallery-thumb:nth-of-type(3),
.gallery-select:nth-of-type(4):checked ~ .gallery-thumbs .gallery-thumb:nth-of-type(4),
.gallery-select:nth-of-type(5):checked ~ .gallery-thumbs .gallery-thumb:nth-of-type(5),
.gallery-select:nth-of-type(6):checked ~ .gallery-thumbs .gallery-thumb:nth-of-type(6) {
  border-color: var(--media-accent);
}

.gallery-select:nth-of-type(1):focus-visible ~ .gallery-thumbs .gallery-thumb:nth-of-type(1),
.gallery-select:nth-of-type(2):focus-visible ~ .gallery-thumbs .gallery-thumb:nth-of-type(2),
.gallery-select:nth-of-type(3):focus-visible ~ .gallery-thumbs .gallery-thumb:nth-of-type(3),
.gallery-select:nth-of-type(4):focus-visible ~ .gallery-thumbs .gallery-thumb:nth-of-type(4),
.gallery-select:nth-of-type(5):focus-visible ~ .gallery-thumbs .gallery-thumb:nth-of-type(5),
.gallery-select:nth-of-type(6):focus-visible ~ .gallery-thumbs .gallery-thumb:nth-of-type(6) {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .gallery-main { min-height: 340px; }
  .gallery-main img { max-height: 420px; }
  .gallery-thumb { width: 64px; height: 64px; }
}

/* ---------- Kit contents list ---------------------------------------- */

.kit-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  padding-block: var(--s2);
  border-bottom: 1px solid var(--line);
}

.kit-list li:last-child { border-bottom: 0; }

.kit-list svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--accent-strong);
}

/* ---------- Feature grid ---------------------------------------------- */

.feature-grid {
  display: grid;
  gap: var(--s4);
}

@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

.feature {
  padding: var(--s4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature h3 { margin-bottom: var(--s2); }

.feature p { color: var(--muted); font-size: var(--text-small); }

/* ---------- Spec table -------------------------------------------------
   A definition list styled as a two-column table past 480 px, and as
   stacked rows before it — same markup either way, no duplication. */

.spec-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-table div {
  display: grid;
  gap: var(--s1);
  padding: var(--s3) var(--s4);
}

.spec-table div:nth-child(even) { background: var(--band); }

.spec-table dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--muted);
}

.spec-table dd { margin: 0; }

@media (min-width: 480px) {
  .spec-table div {
    grid-template-columns: 1fr 1.4fr;
    align-items: baseline;
    gap: var(--s4);
  }
}

/* ---------- Comparison table (compare page) ---------------------------
   Mobile-first: base styles restructure the real <table> markup into
   stacked criterion cards via `display` — no duplicate content. At 768px
   it becomes a standard two-column comparison table. */

.comparison-table { width: 100%; border-collapse: collapse; }

.comparison-table,
.comparison-table thead,
.comparison-table tbody,
.comparison-table tr,
.comparison-table th,
.comparison-table td {
  display: block;
  width: 100%;
}

.comparison-table thead { display: none; }

.comparison-table tbody tr {
  padding: var(--s4);
  margin-bottom: var(--s4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison-table tbody tr:last-child { margin-bottom: 0; }

.comparison-table th,
.comparison-table td { padding: 0; text-align: left; }

.comparison-table tbody th {
  margin-bottom: var(--s3);
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 600;
}

.comparison-table td + td {
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}

.comparison-table .col-us,
.comparison-table .col-them { font-size: var(--text-small); }

.comparison-table .col-us::before,
.comparison-table .col-them::before {
  display: block;
  margin-bottom: var(--s1);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table .col-us::before { content: "Got Clocks"; color: var(--accent-strong); }
.comparison-table .col-them::before { content: "The other guys"; color: var(--muted); }

.comparison-table .col-us svg {
  flex: none;
  width: 14px;
  height: 14px;
  margin-right: var(--s2);
  color: var(--accent-strong);
  vertical-align: -1px;
}

.comparison-table .col-them { color: var(--muted); }

@media (min-width: 768px) {
  .comparison-table {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td { width: auto; }

  .comparison-table thead { display: table-header-group; }
  .comparison-table tbody { display: table-row-group; }
  .comparison-table tr { display: table-row; }
  .comparison-table th,
  .comparison-table td { display: table-cell; }

  .comparison-table th,
  .comparison-table td {
    padding: var(--s4);
    vertical-align: top;
  }

  .comparison-table thead th {
    font-family: var(--font-display);
    font-size: var(--text-small);
    font-weight: 600;
    color: var(--muted);
    background: var(--band);
    border-bottom: 1px solid var(--line);
  }

  .comparison-table tbody th {
    margin-bottom: 0;
    font-size: var(--text-body);
    font-weight: 600;
  }

  .comparison-table tbody tr {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .comparison-table tbody tr:last-child { border-bottom: 0; }
  .comparison-table tbody tr:nth-child(even) { background: var(--band); }

  .comparison-table td + td {
    margin-top: 0;
    padding-top: var(--s4);
    border-top: 0;
  }

  .comparison-table .col-us::before,
  .comparison-table .col-them::before { content: none; margin: 0; }
}

/* ---------- Price / quote slot ---------------------------------------- */

.price-slot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s3);
  padding: var(--s5);
  background: var(--band);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-slot .small { color: var(--muted); }

/* ---------- Forms ------------------------------------------------------ */

.form {
  display: grid;
  gap: var(--s4);
  max-width: 480px;
}

.field {
  display: grid;
  gap: var(--s2);
}

.field label {
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: 600;
}

.field .hint { font-size: var(--text-small); color: var(--muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: var(--tap);
  padding: var(--s3);
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px; /* keeps iOS from zooming on focus */
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 1px;
}

/* Honeypot: present in the DOM and tab-order-free, but never visible. */
.field-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-notice {
  padding: var(--s3) var(--s4);
  background: var(--band);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: var(--text-small);
  max-width: 480px;
}

.form-notice.is-error {
  color: var(--error);
  border-color: var(--error);
}

/* ---------- Footer -------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ground);
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  padding-block: var(--s6);
  font-size: var(--text-small);
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s5);
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.site-footer p a { color: var(--accent-strong); }

.footer-nav a:hover,
.site-footer p a:hover { color: var(--accent-strong); }

.footer-cross {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

/* The logo is a link, so its box — not the artwork — sets the tap target. */
.footer-cross a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
}

.footer-cross img { width: 40px; height: 40px; }

[data-brand="gc"] .footer-cross img { width: auto; height: 30px; }

.footer-legal {
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
  .footer-nav a { min-height: 0; }
}

/* ---------- Motion --------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
