/* ==========================================================================
   Voltcycle Pty Ltd — voltcycletec.site
   Art direction: deep petrol teal + copper, soft shape language,
   system sans body with a monospace utility face for specs and eyebrows.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------
   Every colour, space, radius, shadow and type size lives here.
   Nothing below this block hard-codes a colour or an ad-hoc pixel value. */

:root {
  /* brand */
  --primary-900: #0a2528;
  --primary-800: #0e3236;
  --primary-700: #10393d;
  --primary-600: #175055;
  --primary-100: #e4edec;
  --primary-050: #f2f7f6;

  /* accent (copper) */
  --accent: #a85a2a;
  --accent-600: #8f4b22;
  --accent-300: #e0a06a;
  --accent-050: #f8ede4;

  /* neutrals */
  --bg: #fbfaf8;
  --surface: #ffffff;
  --surface-2: #f4f3f0;
  --border: #e1e4e1;

  /* text */
  --text-dark: #131c1c;
  --text-body: #3b4a49;
  --text-light: #5d6e6d;
  --on-dark: #eef4f3;
  --on-dark-muted: #afc3c2;

  /* composed surfaces */
  --nav-bg: rgba(255, 255, 255, 0.82);
  --border-dark: rgba(238, 244, 243, 0.16);
  --panel-glass: rgba(238, 244, 243, 0.06);
  --panel-glass-2: rgba(238, 244, 243, 0.1);
  --grid-line: rgba(238, 244, 243, 0.07);
  --tint-line: rgba(19, 28, 28, 0.06);
  --glow-a: rgba(168, 90, 42, 0.32);
  --glow-b: rgba(23, 80, 85, 0.55);
  --focus: #c97a3e;

  /* shadows */
  --shadow-1: 0 1px 2px rgba(19, 28, 28, 0.05);
  --shadow-2: 0 1px 2px rgba(19, 28, 28, 0.04), 0 8px 24px rgba(19, 28, 28, 0.07);
  --shadow-3: 0 14px 34px rgba(19, 28, 28, 0.14);
  --shadow-nav: 0 1px 0 rgba(19, 28, 28, 0.06);

  /* spacing scale */
  --s1: 0.5rem;
  --s2: 0.75rem;
  --s3: 1rem;
  --s4: 1.5rem;
  --s5: 2.5rem;
  --s6: 4rem;
  --s7: 6rem;

  /* shape + metrics */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --hair: 1px;
  --badge: 44px;
  --container: 1140px;
  --measure: 66ch;

  /* type */
  --font-body: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", Consolas, "SF Mono", Menlo, monospace;
  --fs-hero: clamp(2.25rem, 5vw, 3.85rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.08rem, 1.6vw, 1.3rem);
  --fs-lead: clamp(1.05rem, 1.5vw, 1.22rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.78rem;

  /* motion */
  --t: 180ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

p { margin: 0; }

a { color: var(--accent-600); }

ul { margin: 0; padding: 0; }

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

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

.visually-hidden {
  position: absolute;
  width: var(--hair);
  height: var(--hair);
  margin: calc(var(--hair) * -1);
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--s3);
  top: calc(var(--s6) * -1);
  z-index: 100;
  padding: var(--s2) var(--s3);
  background: var(--primary-900);
  color: var(--on-dark);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  text-decoration: none;
}

.skip-link:focus { top: var(--s2); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s4);
}

.measure { max-width: var(--measure); }

/* --- Header / navigation ------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: var(--hair) solid var(--border);
  box-shadow: var(--shadow-nav);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  min-height: var(--s6);
  position: relative;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  text-decoration: none;
  color: var(--text-dark);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: var(--badge);
  height: var(--badge);
  background: var(--primary-700);
  color: var(--on-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: var(--fs-h3);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-suffix {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: var(--badge);
  height: var(--badge);
  padding: 0;
  background: var(--surface);
  color: var(--text-dark);
  border: var(--hair) solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--s4);
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: var(--s1) 0;
  color: var(--text-body);
  font-size: var(--fs-small);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--t);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-pill);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav-link:hover { color: var(--text-dark); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link.active { color: var(--text-dark); }
.nav-link.active::after { transform: scaleX(1); }

.nav-cta { white-space: nowrap; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  padding: 0.8rem 1.6rem;
  border: var(--hair) solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--t), background-color var(--t), color var(--t),
    border-color var(--t), box-shadow var(--t);
}

.btn-primary {
  background: var(--accent);
  color: var(--surface);
  box-shadow: var(--shadow-1);
}

.btn-primary:hover {
  background: var(--accent-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}

.btn-outline {
  background: transparent;
  color: var(--primary-700);
  border-color: var(--primary-700);
}

.btn-outline:hover {
  background: var(--primary-700);
  color: var(--on-dark);
  transform: translateY(-1px);
}

.btn-invert {
  color: var(--on-dark);
  border-color: var(--border-dark);
  background: var(--panel-glass);
}

.btn-invert:hover {
  background: var(--on-dark);
  color: var(--primary-900);
  border-color: var(--on-dark);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

/* --- Dark band backdrop (hero, page hero, cycle band, CTA) --------------- */

.hero,
.page-hero,
.cycle-band,
.cta-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--primary-800);
  background-image:
    radial-gradient(58% 78% at 82% 16%, var(--glow-a), transparent 62%),
    radial-gradient(52% 64% at 6% 92%, var(--glow-b), transparent 66%),
    linear-gradient(158deg, var(--primary-900), var(--primary-700) 58%, var(--primary-800));
  color: var(--on-dark-muted);
}

.hero::before,
.page-hero::before,
.cycle-band::before,
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    repeating-linear-gradient(90deg, var(--grid-line) 0 var(--hair), transparent var(--hair) var(--s6)),
    repeating-linear-gradient(0deg, var(--grid-line) 0 var(--hair), transparent var(--hair) var(--s6));
}

.hero h1,
.hero h2,
.page-hero h1,
.cycle-band h2,
.cta-strip h2 { color: var(--on-dark); }

.hero .eyebrow,
.page-hero .eyebrow,
.cycle-band .eyebrow,
.cta-strip .eyebrow { color: var(--accent-300); }

/* --- Hero ---------------------------------------------------------------- */

.hero {
  padding: var(--s7) 0 calc(var(--s7) + var(--s5));
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: var(--s5);
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: var(--s6);
}

.hero-copy { min-width: 0; }

.hero-title {
  margin: var(--s3) 0 var(--s4);
  font-size: var(--fs-hero);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: var(--measure);
  font-size: var(--fs-lead);
  color: var(--on-dark-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s5);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s5);
  padding-top: var(--s3);
  border-top: var(--hair) solid var(--border-dark);
  list-style: none;
}

.hero-meta-item {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

/* hero visual anchor: overlapping panels + line-drawn e-bike */

.hero-visual {
  position: relative;
  min-width: 0;
  padding: var(--s4) var(--s4) var(--s6) 0;
}

.panel-back {
  position: absolute;
  inset: 0 var(--s6) var(--s5) var(--s5);
  background: var(--panel-glass);
  border: var(--hair) solid var(--border-dark);
  border-radius: var(--radius-lg);
}

.panel-front {
  position: relative;
  padding: var(--s4);
  background: var(--panel-glass-2);
  border: var(--hair) solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
}

.bike-art {
  display: block;
  width: 100%;
  height: auto;
  color: var(--accent-300);
}

.panel-caption {
  display: flex;
  justify-content: space-between;
  gap: var(--s2);
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: var(--hair) solid var(--border-dark);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

/* --- Page hero (inner pages) -------------------------------------------- */

.page-hero { padding: var(--s6) 0; }

.page-hero-inner { max-width: var(--measure); }

.page-title {
  margin: var(--s2) 0 var(--s3);
  font-size: var(--fs-h2);
}

.page-lead {
  font-size: var(--fs-lead);
  color: var(--on-dark-muted);
}

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

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

.section-tint { background: var(--primary-050); }

.section-dark {
  background: var(--primary-900);
  color: var(--on-dark-muted);
}

.section-dark h2,
.section-dark h3 { color: var(--on-dark); }

.section-head {
  max-width: var(--measure);
  margin-bottom: var(--s5);
}

.eyebrow {
  display: block;
  margin: 0 0 var(--s2);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-600);
}

.section-title {
  font-size: var(--fs-h2);
  line-height: 1.12;
}

.section-intro {
  max-width: var(--measure);
  margin-top: var(--s3);
  color: var(--text-body);
}

/* --- Value cards --------------------------------------------------------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s4);
}

.value-card {
  padding: var(--s4);
  background: var(--surface);
  border: var(--hair) solid var(--border);
  border-radius: var(--radius);
}

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--badge);
  height: var(--badge);
  margin-bottom: var(--s3);
  background: var(--accent-050);
  color: var(--accent-600);
  border-radius: var(--radius-sm);
}

.card-title {
  margin-bottom: var(--s2);
  font-size: var(--fs-h3);
}

.card-text {
  max-width: var(--measure);
  color: var(--text-body);
}

/* --- Services ------------------------------------------------------------ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s4);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: var(--s5) var(--s4);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  transition: transform var(--t), box-shadow var(--t);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-3);
}

.service-title {
  margin-bottom: var(--s2);
  font-size: var(--fs-h3);
}

.service-text {
  color: var(--text-body);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: var(--hair) solid var(--border);
  list-style: none;
}

.tag {
  padding: 0.2rem 0.6rem;
  background: var(--primary-050);
  color: var(--primary-600);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.04em;
}

/* --- Lifecycle band (signature) ------------------------------------------ */

.cycle-band { padding: var(--s7) 0; }

.cycle-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s4);
  margin-top: var(--s5);
  list-style: none;
}

.cycle-track::before {
  content: "";
  position: absolute;
  left: var(--s5);
  right: var(--s5);
  top: calc(var(--badge) / 2);
  height: var(--hair);
  background: var(--border-dark);
}

.cycle-step { position: relative; }

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--badge);
  height: var(--badge);
  margin-bottom: var(--s3);
  background: var(--primary-900);
  color: var(--accent-300);
  border: var(--hair) solid var(--border-dark);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  font-weight: 700;
}

.step-title {
  margin-bottom: var(--s1);
  font-size: var(--fs-h3);
  color: var(--on-dark);
}

.step-text {
  font-size: var(--fs-small);
  color: var(--on-dark-muted);
}

/* --- Split band ---------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: var(--s6);
}

.split-copy { min-width: 0; }

.split-copy p + p { margin-top: var(--s3); }

.split-visual {
  min-width: 0;
  padding: var(--s5);
  background: var(--surface);
  border: var(--hair) solid var(--border);
  border-radius: var(--radius-lg);
  background-image:
    repeating-linear-gradient(90deg, var(--tint-line) 0 var(--hair), transparent var(--hair) var(--s5)),
    repeating-linear-gradient(0deg, var(--tint-line) 0 var(--hair), transparent var(--hair) var(--s5));
  box-shadow: var(--shadow-2);
}

.spec-list { list-style: none; }

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s2) 0;
  border-bottom: var(--hair) solid var(--border);
}

.spec-row:last-child { border-bottom: 0; }

.spec-key {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.spec-value {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

.check-list {
  margin-top: var(--s4);
  list-style: none;
}

.check-item {
  position: relative;
  padding-left: var(--s4);
  margin-bottom: var(--s2);
  color: var(--text-body);
}

.check-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: var(--s1);
  height: var(--s1);
  background: var(--accent);
  border-radius: var(--radius-pill);
}

/* --- Credentials strip --------------------------------------------------- */

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s4);
}

.cred-item {
  padding: var(--s4);
  background: var(--surface);
  border: var(--hair) solid var(--border);
  border-radius: var(--radius);
}

.cred-label {
  display: block;
  margin-bottom: var(--s1);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.cred-value {
  display: block;
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

/* --- CTA strip ----------------------------------------------------------- */

.cta-strip { padding: var(--s6) 0; }

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.cta-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--s2);
}

.cta-text {
  max-width: var(--measure);
  color: var(--on-dark-muted);
}

/* --- Prose (legal + long-form) ------------------------------------------- */

.prose { max-width: var(--measure); }

.prose h2 {
  margin-top: var(--s5);
  margin-bottom: var(--s3);
  font-size: var(--fs-h3);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  margin-top: var(--s4);
  margin-bottom: var(--s2);
  font-size: var(--fs-body);
}

.prose p { margin-bottom: var(--s3); }

.prose ul {
  margin: 0 0 var(--s3);
  padding-left: var(--s4);
  list-style: disc;
}

.prose li { margin-bottom: var(--s1); }

.legal-updated {
  display: inline-block;
  margin-bottom: var(--s5);
  padding: var(--s1) var(--s3);
  background: var(--primary-050);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-600);
}

/* --- Contact ------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: start;
  gap: var(--s6);
}

.contact-panel {
  padding: var(--s5);
  background: var(--surface);
  border: var(--hair) solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}

.panel-title {
  margin-bottom: var(--s3);
  font-size: var(--fs-h3);
}

.form { margin-top: var(--s4); }

.contact-list { list-style: none; }

.contact-item {
  padding: var(--s3) 0;
  border-bottom: var(--hair) solid var(--border);
}

.contact-item:last-child { border-bottom: 0; }

.contact-label {
  display: block;
  margin-bottom: var(--s1);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-value {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-link {
  color: var(--accent-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.field { margin-bottom: var(--s3); }

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s3);
}

.field-label {
  display: block;
  margin-bottom: var(--s1);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-dark);
}

.field-input,
.field-textarea {
  display: block;
  width: 100%;
  padding: var(--s2) var(--s3);
  background: var(--bg);
  color: var(--text-dark);
  border: var(--hair) solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  transition: border-color var(--t), box-shadow var(--t);
}

.field-input:hover,
.field-textarea:hover { border-color: var(--primary-600); }

.field-textarea {
  min-height: calc(var(--s7) + var(--s5));
  resize: vertical;
}

.form-note {
  margin-top: var(--s3);
  font-size: var(--fs-small);
  color: var(--text-light);
}

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

.footer {
  background: var(--primary-900);
  color: var(--on-dark-muted);
  border-top: var(--hair) solid var(--border-dark);
}

.footer-top { padding: var(--s6) 0 var(--s5); }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: var(--s5);
}

.footer-col { min-width: 0; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s3);
  color: var(--on-dark);
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.footer-blurb {
  max-width: var(--measure);
  font-size: var(--fs-small);
  color: var(--on-dark-muted);
}

.footer-legal-line {
  margin-top: var(--s3);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.06em;
  color: var(--on-dark-muted);
}

.footer-heading {
  margin-bottom: var(--s3);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-300);
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: var(--s2); }

.footer-link {
  color: var(--on-dark-muted);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: color var(--t);
}

.footer-link:hover {
  color: var(--on-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  padding: var(--s3) 0;
  background: var(--primary-800);
  border-top: var(--hair) solid var(--border-dark);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
}

.footer-copy {
  font-size: var(--fs-small);
  color: var(--on-dark-muted);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  list-style: none;
}

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 980px) {
  .value-grid,
  .cred-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .cycle-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cycle-track::before { display: none; }

  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .navbar { min-height: var(--s5); }

  .nav-toggle { display: inline-flex; }

  .nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s3);
    padding: var(--s4);
    background: var(--surface);
    border-top: var(--hair) solid var(--border);
    box-shadow: var(--shadow-2);
  }

  .nav-menu.open { display: flex; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s3);
  }

  .nav-link { font-size: var(--fs-body); }

  .nav-link::after { display: none; }

  .nav-link.active {
    padding-left: var(--s3);
    border-left: 2px solid var(--accent);
  }

  .section,
  .cycle-band { padding: var(--s6) 0; }

  .hero {
    padding: var(--s6) 0 calc(var(--s6) + var(--s5));
    min-height: 0;
  }

  .hero-inner,
  .split,
  .contact-grid { grid-template-columns: minmax(0, 1fr); gap: var(--s5); }

  .hero-visual { display: none; }

  .value-grid,
  .cred-grid,
  .cycle-track,
  .footer-grid,
  .field-row { grid-template-columns: minmax(0, 1fr); }

  .contact-panel,
  .split-visual { padding: var(--s4); }

  .cta-inner { align-items: flex-start; }
}

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

  .btn:hover,
  .service-card:hover { transform: none; }
}
