@charset "UTF-8";
/* Halberd Athletics theme. PageMotor 0.8.3b. Sport off-black volt palette.
   Big Shoulders Display + Albert Sans + JetBrains Mono. */
/* GRT bridge: Design Options take priority, source design values fall back. */
:root {
  --font1: "Big Shoulders Display", sans-serif;
  --font2: "Albert Sans", sans-serif;
  --font3: "JetBrains Mono", sans-serif;
  /* font-size and secondary literal: not exposed as design opts — would break PM Save CSS button */
  --font-size: 18px;
  --secondary: #3A3D42;
  /* Typography roles */
  --font-display: var(--font1);
  --font-body: var(--font2);
  --font-mono: var(--font3);
  --f1: 47px;
  --f2: 37px;
  --f3: 29px;
  --f4: 23px;
  --f5: 18px;
  --f6: 14px;
  --g1: 70px;
  --g2: 56px;
  --g3: 45px;
  --g4: 37px;
  --g5: 30px;
  --g6: 24px;
  --x1: 49px;
  --x2: 30px;
  --x3: 19px;
  --x4: 12px;
  --x5: 7px;
  --x6: 4px;
  --b1: 360px;
  --b2: 480px;
  --b3: 720px;
  --b4: 1280px;
  --b5: 1280px;
  --phi: 1.6180339887;
  --w-content: 720px;
  --w-total: 1280px;
  --gutter-full: 32px;
  --gutter-mobile: 20px;
  --bg1: #121212;
  --bg2: #1A1A1C;
  --c1: #F2F2F2;
  --c2: #A0A0A0;
  --ca: #D9F23A;
  --border1: 1px solid #2A2A2C;
  --border2: 1px solid #3A3D42;
  --border3: 1px solid #6A6D72;
  /* Callout split-complement allocation from ca (HSL 71 85 59) */
  --bg-callout: hsl(191, 24%, 16%);
  --c-callout: hsl(191, 30%, 86%);
  --bg-callout-alert: hsl(251, 24%, 17%);
  --c-callout-alert: hsl(251, 32%, 86%);
  --bg-callout-note: hsl(311, 22%, 16%);
  --c-callout-note: hsl(311, 30%, 86%);
  /* Highlight on dark paper */
  --bg-highlight: hsl(71, 70%, 35%);
  --c-highlight: #121212;
  /* Button variants */
  --bg-btn-action: hsl(15, 92%, 56%);
  --c-btn-action: #121212;
  --bg-btn-update: hsl(251, 60%, 60%);
  --c-btn-update: #F2F2F2;
  --bg-btn-save: hsl(158, 50%, 42%);
  --c-btn-save: #121212;
  --bg-btn-delete: hsl(3, 78%, 52%);
  --c-btn-delete: #F2F2F2;
  /* Selection */
  --selection-bg: var(--ca);
  --selection-fg: var(--bg1);
  /* Section padding */
  --section-padding: calc(var(--x1) * var(--phi));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

video {
  background: var(--bg1);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  cursor: pointer;
}

/* Base structural foundations */
body {
  font-family: var(--font-body);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  background-color: var(--bg1);
  font-weight: 400;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--ca);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.22em;
  transition: color 120ms linear;
}
a:hover {
  color: var(--ca);
}
a:focus-visible {
  outline: 2px solid var(--ca);
  outline-offset: 3px;
  border-radius: 1px;
}

.container {
  box-sizing: border-box;
  width: calc(100% - 2 * var(--gutter-mobile));
  max-width: var(--w-total);
  margin-inline: auto;
}
@media all and (min-width: 720px) {
  .container {
    width: calc(100% - 2 * var(--gutter-full));
  }
}
@media all and (min-width: 1280px) {
  .container {
    width: 100%;
    max-width: var(--w-total);
    margin-left: auto;
    margin-right: auto;
  }
}

.text, .measure {
  max-width: var(--w-content);
}

.section {
  padding-top: var(--x1);
  padding-bottom: var(--x1);
  position: relative;
}
@media all and (min-width: 720px) {
  .section {
    padding-top: calc(var(--x1) * 1.6);
    padding-bottom: calc(var(--x1) * 1.6);
  }
}

.section-bg2 {
  background: var(--bg2);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* Page main wrapper — editorial architecture shell */
.page-main {
  min-height: 50vh;
}

/* Typography — Halberd Athletics. Sport-poster condensed display register. */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}

/* Display calibration: headlines override GRT scale for sport-poster register.
   h1/h2/h3 use clamp() with tight line-heights between 0.84 and 0.96.
   h4-h6 stay on the f-scale. */
h1 {
  font-size: clamp(56px, 11vw, 168px);
  letter-spacing: -0.01em;
  line-height: 0.86;
  font-weight: 900;
}

h2 {
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: -0.005em;
  line-height: 0.9;
}

h3 {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.96;
}

h4 {
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 700;
}

h5 {
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 700;
}

h6 {
  font-size: var(--f5);
  line-height: var(--g5);
  font-weight: 700;
  letter-spacing: 0.06em;
}

p {
  font-size: var(--f5);
  line-height: var(--g5);
  margin: 0 0 var(--x2);
}
p:last-child {
  margin-bottom: 0;
}

ul, ol {
  font-size: var(--f5);
  line-height: var(--g5);
  margin: 0 0 var(--x2);
  padding-left: var(--x2);
}

li {
  margin-bottom: var(--x4);
}
li:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

blockquote {
  font-style: normal;
  margin: 0 0 var(--x2);
  padding: var(--x3) 0 var(--x3) var(--x3);
  border-left: 3px solid var(--ca);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--f3);
  line-height: var(--g3);
  text-transform: uppercase;
  color: var(--c1);
}
blockquote > :last-child {
  margin-bottom: 0;
}

cite {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c2);
  margin-top: var(--x4);
}

pre {
  background: var(--bg2);
  border: 1px solid var(--border1);
  padding: var(--x3);
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  overflow-x: auto;
  color: var(--c1);
  margin: 0 0 var(--x2);
}
pre > code {
  padding: 0;
  background: transparent;
  font: inherit;
  color: inherit;
}

code {
  font-family: var(--font-mono);
  font-size: 0.94em;
  background: var(--bg2);
  padding: 2px 6px;
  border: 1px solid var(--border1);
  color: var(--ca);
}

hr {
  border: 0;
  height: 1px;
  background: var(--border2);
  margin: var(--x2) 0;
}

/* Page content (readability column) */
.page-content {
  max-width: var(--w-content);
  margin-inline: auto;
  padding-top: var(--x2);
  padding-bottom: var(--x2);
}
.page-content p,
.page-content ul,
.page-content ol,
.page-content blockquote,
.page-content pre,
.page-content img,
.page-content figure,
.page-content .callout,
.page-content .caption {
  margin-bottom: var(--x2);
}
.page-content h2 {
  font-size: clamp(34px, 5vw, 64px);
  margin-top: var(--x1);
  margin-bottom: var(--x3);
}
.page-content h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-top: var(--x2);
  margin-bottom: var(--x3);
}
.page-content h2:first-child,
.page-content h3:first-child {
  margin-top: 0;
}
.page-content hr {
  border: 0;
  height: 1px;
  background: var(--border2);
  margin: var(--x2) 0;
}
.page-content figure {
  margin: 0;
}
.page-content figure img {
  width: 100%;
}
.page-content ul li::marker {
  color: var(--ca);
}
.page-content ol li::marker {
  color: var(--ca);
  font-family: var(--font-mono);
}

/* Forms */
form input,
form textarea,
form select,
form fieldset {
  margin-bottom: var(--x2);
}

input[type=text],
input[type=email],
input[type=search],
input[type=tel],
textarea,
select {
  width: 100%;
  background: var(--bg1);
  color: var(--c1);
  border: 1px solid var(--border3);
  padding: var(--x4) var(--x3);
  font: inherit;
  font-size: var(--f5);
  line-height: var(--g5);
  font-family: var(--font-body);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--ca);
  outline-offset: 2px;
  border-color: var(--ca);
}

textarea {
  min-height: 144px;
  resize: vertical;
}

label {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: var(--x5);
}

fieldset {
  border: 1px solid var(--border1);
  padding: var(--x3);
}

legend {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ca);
  padding: 0 var(--x5);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--x5);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--ca);
  color: var(--bg1);
  border: 2px solid var(--ca);
  padding: var(--x4) var(--x3);
  cursor: pointer;
  transition: transform 120ms linear, background 120ms linear, color 120ms linear;
}
.button:hover {
  transform: translateY(-2px);
  color: var(--bg1);
}
.button:focus-visible {
  outline: 2px solid var(--ca);
  outline-offset: 3px;
}
.button.action {
  background: var(--bg-btn-action);
  color: var(--c-btn-action);
  border-color: var(--bg-btn-action);
}
.button.action:hover {
  color: var(--c-btn-action);
}
.button.update {
  background: var(--bg-btn-update);
  color: var(--c-btn-update);
  border-color: var(--bg-btn-update);
}
.button.update:hover {
  color: var(--c-btn-update);
}
.button.save {
  background: var(--bg-btn-save);
  color: var(--c-btn-save);
  border-color: var(--bg-btn-save);
}
.button.save:hover {
  color: var(--c-btn-save);
}
.button.delete {
  background: var(--bg-btn-delete);
  color: var(--c-btn-delete);
  border-color: var(--bg-btn-delete);
}
.button.delete:hover {
  color: var(--c-btn-delete);
}
.button.outline {
  background: transparent;
  color: var(--c1);
  border-color: var(--c1);
}
.button.outline:hover {
  color: var(--ca);
  border-color: var(--ca);
}

/* Callouts — split-complement palette from volt ca */
.callout {
  background: var(--bg-callout);
  color: var(--c-callout);
  padding: var(--x3) var(--x2);
  border-left: 3px solid var(--c-callout);
  margin-bottom: var(--x2);
  font-size: var(--f5);
  line-height: var(--g5);
}
.callout.alert {
  background: var(--bg-callout-alert);
  color: var(--c-callout-alert);
  border-left-color: var(--c-callout-alert);
}
.callout.note {
  background: var(--bg-callout-note);
  color: var(--c-callout-note);
  border-left-color: var(--c-callout-note);
}

/* Formatting primitives */
.caption {
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  letter-spacing: 0.06em;
  margin-bottom: var(--x2);
}

.small {
  font-size: var(--f6);
  line-height: var(--g6);
}

.highlight {
  background: var(--bg-highlight);
  color: var(--c-highlight);
  padding: 2px 6px;
}

.impact {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 12vw, 168px);
  line-height: 0.86;
  color: var(--ca);
  letter-spacing: -0.012em;
  text-transform: uppercase;
  display: block;
}

.pop {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ca);
}

.drop-cap::first-letter,
p.drop-cap::first-letter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4.6em;
  line-height: 0.86;
  float: left;
  margin: 6px var(--x4) 0 0;
  color: var(--ca);
  text-transform: uppercase;
}

/* Skip link. Visible on focus. */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--x4);
  background: var(--ca);
  color: var(--bg1);
  padding: var(--x4) var(--x3);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 100;
  transition: top 120ms linear;
}
.skip-link:focus {
  top: var(--x4);
}

/* Visual language — sport-graphic stencil. Hard-edged geometric vector.
   Marks: halberd silhouette, track-curve sigil, mountain-ridge sigil,
   urban-grid sigil, stencil-rule divider. */
/* Halberd silhouette mark. Volt-yellow on dark paper in all contexts
   except the Final CTA bleed where it inverts to dark on volt. */
.halberd-mark {
  color: var(--ca);
}

/* Sigils at standard 64px */
.sigil {
  width: 64px;
  height: 64px;
  color: var(--ca);
  display: block;
}

/* Stencil-rule divider — fills its container width */
.stencil-rule {
  display: block;
  width: 100%;
  height: 14px;
  color: var(--ca);
}

/* Section-divider band */
.section-divider {
  padding: 0;
  margin: 0;
  background: var(--bg2);
}
.section-divider .container {
  padding: var(--x2) 0;
}

/* Hero corner mark — absolute positioned, sized by context */
.hero-corner-mark {
  position: absolute;
  top: var(--x3);
  right: 0;
  width: 96px;
  color: var(--ca);
  z-index: 2;
}
@media all and (min-width: 720px) {
  .hero-corner-mark {
    width: 144px;
    top: var(--x2);
  }
}

/* Wordmark — inline-flex composition of SVG mark + HTML span text.
   No browser-rendered text inside any SVG (HR93). */
.wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: var(--x4);
  text-decoration: none;
  color: var(--c1);
}
.brandmark .halberd-mark {
  width: 28px;
  height: 28px;
  color: var(--ca);
}

/* Header / nav (Pattern A, hamburger mobile) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: var(--border1);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--x3);
  padding-top: var(--x3);
  padding-bottom: var(--x3);
}

.primary-nav {
  display: none;
}
@media all and (min-width: 720px) {
  .primary-nav {
    display: block;
  }
}
.primary-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--x2);
  align-items: center;
}
.primary-nav .nav-list li {
  margin: 0;
}
.primary-nav .nav-list a {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c1);
  padding: var(--x5) 0;
  border-bottom: 2px solid transparent;
}
.primary-nav .nav-list a:hover, .primary-nav .nav-list a[aria-current=page] {
  color: var(--ca);
  border-bottom-color: var(--ca);
}

/* Mobile nav — is-open toggled by theme.js */
@media all and (max-width: 719px) {
  .primary-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg1);
    border-bottom: var(--border1);
    padding: var(--x2) var(--gutter-mobile);
  }
  .primary-nav.is-open .nav-list {
    flex-direction: column;
    gap: var(--x3);
    align-items: flex-start;
  }
}
.hamburger {
  display: inline-flex;
  align-items: center;
  gap: var(--x5);
  background: transparent;
  color: var(--c1);
  border: 1px solid var(--border3);
  padding: var(--x5) var(--x4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hamburger:hover {
  color: var(--ca);
  border-color: var(--ca);
}
@media all and (min-width: 720px) {
  .hamburger {
    display: none;
  }
}

/* Breadcrumbs consolidated in header on interior pages */
.crumbs {
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  flex-basis: 100%;
  border-top: var(--border1);
  padding-top: var(--x4);
  margin-top: var(--x5);
}
.crumbs a {
  text-decoration: none;
  color: var(--c2);
}
.crumbs a:hover {
  color: var(--ca);
}
.crumbs .sep {
  margin: 0 var(--x5);
  color: var(--secondary);
}

/* Kicker and section headings */
.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ca);
  display: inline-block;
  border-left: 3px solid var(--ca);
  padding-left: var(--x4);
}

/* Inline kicker variant — no border, just colour */
.kicker-inline {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ca);
}

/* Hero — full-width poster moment with photo, headline stack and volt rule */
.hero {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--bg1);
  border-bottom: var(--border1);
}
.hero .container {
  position: relative;
  padding-top: var(--x1);
  padding-bottom: calc(var(--x1) * 1.4);
}

.hero-photo {
  position: relative;
  margin-bottom: calc(var(--x1) * -1);
  z-index: 1;
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
  background: var(--bg2);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: var(--x2);
  display: grid;
  gap: var(--x2);
}

.hero-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.4;
  color: var(--ca);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  gap: var(--x4);
  flex-wrap: wrap;
}
.hero-meta .dot {
  color: var(--secondary);
}

.hero-headline {
  font-size: clamp(64px, 14vw, 224px);
  line-height: 0.84;
  letter-spacing: -0.012em;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-headline .line-volt {
  color: var(--ca);
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--f3);
  line-height: var(--g3);
  max-width: var(--w-content);
  color: var(--c1);
  text-transform: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--x3);
  margin-top: var(--x3);
  align-items: center;
}

/* Ambient motion: volt rule drifts horizontally */
.hero-vertical-rule {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 6%;
  width: 2px;
  background: var(--ca);
  opacity: 0.18;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-vertical-rule {
    animation: vertical-rule-drift 12s ease-in-out infinite alternate;
  }
}
@keyframes vertical-rule-drift {
  from {
    transform: translateX(0);
    opacity: 0.12;
  }
  to {
    transform: translateX(-32px);
    opacity: 0.32;
  }
}
/* Three Lines section — the three-product-line overview grid */
.three-lines {
  background: var(--bg2);
}
.three-lines .container {
  display: grid;
  gap: var(--x1);
}
.three-lines .heading-block {
  display: grid;
  gap: var(--x3);
}
.three-lines .kicker {
  border-left: none;
  padding-left: 0;
}
.three-lines h2 .small {
  display: block;
  font-size: clamp(22px, 2.5vw, 32px);
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--c2);
  margin-top: var(--x4);
  line-height: 1.4;
}

.lines-grid {
  display: grid;
  gap: var(--x2);
  grid-template-columns: 1fr;
}
@media all and (min-width: 720px) {
  .lines-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.line-card {
  background: var(--bg1);
  border: 1px solid var(--border1);
  padding: var(--x2);
  display: grid;
  gap: var(--x3);
  position: relative;
  overflow: hidden;
}
.line-card .sigil {
  width: 64px;
  height: 64px;
  color: var(--ca);
}
.line-card h3 {
  font-size: var(--f1);
  line-height: 0.96;
}
.line-card .line-no {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c2);
}
.line-card p {
  color: var(--c1);
}
.line-card .line-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c1);
  border-bottom: 2px solid var(--ca);
  padding-bottom: var(--x6);
  align-self: start;
  justify-self: start;
}
.line-card .line-link:hover {
  color: var(--ca);
}

/* Line feature sections — Track, Trail, Street editorial two-column blocks */
.line-feature .container {
  display: grid;
  gap: var(--x2);
  grid-template-columns: 1fr;
}
@media all and (min-width: 720px) {
  .line-feature .container {
    grid-template-columns: 1.1fr 1fr;
    gap: calc(var(--x1) * 1.2);
    align-items: center;
  }
}
@media all and (min-width: 720px) {
  .line-feature.flip .container > .feature-text {
    order: 2;
  }
}
.line-feature .feature-text {
  display: grid;
  gap: var(--x3);
  align-content: start;
}
.line-feature .feature-text .sigil {
  width: 56px;
  height: 56px;
  color: var(--ca);
}
.line-feature .feature-text h2 .small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.16em;
  color: var(--c2);
  margin-bottom: var(--x4);
}
.line-feature .feature-meta {
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  display: grid;
  gap: var(--x5);
  border-left: 1px solid var(--border2);
  padding-left: var(--x3);
}
.line-feature .feature-meta strong {
  color: var(--c1);
  font-weight: 700;
}
.line-feature .feature-media {
  position: relative;
  background: var(--bg2);
}
.line-feature .feature-media video,
.line-feature .feature-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.line-feature .feature-media .media-tag {
  position: absolute;
  top: var(--x4);
  left: var(--x4);
  background: var(--bg1);
  color: var(--ca);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--x6) var(--x5);
  border: 1px solid var(--border2);
}
.line-feature.epic .feature-media video,
.line-feature.epic .feature-media img {
  aspect-ratio: 16/9;
}

/* Sigil + heading horizontal grouping */
.line-header-group {
  display: flex;
  align-items: center;
  gap: var(--x3);
}

/* Shoe section — featured product on home and product page */
.shoe-section {
  background: var(--bg2);
}
.shoe-section .container {
  display: grid;
  gap: var(--x1);
  grid-template-columns: 1fr;
}
@media all and (min-width: 720px) {
  .shoe-section .container {
    grid-template-columns: 1fr 1fr;
  }
}

.shoe-art {
  position: relative;
  background: var(--bg1);
  border: 1px solid var(--border1);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--x2);
}
.shoe-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shoe-art .shoe-tag {
  position: absolute;
  bottom: var(--x4);
  left: var(--x4);
  background: var(--ca);
  color: var(--bg1);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--x5) var(--x4);
}

.shoe-detail {
  display: grid;
  gap: var(--x3);
  align-content: center;
}
.shoe-detail .kicker {
  border-left: 3px solid var(--ca);
  padding-left: var(--x4);
}
.shoe-detail h2 {
  font-size: clamp(36px, 5vw, 72px);
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--x4) var(--x3);
  border-top: var(--border2);
  border-bottom: var(--border2);
  padding: var(--x3) 0;
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
}
.spec-grid dt {
  color: var(--c2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.spec-grid dd {
  margin: 0;
  color: var(--c1);
}

/* Roster — athlete listing on home and athletes page */
.roster .container {
  display: grid;
  gap: var(--x2);
}
.roster .heading-block {
  display: grid;
  gap: var(--x3);
}
.roster .kicker {
  border-left: none;
  padding-left: 0;
}

.roster-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--x3);
  align-items: baseline;
  padding: var(--x3) 0;
  border-bottom: var(--border1);
}
.roster-row:last-child {
  border-bottom: 0;
}
.roster-row .athlete-no {
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  letter-spacing: 0.1em;
}
.roster-row .athlete-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.roster-row .athlete-line {
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--ca);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}

/* Final CTA — volt bleed with marquee stencil divider and watermark */
.final-cta {
  background: var(--ca);
  color: var(--bg1);
  position: relative;
  overflow: hidden;
  /* Invert halberd mark on volt bleed */
}
.final-cta .container {
  display: grid;
  gap: var(--x2);
  position: relative;
  z-index: 2;
}
@media all and (min-width: 720px) {
  .final-cta .container {
    grid-template-columns: 1.1fr 1fr;
    gap: calc(var(--x1) * 1.4);
    align-items: start;
  }
}
.final-cta .cta-mark {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 360px;
  color: var(--bg1);
  opacity: 0.08;
  z-index: 0;
}
@media all and (min-width: 720px) {
  .final-cta .cta-mark {
    width: 540px;
    right: -80px;
    bottom: -80px;
  }
}
.final-cta .stencil-marquee {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  color: var(--bg1);
  opacity: 0.55;
}
@media (prefers-reduced-motion: no-preference) {
  .final-cta .stencil-marquee {
    animation: marquee-slide 18s linear infinite;
  }
}
.final-cta .cta-text {
  display: grid;
  gap: var(--x3);
}
.final-cta .cta-text h2 {
  color: var(--bg1);
}
.final-cta .cta-text p {
  color: var(--bg1);
}
.final-cta .cta-form {
  display: grid;
  gap: var(--x3);
  background: var(--bg1);
  color: var(--c1);
  padding: var(--x2);
  border: 2px solid var(--bg1);
}
.final-cta .cta-form label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c2);
  display: block;
  margin-bottom: var(--x5);
}
.final-cta .halberd-mark {
  color: var(--bg1);
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-128px);
  }
}
/* Page template base — shared structure for interior pages */
.page-header {
  background: var(--bg1);
}
.page-header .container {
  max-width: var(--w-content);
  margin-inline: auto;
  display: grid;
  gap: var(--x3);
}
.page-header h1 {
  font-size: clamp(48px, 8vw, 120px);
}
.page-header .kicker {
  border-left: none;
  padding-left: 0;
}

.content-body .container {
  max-width: var(--w-content);
  margin-inline: auto;
}

/* Shop template */
.shop-intro {
  background: var(--bg1);
}
.shop-intro .container {
  display: grid;
  gap: var(--x3);
  max-width: var(--w-content);
  margin-inline: auto;
}
.shop-intro h1 {
  font-size: clamp(48px, 8vw, 120px);
}
.shop-intro .kicker {
  border-left: none;
  padding-left: 0;
}

.shop-line {
  padding-top: var(--x1);
  padding-bottom: var(--x1);
}
.shop-line.shop-bg2 {
  background: var(--bg2);
}
.shop-line .line-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--x3);
  margin-bottom: var(--x2);
  padding-bottom: var(--x4);
  border-bottom: 2px solid var(--ca);
  flex-wrap: wrap;
}
.shop-line .line-header .sigil {
  width: 56px;
  height: 56px;
  color: var(--ca);
}
.shop-line .line-header h2 {
  font-size: clamp(36px, 5vw, 72px);
}
.shop-line .line-header .right {
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  text-align: right;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  gap: var(--x2);
  grid-template-columns: 1fr;
}
@media all and (min-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--bg1);
  border: 1px solid var(--border1);
  display: grid;
  gap: var(--x4);
  text-decoration: none;
  color: var(--c1);
  padding: var(--x4);
  transition: border-color 120ms linear, transform 120ms linear;
}
.product-card:hover {
  border-color: var(--ca);
  transform: translateY(-2px);
  color: var(--c1);
}
.product-card .product-art {
  aspect-ratio: 4/5;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card .product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .product-art .product-badge {
  position: absolute;
  top: var(--x5);
  left: var(--x5);
  background: var(--ca);
  color: var(--bg1);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--x6) var(--x5);
}
.product-card .product-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--f3);
  line-height: 0.96;
  text-transform: uppercase;
}
.product-card .product-meta {
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card .product-meta .price {
  color: var(--ca);
}

/* Early access form */
.early-access {
  background: var(--bg2);
}
.early-access .container {
  max-width: var(--w-content);
  margin-inline: auto;
  display: grid;
  gap: var(--x3);
}

/* Product detail template */
.product-detail .container {
  display: grid;
  gap: var(--x2);
  grid-template-columns: 1fr;
}
@media all and (min-width: 720px) {
  .product-detail .container {
    grid-template-columns: 1.1fr 1fr;
    gap: calc(var(--x1) * 1.2);
    align-items: start;
  }
}

.gallery {
  display: grid;
  gap: var(--x4);
}
.gallery .main {
  background: var(--bg2);
  border: 1px solid var(--border1);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--x4);
}
.gallery .thumbs img,
.gallery .thumbs .thumb {
  background: var(--bg2);
  border: 1px solid var(--border1);
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  display: grid;
  gap: var(--x3);
}
.product-info .kicker {
  border-left: none;
  padding-left: 0;
}
.product-info h1 {
  font-size: clamp(48px, 7vw, 96px);
}
.product-info .price-block {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--f1);
  line-height: 1;
  color: var(--c1);
  display: flex;
  align-items: baseline;
  gap: var(--x4);
}
.product-info .price-block .currency {
  font-family: var(--font-mono);
  font-size: var(--f5);
  color: var(--c2);
}

.option-row {
  display: grid;
  gap: var(--x4);
}
.option-row .options-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--x5);
  list-style: none;
  margin: 0;
  padding: 0;
}
.option-row .options-list li {
  margin: 0;
}
.option-row .options-list button {
  background: var(--bg1);
  color: var(--c1);
  border: 1px solid var(--border3);
  padding: var(--x5) var(--x4);
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.option-row .options-list button:hover, .option-row .options-list button.is-on {
  border-color: var(--ca);
  color: var(--ca);
}

/* Athletes template */
.roster-page-intro {
  background: var(--bg1);
}
.roster-page-intro .container {
  max-width: var(--w-content);
  margin-inline: auto;
  display: grid;
  gap: var(--x3);
}
.roster-page-intro h1 {
  font-size: clamp(48px, 8vw, 120px);
}
.roster-page-intro .kicker {
  border-left: none;
  padding-left: 0;
}

.line-roster {
  padding-top: var(--x1);
  padding-bottom: var(--x1);
}
.line-roster.bg2 {
  background: var(--bg2);
}
.line-roster .line-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--x3);
  margin-bottom: var(--x2);
  padding-bottom: var(--x4);
  border-bottom: 2px solid var(--ca);
  flex-wrap: wrap;
}
.line-roster .line-header .sigil {
  width: 56px;
  height: 56px;
  color: var(--ca);
}
.line-roster .line-header h2 {
  font-size: clamp(36px, 5vw, 72px);
}

.athlete-grid {
  display: grid;
  gap: var(--x3);
  grid-template-columns: 1fr;
}
@media all and (min-width: 480px) {
  .athlete-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 1024px) {
  .athlete-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.athlete-card {
  display: grid;
  gap: var(--x4);
  background: transparent;
}
.athlete-card .athlete-portrait {
  aspect-ratio: 4/5;
  background: var(--bg2);
  border: 1px solid var(--border1);
  overflow: hidden;
}
.athlete-card .athlete-portrait img,
.athlete-card .athlete-portrait video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.athlete-card .athlete-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--f3);
  line-height: 0.96;
  text-transform: uppercase;
}
.athlete-card .athlete-meta {
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.athlete-card .athlete-meta .line {
  color: var(--ca);
}

/* Long-form page template (Field Notes article) */
.page-essay .container {
  max-width: var(--w-content);
  margin-inline: auto;
}

/* Article header */
.article-header {
  background: var(--bg1);
}
.article-header .container {
  max-width: var(--w-content);
  margin-inline: auto;
  display: grid;
  gap: var(--x3);
  padding-top: var(--x2);
  padding-bottom: var(--x2);
}
.article-header .kicker {
  border-left: none;
  padding-left: 0;
}
.article-header h1 {
  font-size: clamp(48px, 8vw, 120px);
}
.article-header .article-byline {
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Formatted subscribe form at article foot */
.article-subscribe {
  background: var(--bg2);
}
.article-subscribe .container {
  max-width: var(--w-content);
  margin-inline: auto;
  display: grid;
  gap: var(--x3);
}

/* Contact template */
.contact-intro {
  background: var(--bg1);
}
.contact-intro .container {
  max-width: var(--w-content);
  margin-inline: auto;
  display: grid;
  gap: var(--x3);
}
.contact-intro h1 {
  font-size: clamp(48px, 8vw, 120px);
}
.contact-intro .kicker {
  border-left: none;
  padding-left: 0;
}

.contact-grid .container {
  display: grid;
  gap: var(--x1);
}
@media all and (min-width: 720px) {
  .contact-grid .container {
    grid-template-columns: 1.2fr 1fr;
  }
}

.contact-form-wrap {
  display: grid;
  gap: var(--x3);
}

.contact-aside {
  display: grid;
  gap: var(--x3);
}
.contact-aside .block {
  border: 1px solid var(--border1);
  padding: var(--x3);
}
.contact-aside .block h3 {
  font-size: var(--f3);
  line-height: 0.96;
  margin-bottom: var(--x4);
}
.contact-aside .block p {
  font-size: var(--f5);
  line-height: var(--g5);
}
.contact-aside .block .caption {
  margin-bottom: 0;
  margin-top: var(--x4);
}

/* Error / 404 template */
.error-block .container {
  max-width: var(--w-content);
  margin-inline: auto;
  display: grid;
  gap: var(--x3);
  padding-top: var(--x1);
  padding-bottom: var(--x1);
}
.error-block .error-code {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(96px, 20vw, 280px);
  line-height: 0.86;
  color: var(--ca);
  letter-spacing: -0.02em;
  display: block;
}
.error-block h1 {
  font-size: clamp(40px, 6vw, 80px);
}
.error-block p {
  font-size: var(--f3);
  line-height: var(--g3);
  max-width: var(--w-content);
}
.error-block .error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--x3);
  margin-top: var(--x3);
}

/* Footer */
.site-footer {
  background: var(--bg1);
  border-top: var(--border1);
  padding-top: var(--x1);
  padding-bottom: var(--x2);
  position: relative;
  overflow: hidden;
}

.footer-columns {
  display: grid;
  gap: var(--x2);
  position: relative;
  z-index: 2;
}
@media all and (min-width: 720px) {
  .footer-columns {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-sig {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--x3);
  border-top: var(--border1);
  padding-top: var(--x3);
  margin-top: var(--x2);
}

.footer-brand {
  display: grid;
  gap: var(--x3);
}

.footer-brandmark {
  display: inline-flex;
  align-items: center;
  gap: var(--x4);
  text-decoration: none;
  color: var(--c1);
}

.footer-mark {
  width: 96px;
  height: 96px;
  color: var(--ca);
}

.footer-watermark {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 320px;
  color: var(--ca);
  opacity: 0.06;
  z-index: 0;
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}

.footer-legal {
  font-family: var(--font-mono);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}

.footer-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: var(--x4);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--f5);
  line-height: var(--g5);
}
.footer-col li {
  margin-bottom: var(--x5);
}
.footer-col a {
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--ca);
}

/* Bleed utilities — full-width colour sections */
.bleed {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.bleed-dark {
  background: var(--bg2);
  color: var(--c1);
}

.bleed-volt {
  background: var(--ca);
  color: var(--bg1);
}

/* Reveal-on-scroll animations */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 520ms ease-out, transform 520ms ease-out;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal[data-delay="1"] {
    transition-delay: 100ms;
  }
  .reveal[data-delay="2"] {
    transition-delay: 200ms;
  }
  .reveal[data-delay="3"] {
    transition-delay: 300ms;
  }
  .reveal[data-delay="4"] {
    transition-delay: 400ms;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-vertical-rule {
    animation: none;
  }
  .final-cta .stencil-marquee {
    animation: none;
  }
}