/* ==========================================================================
   Sheppard's Heavy Tyre Solutions Pty Ltd
   Art direction: iron-oxide + hazard ochre against a cool steel neutral ramp.
   Shape language: sharp (2-5px radii, hairline rules, tight tracking).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens - every colour, space, radius and shadow below comes from
      this block. Nothing further down hard-codes a value.
   -------------------------------------------------------------------------- */
:root {
  /* brand + neutrals */
  --primary:            #4b2b22;
  --primary-dark:       #2a1712;
  --primary-mid:        #3a2019;
  --primary-light:      #63382c;
  --accent:             #d99a2b;
  --accent-ink:         #8a5a12;
  --accent-soft:        #f7eeda;
  --bg:                 #f4f5f6;
  --bg-alt:             #e9ebec;
  --surface:            #ffffff;
  --text-dark:          #1b1a19;
  --text-mid:           #4d4a47;
  --text-light:         #efe9e4;
  --text-light-soft:    #c4b6ad;
  --border:             #d3d7d9;
  --border-strong:      #b6bcbf;

  /* translucent layers (gradients, veils, hairlines on dark) */
  --accent-glow:        rgba(217, 154, 43, .22);
  --accent-glow-soft:   rgba(217, 154, 43, .10);
  --dark-veil:          rgba(42, 23, 18, .78);
  --grid-line:          rgba(239, 233, 228, .05);
  --hairline-light:     rgba(239, 233, 228, .16);
  --hairline-lighter:   rgba(239, 233, 228, .09);
  --nav-veil:           rgba(244, 245, 246, .84);

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

  /* structure */
  --container: 1140px;
  --measure: 66ch;
  --radius: 3px;
  --radius-sm: 2px;
  --radius-lg: 5px;
  --rule: 1px;

  /* elevation */
  --shadow-1: 0 1px 2px rgba(27, 26, 25, .06);
  --shadow-2: 0 1px 2px rgba(27, 26, 25, .05), 0 10px 28px rgba(27, 26, 25, .09);
  --shadow-dark: 0 18px 44px rgba(42, 23, 18, .34);
  --shadow-focus: 0 0 0 4px var(--accent-glow-soft);

  /* type */
  --font-display: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", Consolas, "Liberation Mono", monospace;

  --fs-hero: clamp(2.25rem, 5vw, 3.85rem);
  --fs-h1: clamp(2rem, 4.2vw, 3rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.35rem);
  --fs-h3: 1.15rem;
  --fs-lead: clamp(1.05rem, 1.55vw, 1.25rem);
  --fs-body: 1.0625rem;
  --fs-small: .875rem;
  --fs-fine: .8125rem;
  --fs-eyebrow: .78rem;

  --tr: 170ms ease;
  --tr-slow: 230ms ease;
}

/* --------------------------------------------------------------------------
   2. Reset + base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 var(--s3);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -.012em; line-height: 1.25; }

p { margin: 0 0 var(--s3); max-width: var(--measure); }
ul, ol { max-width: var(--measure); }

a { color: var(--accent-ink); text-decoration-thickness: var(--rule); text-underline-offset: 3px; }
a:hover { color: var(--primary); }

strong { font-weight: 700; }

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

.skip-link {
  position: absolute;
  left: var(--s3);
  top: calc(var(--s1) * -12);
  z-index: 60;
  background: var(--primary);
  color: var(--text-light);
  padding: var(--s2) var(--s3);
  border-radius: var(--radius);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: top var(--tr);
}
.skip-link:focus { top: var(--s2); color: var(--text-light); }

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

.section { padding: var(--s7) 0; }
.section-tight { padding: var(--s6) 0; }
.section-alt { background: var(--bg-alt); }

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

/* eyebrow - the mono "docket" label used above every major heading */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 var(--s2);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.eyebrow::before {
  content: "";
  width: var(--s5);
  height: var(--rule);
  background: var(--accent);
  flex: none;
}
.eyebrow-light { color: var(--accent); }

.section-head { margin-bottom: var(--s5); }
.section-head p { color: var(--text-mid); font-size: var(--fs-lead); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text-mid);
}

/* tread-block divider - the shape-language signature */
.tread-rule {
  height: var(--s2);
  background:
    repeating-linear-gradient(108deg,
      var(--accent) 0 10px,
      var(--primary-dark) 10px 15px,
      var(--primary-light) 15px 20px,
      var(--primary-dark) 20px 30px);
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: .8rem 1.6rem;
  border: var(--rule) solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--tr), background-color var(--tr), color var(--tr), box-shadow var(--tr), border-color var(--tr);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--hairline-light);
}
.btn-outline:hover {
  color: var(--text-light);
  transform: translateY(-1px);
  border-color: var(--accent);
  background: var(--accent-glow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  color: var(--primary);
  transform: translateY(-1px);
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: var(--shadow-1);
}

.btn-sm { padding: .55rem 1.05rem; font-size: var(--fs-fine); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s5);
}

/* --------------------------------------------------------------------------
   4. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  background: var(--nav-veil);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: var(--rule) solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  min-height: var(--s6);
  padding-top: var(--s2);
  padding-bottom: var(--s2);
}

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

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

.wordmark-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-small);
  letter-spacing: -.015em;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.wordmark-text em {
  font-style: normal;
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: var(--fs-fine);
  letter-spacing: .04em;
  color: var(--text-mid);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: var(--s1);
  width: var(--s5);
  height: var(--s5);
  padding: 0;
  background: var(--surface);
  border: var(--rule) solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--tr);
}
.nav-toggle:hover { border-color: var(--primary); }
.nav-toggle-bar {
  display: block;
  width: var(--s4);
  height: calc(var(--rule) * 2);
  margin: 0 auto;
  background: var(--primary);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s5);
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: var(--s1) 0;
  color: var(--text-mid);
  font-size: var(--fs-small);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--tr);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(var(--rule) * 2);
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--primary); font-weight: 700; }
.nav-link.is-active::after { transform: scaleX(1); }

/* --------------------------------------------------------------------------
   5. Hero + page-hero bands
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 440px at 78% 10%, var(--accent-glow), transparent 62%),
    radial-gradient(720px 520px at 4% 96%, var(--dark-veil), transparent 72%),
    repeating-linear-gradient(90deg, var(--grid-line) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, var(--grid-line) 0 1px, transparent 1px 64px),
    linear-gradient(163deg, var(--primary) 0%, var(--primary-mid) 55%, var(--primary-dark) 100%);
  color: var(--text-light);
  overflow: hidden;
}

.hero .container { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--s6);
  align-items: center;
  min-height: 60vh;
  padding: var(--s7) 0;
}

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

.hero h1 {
  font-size: var(--fs-hero);
  letter-spacing: -.035em;
  line-height: 1.04;
  color: var(--text-light);
  max-width: 15ch;
}

.hero .lead { color: var(--text-light-soft); }

.hero-figure { display: block; }
.hero-figure svg { width: 100%; height: auto; }

.hero-note {
  margin: var(--s5) 0 0;
  padding-top: var(--s3);
  border-top: var(--rule) solid var(--hairline-light);
  font-family: var(--font-mono);
  font-size: var(--fs-fine);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light-soft);
  max-width: none;
}

.hero :focus-visible,
.band-dark :focus-visible,
.footer :focus-visible { outline-color: var(--accent); }

/* compact inner-page band, same background craft, shorter */
.page-hero .hero-inner {
  min-height: 0;
  display: block;
  padding: var(--s6) 0;
}
.page-hero h1 {
  font-size: var(--fs-h1);
  letter-spacing: -.028em;
  max-width: 20ch;
}
.page-hero .lead { max-width: 58ch; }

.crumb {
  font-family: var(--font-mono);
  font-size: var(--fs-fine);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light-soft);
  margin: var(--s3) 0 0;
}

/* --------------------------------------------------------------------------
   6. Prop strip (hairline-divided capability row)
   -------------------------------------------------------------------------- */
.props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--rule) solid var(--border);
  border-bottom: var(--rule) solid var(--border);
}

.prop {
  padding: var(--s5) var(--s4);
  border-left: var(--rule) solid var(--border);
}
.prop:first-child { border-left: 0; padding-left: 0; }

.prop-index {
  font-family: var(--font-mono);
  font-size: var(--fs-fine);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 var(--s2);
}
.prop h3 { margin-bottom: var(--s2); }
.prop p { margin: 0; color: var(--text-mid); font-size: var(--fs-small); }

/* --------------------------------------------------------------------------
   7. Service cards
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--s4);
}

.service-card {
  display: block;
  background: var(--surface);
  border: var(--rule) solid var(--border);
  border-radius: var(--radius);
  padding: var(--s4);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--border-strong);
}

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

.service-card h3 { margin-bottom: var(--s2); }
.service-card p { margin: 0; color: var(--text-mid); font-size: var(--fs-small); }

.card-tag {
  display: inline-block;
  margin-top: var(--s3);
  font-family: var(--font-mono);
  font-size: var(--fs-fine);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

/* --------------------------------------------------------------------------
   8. Full-bleed dark band + spec list
   -------------------------------------------------------------------------- */
.band-dark {
  background:
    radial-gradient(700px 360px at 88% 0%, var(--accent-glow-soft), transparent 66%),
    repeating-linear-gradient(0deg, var(--grid-line) 0 1px, transparent 1px 56px),
    linear-gradient(180deg, var(--primary-mid), var(--primary-dark));
  color: var(--text-light);
  padding: var(--s7) 0;
}
.band-dark h2 { color: var(--text-light); }
.band-dark p { color: var(--text-light-soft); }

.band-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--s6);
  align-items: start;
}

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
  border-top: var(--rule) solid var(--hairline-light);
}

.spec-row {
  display: grid;
  grid-template-columns: 13rem 1fr;
  gap: var(--s4);
  padding: var(--s3) 0;
  border-bottom: var(--rule) solid var(--hairline-lighter);
}

.spec-term {
  font-family: var(--font-mono);
  font-size: var(--fs-fine);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.spec-desc {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--text-light-soft);
  max-width: none;
}

/* light variant of the same spec list, used on services.html */
.spec-list-light { border-top-color: var(--border); }
.spec-list-light .spec-row { border-bottom-color: var(--border); }
.spec-list-light .spec-term { color: var(--accent-ink); }
.spec-list-light .spec-desc { color: var(--text-mid); }

/* --------------------------------------------------------------------------
   9. Split band (copy beside a CSS-drawn panel)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: var(--s6);
  align-items: center;
}
.split-reverse .split-copy { order: 2; }

.panel {
  position: relative;
  background: var(--surface);
  border: var(--rule) solid var(--border);
  border-radius: var(--radius);
  padding: var(--s5);
  box-shadow: var(--shadow-2);
}
.panel::before {
  content: "";
  position: absolute;
  inset: var(--s3) calc(var(--s3) * -1) calc(var(--s3) * -1) var(--s3);
  border: var(--rule) solid var(--primary-light);
  border-radius: var(--radius);
  z-index: -1;
}

.panel-title {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 var(--s3);
  padding-bottom: var(--s2);
  border-bottom: var(--rule) solid var(--border);
}

.panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
}
.panel-list li {
  display: flex;
  gap: var(--s2);
  padding: var(--s2) 0;
  border-bottom: var(--rule) solid var(--border);
  font-size: var(--fs-small);
  color: var(--text-mid);
}
.panel-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.panel-list li::before {
  content: "";
  flex: none;
  width: var(--s2);
  height: var(--s2);
  margin-top: var(--s2);
  background: var(--accent);
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   10. Credentials strip (factual only)
   -------------------------------------------------------------------------- */
.creds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--rule) solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.cred {
  padding: var(--s4);
  border-left: var(--rule) solid var(--border);
}
.cred:first-child { border-left: 0; }

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

.cred-value {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   11. CTA strip
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--accent-soft);
  border-top: var(--rule) solid var(--border);
  border-bottom: var(--rule) solid var(--border);
  padding: var(--s6) 0;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}
.cta-inner h2 { margin-bottom: var(--s2); max-width: 20ch; }
.cta-inner p { margin: 0; color: var(--text-mid); max-width: 48ch; }
.cta-inner .btn-row { margin-top: 0; }

/* --------------------------------------------------------------------------
   12. Contact page
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--s6);
  align-items: start;
}

.form { margin: 0; }

.field { margin-bottom: var(--s4); }
.field label {
  display: block;
  margin-bottom: var(--s1);
  font-family: var(--font-mono);
  font-size: var(--fs-fine);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: var(--s2) var(--s3);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-dark);
  background: var(--surface);
  border: var(--rule) solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.field textarea { min-height: var(--s7); resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: var(--shadow-focus);
  outline: none;
}
.field-hint {
  margin: var(--s1) 0 0;
  font-size: var(--fs-fine);
  color: var(--text-mid);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
}
.contact-list li {
  padding: var(--s3) 0;
  border-bottom: var(--rule) solid var(--border);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list a { font-weight: 600; word-break: break-word; }

.contact-term {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-fine);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: var(--s1);
}
.contact-value {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-dark);
  word-break: break-word;
}

/* --------------------------------------------------------------------------
   13. Legal / long-form prose
   -------------------------------------------------------------------------- */
.prose { max-width: var(--measure); }
.prose h2 {
  font-size: var(--fs-h3);
  font-family: var(--font-display);
  margin-top: var(--s6);
  padding-top: var(--s3);
  border-top: var(--rule) solid var(--border);
}
.prose h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.prose h3 {
  font-size: var(--fs-body);
  margin-top: var(--s4);
  margin-bottom: var(--s1);
}
.prose ul { padding-left: var(--s4); margin: 0 0 var(--s3); }
.prose li { margin-bottom: var(--s1); color: var(--text-mid); }
.prose p { color: var(--text-mid); }

.legal-meta {
  font-family: var(--font-mono);
  font-size: var(--fs-fine);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: var(--s3) 0;
  margin: 0 0 var(--s5);
  border-top: var(--rule) solid var(--border);
  border-bottom: var(--rule) solid var(--border);
  max-width: none;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--primary-dark);
  color: var(--text-light-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: var(--s5);
  padding-top: var(--s6);
  padding-bottom: var(--s6);
  border-top: var(--rule) solid var(--hairline-lighter);
}

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

.footer-brand .wordmark-mark { margin-bottom: var(--s3); }

.footer-blurb {
  font-size: var(--fs-small);
  color: var(--text-light-soft);
  margin-bottom: var(--s3);
  max-width: 40ch;
}

.footer-reg {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-fine);
  letter-spacing: .08em;
  color: var(--text-light);
}

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

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
}
.footer-list li { margin-bottom: var(--s2); }
.footer-list a,
.footer-contact a {
  color: var(--text-light-soft);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: color var(--tr);
}
.footer-list a:hover,
.footer-contact a:hover { color: var(--accent); text-decoration: underline; }

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
}
.footer-contact li { margin-bottom: var(--s2); font-size: var(--fs-small); word-break: break-word; }

.footer-bar {
  background: var(--primary-mid);
  border-top: var(--rule) solid var(--hairline-lighter);
}

.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding-top: var(--s3);
  padding-bottom: var(--s3);
}
.footer-bar-inner p { margin: 0; font-size: var(--fs-fine); color: var(--text-light-soft); max-width: none; }
.footer-bar-links { display: flex; gap: var(--s4); }
.footer-bar-links a { color: var(--text-light-soft); text-decoration: none; }
.footer-bar-links a:hover { color: var(--accent); text-decoration: underline; }

/* --------------------------------------------------------------------------
   15. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .band-grid,
  .split,
  .contact-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .split-reverse .split-copy { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s5); }
  .creds { grid-template-columns: 1fr 1fr; }
  .cred:nth-child(3) { border-left: 0; }
  .cred:nth-child(n+3) { border-top: var(--rule) solid var(--border); }
  .hero-figure { max-width: 26rem; }
}

@media (max-width: 768px) {
  .section { padding: var(--s6) 0; }
  .section-tight { padding: var(--s5) 0; }

  .nav-toggle { display: 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-bottom: var(--rule) solid var(--border);
    box-shadow: var(--shadow-2);
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links li { border-bottom: var(--rule) solid var(--border); }
  .nav-link { display: block; padding: var(--s3) 0; font-size: var(--fs-body); }
  .nav-link::after { display: none; }
  .nav-link.is-active { color: var(--accent-ink); }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--s5);
    padding: var(--s6) 0;
    min-height: 0;
  }
  .hero-copy { max-width: none; }
  .hero h1 { max-width: none; }
  .hero-figure { max-width: 22rem; margin: 0 auto; }

  .props { grid-template-columns: 1fr; }
  .prop { border-left: 0; padding-left: 0; padding-right: 0; border-top: var(--rule) solid var(--border); }
  .prop:first-child { border-top: 0; padding-top: 0; }

  .band-dark { padding: var(--s6) 0; }
  .spec-row { grid-template-columns: 1fr; gap: var(--s1); }

  .creds { grid-template-columns: 1fr; }
  .cred { border-left: 0; border-top: var(--rule) solid var(--border); }
  .cred:first-child { border-top: 0; }

  .cta-band { padding: var(--s5) 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; padding-top: var(--s5); padding-bottom: var(--s5); }
  .footer-bar-inner { flex-direction: column; align-items: flex-start; }

  .panel { padding: var(--s4); }
  .panel::before { display: none; }
}

@media (max-width: 420px) {
  .btn { width: 100%; }
  .btn-sm { width: auto; }
  .btn-row { gap: var(--s2); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .btn:hover,
  .service-card:hover { transform: none; }
}
