/* ==========================================================================
   COURT VISION TECH — Landing page
   90s basketball idiom: cream paper, hot orange, electric purple, teal.
   Type: Anton (display), Space Grotesk (body), Bowlby (sticker accents).
   ========================================================================== */

:root {
  --paper:        #ECE7DC;
  --paper-2:      #DDD6C5;
  --ink:          #0B0B10;
  --ink-soft:     #1F2028;
  --ink-mute:     #6B6975;

  /* Gunmetal scale — solid, like the logo's metallic lettering */
  --gunmetal:     #2C313F;
  --gunmetal-2:   #3D4354;
  --gunmetal-3:   #5A6072;
  --silver:       #C7CAD3;

  /* Deep iridescent purple — the Barkley Posite signature */
  --iri:          #6B4FD1;
  --iri-deep:     #3D2A66;

  /* Aqua — the tiny pop, like the inner tab on the shoe */
  --aqua:         #34D6B0;

  --orange:       #FF6A2C;   /* kept for emergency use only */
  --cream:        #FAF4E4;

  --f-display: 'Anton', 'Arial Narrow', sans-serif;
  --f-body:    'Space Grotesk', system-ui, sans-serif;
  --f-sticker: 'Bowlby One', 'Arial Black', sans-serif;

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--paper); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Subtle paper grain via tiny dot field */
  background-image:
    radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  background-position: 0 0;
  overflow-x: clip;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--iri); color: var(--cream); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   Reusable bits
   ============================================================ */

.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gunmetal-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(52, 214, 176, 0.18);
}
.eyebrow-light { color: var(--silver); }

.kicker {
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.kicker-light { color: var(--cream); }

.sect-head { max-width: 800px; margin-bottom: clamp(40px, 5vw, 64px); }
.sect-h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.sect-h2 em { font-style: italic; font-weight: 400; color: var(--iri); }
.sect-h2-light { color: var(--cream); }
.sect-h2-light em { color: var(--iri); }
.sect-h2-light .orange { color: var(--aqua); }
.sect-lede {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px 26px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gunmetal {
  background: var(--gunmetal);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink);
}
.btn-gunmetal:hover {
  background: var(--gunmetal-2);
  box-shadow: 6px 6px 0 0 var(--ink);
}

.btn-orange   { background: var(--orange); color: var(--cream); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange); border-color: var(--orange); }

.btn-black    { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-black:hover { background: #000; }

.btn-ghost    { background: transparent; color: var(--cream); border-color: rgba(250, 244, 228, 0.4); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(250, 244, 228, 0.08); }

/* ============================================================
   FLOATING BRAND (top-left)
   ============================================================ */
.float-brand {
  position: fixed;
  top: 20px; left: 20px;
  z-index: 60;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream);
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: 50%;
  width: 72px; height: 72px;
  box-shadow: 4px 4px 0 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease;
}
.float-brand:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--iri);
}
.float-brand img {
  width: 64%; height: 64%;
  object-fit: contain;
}
@media (max-width: 560px) {
  .float-brand { display: none; }
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-cta {
  position: fixed;
  top: 20px; right: 20px;
  z-index: 60;
  display: inline-flex; align-items: center; gap: 12px;
  height: 72px;
  padding: 0 18px 0 26px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease, background .15s, opacity .2s ease;
}
.float-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--iri);
  background: #FFFFFF;
}
.float-cta:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 0 var(--ink);
}
.float-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(20px, -10px) scale(0.95);
}
.float-cta-arrow {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--iri);
  color: var(--cream);
  border-radius: 50%;
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 800;
}
@media (max-width: 480px) {
  .float-cta { top: auto; bottom: 16px; right: 16px; left: 16px; height: 60px; justify-content: center; }
  .float-cta-arrow { width: 30px; height: 30px; font-size: 15px; }
}

/* ============================================================
   HERO
   Background pins (sticky) — foreground text scrolls over it.
   ============================================================ */
.hero {
  position: relative;
  color: var(--cream);
  isolation: isolate;
  /* No explicit min-height — content + screens drive the scroll runway */
}
.hero-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  /* Lift layout space so foreground content overlays it */
  margin-bottom: -100vh;
  overflow: hidden;
  z-index: 0;
}

/* Foreground stack that scrolls over the pinned bg */
.hero-screens {
  position: relative;
  z-index: 2;
}
.hero-screen-1 {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
}
.hero-screen-2 {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--cream);
}
.hero-pull {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 8.5vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 18px;
  max-width: 14ch;
  text-shadow: 0 4px 32px rgba(0,0,0,0.55);
  text-wrap: balance;
}
.hero-pull em {
  font-style: italic;
  color: var(--iri);
}
.hero-pull-sub {
  max-width: 540px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  margin: 0;
  color: rgba(250, 244, 228, 0.92);
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}

/* Stacked court images */
.court-stack {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.court {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.court-sharp {
  z-index: 1;
  filter: saturate(1.1) contrast(1.05);
}
.court-blur {
  z-index: 2;
  /* its own blur is baked-in by the source; we control with opacity via JS */
  opacity: 1;
  transform: scale(1.06);
  transition: opacity .15s linear, transform .15s linear;
}
.court-tint {
  position: absolute; inset: 0; z-index: 3;
  background:
    linear-gradient(180deg,
      rgba(11, 11, 11, 0.55) 0%,
      rgba(11, 11, 11, 0.25) 35%,
      rgba(11, 11, 11, 0.55) 80%,
      rgba(11, 11, 11, 0.85) 100%);
}

.court-lines {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 60%;
  z-index: 0;
  pointer-events: none;
}

/* Vertical "EST 2021" tag */
.vert-tag {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: rgba(250, 244, 228, 0.55);
  z-index: 4;
  white-space: nowrap;
}
@media (max-width: 720px) { .vert-tag { display: none; } }

.hero-inner {
  position: relative; z-index: 5;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero-h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(64px, 13vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 18px 0 26px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.hero-h1 .line { display: block; }
.hero-h1 .line em {
  font-style: italic;
  font-weight: 400;
  color: var(--iri);
}

/* WHOLE — cream display caps, no chrome gradient */
.word-chrome {
  display: inline-block;
  color: var(--cream);
  letter-spacing: -0.005em;
  margin-right: 0.15em;
  text-shadow:
    0 3px 0 rgba(0,0,0,0.45),
    0 0 30px rgba(107, 79, 209, 0.35);
}

.hero-sub {
  max-width: 560px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  margin: 0 0 36px;
  color: rgba(250, 244, 228, 0.92);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-sub strong { color: var(--aqua); font-weight: 700; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.scroll-cue {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(250, 244, 228, 0.75);
  text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 4px); }
}

/* Focus-band styles removed — section consolidated into contact */

/* Marquee ticker — service verticals, score-ticker treatment */
.ticker {
  background: var(--gunmetal);
  color: var(--cream);
  padding: 18px 0;
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 -1px 0 rgba(0,0,0,0.5);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
}
.tick {
  display: inline-block;
  padding: 0 32px;
  font-family: var(--f-sticker);
  font-size: clamp(15px, 1.5vw, 20px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}
.tick-sep {
  display: inline-block;
  font-family: var(--f-sticker);
  font-size: clamp(12px, 1.1vw, 16px);
  color: var(--aqua);
  transform: translateY(-1px);
}

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

/* ============================================================
   WORK — collector-card pillars
   ============================================================ */
.work {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--paper);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 920px) { .cards { grid-template-columns: 1fr; gap: 18px; } }

.card {
  position: relative;
  border: 3px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 6px 6px 0 0 var(--ink);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 0 var(--ink); }

.card-strip {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 14px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 3px solid var(--ink);
}

.card-photo {
  aspect-ratio: 5 / 4;
  display: grid; place-items: center;
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.card-photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.18) 1.2px, transparent 1.2px);
  background-size: 8px 8px;
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.card-glyph { width: 58%; height: auto; position: relative; z-index: 1; }

/* Color treatments */
.card-orange .card-strip { background: var(--orange); }
.card-orange .card-photo { background: linear-gradient(135deg, #FF7A3A 0%, #FF5A1F 60%, #D43F0F 100%); color: var(--cream); }

.card-purple .card-strip { background: var(--purple); }
.card-purple .card-photo { background: linear-gradient(135deg, #8455D6 0%, #6B3FB5 55%, #4B2A86 100%); color: var(--cream); }

.card-teal .card-strip { background: var(--teal); }
.card-teal .card-photo { background: linear-gradient(135deg, #2DD8CF 0%, #00B8B0 55%, #007F7A 100%); color: var(--cream); }

.card-meta { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.card-tag {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
}
.card-orange h3 { color: var(--orange-deep); }
.card-purple h3 { color: var(--purple-deep); }
.card-teal   h3 { color: var(--teal-deep); }

.card p { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); }

.card-specs { list-style: none; padding: 16px 0 0; margin: 14px 0 0; border-top: 1.5px dashed rgba(0,0,0,0.25); display: flex; flex-direction: column; gap: 6px; }
.card-specs li {
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.card-specs li span:first-child { font-weight: 700; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.14em; }
.card-specs li span:last-child  { text-align: right; color: var(--ink-soft); white-space: nowrap; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--paper-2);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

.about-copy p { font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; margin: 0 0 18px; }
.about-copy p strong { background: var(--iri); color: var(--cream); padding: 1px 8px; border-radius: 3px; font-weight: 700; }
.about-copy .btn { margin-top: 14px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(80px, 10vw, 140px);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  border-top: 3px solid var(--iri);
}
.contact > .wrap {
  padding-top: clamp(80px, 10vw, 140px);
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255,255,255,0.025) 38px 39px),
    radial-gradient(rgba(255,255,255,0.05) 1.2px, transparent 1.2px);
  background-size: auto, 6px 6px;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-blurb {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(250, 244, 228, 0.85);
  margin: 0 0 36px;
  max-width: 48ch;
}

.contact-direct {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 28px;
  border-top: 1.5px dashed rgba(250, 244, 228, 0.2);
}
.contact-direct a {
  display: flex; flex-direction: column; gap: 2px;
  text-decoration: none;
  color: var(--cream);
}
.contact-direct-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
}
.contact-direct-value {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.contact-direct a:hover .contact-direct-value {
  color: var(--iri);
}

/* Form */
.contact-form {
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--cream);
  border-radius: 8px;
  padding: 24px 24px 28px;
  box-shadow: 8px 8px 0 0 var(--gunmetal);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.form-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 2px dashed rgba(0,0,0,0.2);
  margin-bottom: 4px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.form-head-pill {
  background: var(--ink);
  color: var(--cream);
  padding: 5px 10px;
  border-radius: 999px;
}
.form-head-id { color: var(--ink-mute); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; border: 0; padding: 0; margin: 0; }
.field > span, .field > legend {
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--ink);
  padding: 8px 0 10px;
  font-size: 15px;
  font-family: var(--f-body);
  color: var(--ink);
  outline: none;
  border-radius: 0;
}
.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--iri);
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.45; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label {
  position: relative;
  cursor: pointer;
}
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span {
  display: inline-block;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background .12s, color .12s, transform .12s;
}
.chips input:checked + span {
  background: var(--iri);
  color: var(--cream);
  border-color: var(--iri);
}
.chips label:hover span { transform: translateY(-1px); }

.btn-submit {
  align-self: flex-start;
  padding: 18px 28px;
  font-size: 15px;
  font-family: var(--f-sticker);
  letter-spacing: 0.08em;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 0 var(--ink);
  text-transform: uppercase;
}
.btn-submit:hover { box-shadow: 6px 6px 0 0 var(--ink); }

.form-fine {
  font-size: 12px;
  color: var(--ink-mute);
  margin: -2px 0 0;
  letter-spacing: 0.02em;
}

.form-ok {
  padding: 16px 18px;
  background: var(--iri);
  color: var(--cream);
  border-radius: 6px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink);
}
.form-ok strong {
  font-family: var(--f-sticker);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--aqua);
}
.form-ok p { margin: 4px 0 0; font-size: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  position: relative;
  z-index: 1;
  background: var(--paper);
  color: var(--ink);
  padding: 40px 0 44px;
  border-top: 3px solid var(--ink);
}
.foot-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}

/* Brand lockup (footer) */
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit;
}
.brand img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream);
  padding: 5px;
  border: 1.5px solid var(--ink);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand-text strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-text em {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}
.brand-dark { color: var(--ink); }
.brand-dark .brand-text strong { color: var(--ink); }
.brand-dark .brand-text em     { color: var(--ink-mute); }

.foot-c {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.foot-nav { display: flex; gap: 20px; }
.foot-nav a {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
.foot-nav a:hover { color: var(--iri); }
.foot-c {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
