/* =====================================================================
   Sasta Spares — design system
   ---------------------------------------------------------------------
   Palette taken from the printed identity: deep navy, logo blue, the
   check-mark green, white, and a light grey-blue ground.

   The recurring device is the "spec strip" (.spec): a monospaced,
   dot-separated data row that reads like the identification label
   stamped on an OEM part. It is the one bold move on the page — every
   other element stays quiet so it keeps its force.
   ===================================================================== */

/* ---------------------------------------------------------------- */
/* 1. Tokens                                                         */
/* ---------------------------------------------------------------- */

:root {
  /* Colour */
  --navy-900: #0b2447;
  --navy-800: #0f2e58;
  --navy-700: #143a73;
  --blue-600: #1e56b3;
  --blue-500: #2c6bd1;
  --blue-050: #edf3fc;
  --green-700: #3f8a22;
  --green-600: #4c9e2a;
  --green-500: #5cb531;
  --green-050: #eff8e9;
  --white: #ffffff;
  --mist: #f4f7fa;
  --mist-2: #e9eff6;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --muted: #5a6b85;
  --muted-light: #93a3ba;

  /* Type */
  --font-display: 'Archivo', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --fs-hero: clamp(2.15rem, 1.35rem + 3.4vw, 3.85rem);
  --fs-h2: clamp(1.65rem, 1.2rem + 1.9vw, 2.55rem);
  --fs-h3: clamp(1.1rem, 1.03rem + 0.3vw, 1.3rem);
  --fs-lead: clamp(1.05rem, 1rem + 0.4vw, 1.24rem);
  --fs-body: 1.0125rem;
  --fs-sm: 0.9rem;
  --fs-xs: 0.78rem;

  /* Space */
  --gap: 24px;
  --pad: clamp(20px, 4vw, 32px);
  --section-y: clamp(56px, 6.5vw, 104px);

  /* Form */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(11, 36, 71, 0.05);
  --shadow: 0 2px 4px rgba(11, 36, 71, 0.04), 0 12px 28px -14px rgba(11, 36, 71, 0.22);
  --shadow-lg: 0 4px 8px rgba(11, 36, 71, 0.05), 0 28px 56px -24px rgba(11, 36, 71, 0.3);

  --wrap: 1180px;
  --header-h: 72px;
}

/* ---------------------------------------------------------------- */
/* 2. Reset & base                                                   */
/* ---------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--navy-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.14;
  margin: 0 0 0.5em;
  color: var(--navy-900);
  text-wrap: balance;
}

p {
  margin: 0 0 1.05em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--blue-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy-700);
}

ul,
ol {
  margin: 0 0 1.05em;
  padding-left: 1.15em;
}

li {
  margin-bottom: 0.35em;
}

strong {
  font-weight: 600;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
}

.skip:focus {
  left: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------- */
/* 3. Layout primitives                                              */
/* ---------------------------------------------------------------- */

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

.wrap--narrow {
  max-width: 780px;
}

.wrap--mid {
  max-width: 960px;
}

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

.section--tight {
  padding-block: clamp(40px, 4.5vw, 68px);
}

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

.section--navy {
  background: var(--navy-900);
  color: #dce6f4;
}

.section--navy h2,
.section--navy h3 {
  color: #fff;
}

.section--line {
  border-top: 1px solid var(--line);
}

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

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}

/* ---------------------------------------------------------------- */
/* 4. The spec strip — signature device                              */
/* ---------------------------------------------------------------- */

.spec {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  line-height: 1.4;
}

.spec--sm {
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  color: var(--muted);
}

.spec--green {
  color: var(--green-700);
}

.spec--onnavy {
  color: #7fb0f0;
}

/* A framed version, used where the strip stands alone as a label */
.spec-plate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--green-500);
  border-radius: 4px;
  background: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy-700);
}

.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 14px;
}

.eyebrow--onnavy {
  color: var(--green-500);
}

/* ---------------------------------------------------------------- */
/* 5. Buttons                                                        */
/* ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease,
    color 0.16s ease, transform 0.16s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn svg {
  width: 19px;
  height: 19px;
  flex: none;
}

.btn--primary {
  background: var(--navy-900);
  color: #fff;
}

.btn--primary:hover {
  background: var(--navy-700);
  color: #fff;
}

.btn--accent {
  background: var(--green-600);
  color: #fff;
}

.btn--accent:hover {
  background: var(--green-700);
  color: #fff;
}

.btn--blue {
  background: var(--blue-600);
  color: #fff;
}

.btn--blue:hover {
  background: var(--navy-700);
  color: #fff;
}

.btn--ghost {
  background: var(--white);
  border-color: var(--line-strong);
  color: var(--navy-900);
}

.btn--ghost:hover {
  border-color: var(--navy-700);
  background: var(--white);
  color: var(--navy-900);
}

.btn--onnavy {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.btn--onnavy:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* WhatsApp brand green, so the option is unmistakable rather than
   looking like a secondary outline button. */
.btn--whatsapp {
  background: #25d366;
  color: #06331a;
  font-weight: 700;
}

.btn--whatsapp:hover {
  background: #1eb956;
  color: #06331a;
}

.btn--sm {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 0.92rem;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn-row--center {
  justify-content: center;
}

/* ---------------------------------------------------------------- */
/* 6. Header                                                         */
/* ---------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
  padding-block: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  text-decoration: none;
  margin-right: auto;
}

.brand__logo {
  height: 46px;
  width: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 11px;
  border-radius: 7px;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--navy-800);
  text-decoration: none;
  white-space: nowrap;
}

.nav__link:hover {
  background: var(--mist);
  color: var(--navy-900);
}

.nav__link.is-active {
  color: var(--blue-600);
  font-weight: 600;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.header__cta {
  display: none;
}

.header__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--navy-800);
}

.header__call svg {
  width: 20px;
  height: 20px;
}

.header__call:hover {
  border-color: var(--navy-700);
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
}

.burger svg {
  width: 22px;
  height: 22px;
}

/* Mobile panel */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--white);
  padding: 16px var(--pad) 32px;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.mnav.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mnav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  margin-bottom: 12px;
}

.mnav__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.mnav__link {
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--navy-900);
  text-decoration: none;
}

.mnav__link.is-active {
  color: var(--blue-600);
}

.mnav__actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.mnav__meta {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm);
  color: var(--muted);
}

@media (min-width: 1040px) {
  .nav {
    display: flex;
  }
  .header__cta {
    display: inline-flex;
  }
  .burger,
  .header__call {
    display: none;
  }
}

body.is-locked {
  overflow: hidden;
}

/* ---------------------------------------------------------------- */
/* 7. Hero                                                           */
/* ---------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* Faint engineering-drawing grid — the only decorative texture on the site */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(30, 86, 179, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(30, 86, 179, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(120% 90% at 78% 20%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(
    120% 90% at 78% 20%,
    #000 0%,
    transparent 72%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  gap: clamp(36px, 5vw, 60px);
  padding-block: clamp(44px, 6vw, 88px);
  align-items: center;
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 800;
  letter-spacing: -0.032em;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--blue-600);
}

.hero__lead {
  font-size: var(--fs-lead);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 26px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 7px 13px 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--navy-800);
}

.chip__tick {
  display: inline-flex;
  color: var(--green-600);
}

.chip__tick svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.4;
}

.hero__note {
  margin-top: 22px;
  font-size: var(--fs-sm);
  color: var(--muted);
}

@media (min-width: 940px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* ---------------------------------------------------------------- */
/* 8. Quick find card (hero) — styled as a part ID tag               */
/* ---------------------------------------------------------------- */

.tag {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.tag__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 22px;
  background: var(--navy-900);
  color: #fff;
}

.tag__head .spec {
  color: #8fbcf5;
}

.tag__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-500);
}

.tag__badge svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.6;
}

.tag__body {
  padding: 22px;
}

.tag__title {
  font-size: 1.22rem;
  margin-bottom: 4px;
}

.tag__sub {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: 20px;
}

.tag__fields {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.tag__foot {
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  background: var(--mist);
  font-size: var(--fs-xs);
  color: var(--muted);
  text-align: center;
}

@media (min-width: 480px) {
  .tag__fields {
    grid-template-columns: 1fr 1fr;
  }
  .tag__fields .field--full {
    grid-column: 1 / -1;
  }
}

/* ---------------------------------------------------------------- */
/* 9. Forms                                                          */
/* ---------------------------------------------------------------- */

.field {
  display: block;
}

.field__label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.field__label .opt {
  font-weight: 400;
  color: var(--muted-light);
}

.field__hint {
  margin: 6px 0 0;
  font-size: var(--fs-xs);
  color: var(--muted);
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px; /* 16px keeps iOS from zooming on focus */
  color: var(--navy-900);
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
}

.input::placeholder,
.textarea::placeholder {
  color: var(--muted-light);
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(44, 107, 209, 0.16);
}

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6b85' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.textarea {
  min-height: 118px;
  resize: vertical;
  line-height: 1.55;
}

.form {
  display: grid;
  gap: 26px;
}

.fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin: 0;
  background: var(--white);
}

.fieldset__legend {
  padding: 0 8px;
  margin-left: -8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.fieldset__note {
  margin: 0 0 18px;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.fields {
  display: grid;
  gap: 16px;
}

@media (min-width: 620px) {
  .fields--2 {
    grid-template-columns: 1fr 1fr;
  }
  .fields--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .field--full {
    grid-column: 1 / -1;
  }
}

/* The WhatsApp-first option, shown above every form so it is visible
   without scrolling past a wall of fields. */
.wa-first {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid #bfe8cd;
  border-left: 3px solid #25d366;
  border-radius: var(--radius);
  background: #f2fbf5;
}

.wa-first__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  flex: none;
}

.wa-first__icon svg {
  width: 26px;
  height: 26px;
}

.wa-first__title {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.wa-first__body {
  font-size: var(--fs-sm);
  color: #2c4a37;
  margin: 0;
}

/* Full width while the block is stacked, so the label never has to be
   wider than a narrow phone. Only pin it to one line once the block goes
   three-across and there is room for it. */
.wa-first .btn {
  width: 100%;
}

@media (min-width: 620px) {
  .wa-first {
    grid-template-columns: 46px 1fr auto;
    gap: 18px;
  }
  .wa-first .btn {
    width: auto;
    white-space: nowrap;
  }
}

/* Separator between the two routes */
.form__or {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form__or::before,
.form__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Reassurance callout inside the enquiry form */
.nonum {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px 17px;
  margin-bottom: 18px;
  border: 1px solid #cfe6bf;
  border-left: 3px solid var(--green-500);
  border-radius: var(--radius-sm);
  background: var(--green-050);
  font-size: var(--fs-sm);
  color: #274718;
}

.nonum svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--green-700);
  margin-top: 2px;
}

/* File upload */
.drop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 26px 20px;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--mist);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.14s ease, background-color 0.14s ease;
}

.drop:hover,
.drop.is-over {
  border-color: var(--blue-500);
  background: var(--blue-050);
}

.drop input[type='file'] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.drop__icon {
  color: var(--blue-600);
}

.drop__icon svg {
  width: 26px;
  height: 26px;
}

.drop__title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
}

.drop__hint {
  font-size: var(--fs-xs);
  color: var(--muted);
  max-width: 42ch;
}

.drop__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.drop__list:empty {
  margin: 0;
}

.drop__list li {
  margin: 0;
  padding: 5px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--navy-800);
}

.shots {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.shots li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.shots svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 4px;
  color: var(--green-600);
  stroke-width: 2.4;
}

.form__submit {
  display: grid;
  gap: 12px;
}

@media (min-width: 620px) {
  .form__submit {
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
  }
}

.form__legal {
  font-size: var(--fs-xs);
  color: var(--muted);
}

.form__status {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
}

.form__status[hidden] {
  display: none;
}

.form__status--ok {
  border: 1px solid #cfe6bf;
  background: var(--green-050);
  color: #274718;
}

.form__status--err {
  border: 1px solid #f0cfcf;
  background: #fdf2f2;
  color: #7a2222;
}

.form__status--busy {
  border: 1px solid var(--line-strong);
  background: var(--mist);
  color: var(--navy-800);
}

/* ---------------------------------------------------------------- */
/* 10. Section headers                                               */
/* ---------------------------------------------------------------- */

.head {
  max-width: 62ch;
  margin-bottom: clamp(30px, 3.6vw, 52px);
}

.head--center {
  margin-inline: auto;
  text-align: center;
}

.head__title {
  font-size: var(--fs-h2);
  margin-bottom: 14px;
}

.head__lead {
  font-size: var(--fs-lead);
  color: var(--muted);
  margin: 0;
}

.section--navy .head__lead {
  color: #a9c1e0;
}

/* ---------------------------------------------------------------- */
/* 11. Promise cards                                                 */
/* ---------------------------------------------------------------- */

.promise {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.promise__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--blue-050);
  color: var(--blue-600);
}

.promise__icon svg {
  width: 24px;
  height: 24px;
}

.promise__title {
  font-size: var(--fs-h3);
  margin-bottom: 8px;
}

.promise__body {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
}

/* ---------------------------------------------------------------- */
/* 12. Steps                                                         */
/* ---------------------------------------------------------------- */

.steps {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  margin: 0;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step__n {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--green-600);
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.step__title {
  font-size: var(--fs-h3);
  margin-bottom: 8px;
}

.step__text p {
  color: var(--muted);
  margin-bottom: 8px;
}

.step__detail {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--navy-700);
  margin: 0;
}

.section--navy .step {
  border-color: rgba(255, 255, 255, 0.14);
}

.section--navy .step__text p {
  color: #a9c1e0;
}

.section--navy .step__detail {
  color: #7fb0f0;
}

.section--navy .step__n {
  color: var(--green-500);
}

@media (min-width: 860px) {
  .steps--row {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .steps--row .step {
    display: block;
    padding: 0 24px 0 0;
    border-top: 2px solid var(--line);
    border-bottom: 0;
    padding-top: 20px;
  }
  .steps--row .step:last-child {
    border-bottom: 0;
  }
  .steps--row .step__n {
    display: block;
    margin-bottom: 14px;
  }
  .section--navy .steps--row .step {
    border-color: rgba(255, 255, 255, 0.18);
  }
}

/* ---------------------------------------------------------------- */
/* 13. Category cards                                                */
/* ---------------------------------------------------------------- */

.cat {
  display: block;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    transform 0.16s ease;
}

.cat--link:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}

.cat__icon {
  display: inline-flex;
  color: var(--navy-700);
  margin-bottom: 16px;
}

.cat__icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.3;
}

.cat__title {
  font-size: var(--fs-h3);
  margin: 6px 0 8px;
}

.cat__intro {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: 14px;
}

.cat__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.cat__list li {
  font-size: var(--fs-sm);
  color: var(--navy-800);
  margin-bottom: 4px;
}

.cat__more {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--blue-600);
  text-transform: uppercase;
}

/* Expanded version on the Parts page */
.catdetail {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.catdetail__head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.catdetail__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-050);
  color: var(--blue-600);
}

.catdetail__icon svg {
  width: 27px;
  height: 27px;
}

.catdetail__title {
  font-size: 1.5rem;
  margin: 6px 0 8px;
}

.catdetail__intro {
  color: var(--muted);
  margin: 0;
  max-width: 68ch;
}

.catdetail__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 8px 20px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.catdetail__list li {
  position: relative;
  padding-left: 18px;
  font-size: var(--fs-sm);
  color: var(--navy-800);
  margin: 0;
}

.catdetail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 1.5px;
  background: var(--green-500);
}

.catdetail__cta {
  margin: 0;
}

/* ---------------------------------------------------------------- */
/* 14. Brands                                                        */
/* ---------------------------------------------------------------- */

.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand {
  margin: 0;
  padding: 11px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
}

/* ---------------------------------------------------------------- */
/* 15. Prose blocks                                                  */
/* ---------------------------------------------------------------- */

.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.85rem);
  margin-top: 2em;
}

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

.prose h3 {
  font-size: var(--fs-h3);
  margin-top: 1.7em;
}

.prose ul,
.prose ol {
  padding-left: 1.25em;
}

.prose li {
  margin-bottom: 0.5em;
}

.prose blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--green-500);
  color: var(--navy-800);
  font-size: 1.06rem;
}

.prose .lead {
  font-size: var(--fs-lead);
  color: var(--muted);
}

.callout {
  padding: 20px 22px;
  margin: 1.8em 0;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue-600);
  border-radius: var(--radius-sm);
  background: var(--mist);
}

.callout__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 8px;
  display: block;
}

.callout p:last-child {
  margin-bottom: 0;
}

.callout--warn {
  border-left-color: var(--green-600);
}

.callout--warn .callout__title {
  color: var(--green-700);
}

/* Ticked / crossed lists */
.list-check,
.list-cross {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
}

.list-check li,
.list-cross li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.6em;
}

.list-check li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.52em;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--green-600);
  border-bottom: 2px solid var(--green-600);
  transform: rotate(-45deg);
}

.list-cross li::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 0.62em;
  width: 11px;
  height: 2px;
  background: var(--muted-light);
}

/* ---------------------------------------------------------------- */
/* 16. Warranty conditions                                           */
/* ---------------------------------------------------------------- */

.conds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.cond {
  margin: 0;
  padding: 24px 22px;
  background: var(--white);
}

.cond__n {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--green-600);
  margin-bottom: 10px;
}

.cond__title {
  font-size: 1.05rem;
  margin-bottom: 7px;
}

.cond p {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
}

/* ---------------------------------------------------------------- */
/* 17. FAQ                                                           */
/* ---------------------------------------------------------------- */

.faqs {
  border-top: 1px solid var(--line);
}

.faq {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: '';
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--blue-600);
  border-bottom: 2px solid var(--blue-600);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.18s ease;
}

.faq[open] .faq__q::after {
  transform: rotate(-135deg) translateY(-3px);
}

.faq__a {
  padding-bottom: 22px;
  color: var(--muted);
  max-width: 78ch;
}

/* ---------------------------------------------------------------- */
/* 18. Guides                                                        */
/* ---------------------------------------------------------------- */

.guides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: var(--gap);
}

.guide {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    transform 0.16s ease;
}

.guide:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}

.guide__title {
  font-size: 1.14rem;
  margin: 10px 0 8px;
}

.guide__excerpt {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}

.guide__more {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue-600);
}

/* ---------------------------------------------------------------- */
/* 19. Vehicle cards & pages                                         */
/* ---------------------------------------------------------------- */

.vcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 14px;
}

.vcard {
  display: block;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.vcard:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow);
  color: inherit;
}

.vcard__title {
  font-size: 1.24rem;
  margin: 6px 0 12px;
}

.vcard__more {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-600);
}

.gens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.gen {
  margin: 0;
  padding: 20px;
  background: var(--white);
}

.gen__label {
  font-size: 1rem;
  margin-bottom: 6px;
}

.gen__note {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
}

.vparts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vpart {
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid var(--line-strong);
}

.vpart__name {
  font-size: 1.02rem;
  margin-bottom: 5px;
}

.vpart__note {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
}

/* Fitment table on part pages */
.fit {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.fit__row {
  display: grid;
  gap: 4px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.fit__row:last-child {
  border-bottom: 0;
}

.fit__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.fit__value {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--navy-900);
}

@media (min-width: 700px) {
  .fit__row {
    grid-template-columns: 220px 1fr;
    gap: 20px;
    align-items: baseline;
  }
  .fit__label {
    padding-top: 2px;
  }
}

.tick {
  display: inline-flex;
  color: var(--green-600);
  margin-right: 10px;
}

.tick svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.testlist {
  list-style: none;
  margin: 0 0 1.2em;
  padding: 0;
}

.testlist li {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 0.7em;
  font-size: var(--fs-sm);
}

.testlist .tick {
  margin-top: 3px;
}

.related {
  list-style: none;
  margin: 0;
  padding: 0;
}

.related li {
  border-bottom: 1px solid var(--line);
}

.related a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
}

/* ---------------------------------------------------------------- */
/* 20. Side-by-side feature block                                    */
/* ---------------------------------------------------------------- */

.split {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--wide-left {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .split--sticky > .split__aside {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}

.panel {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.panel--mist {
  background: var(--mist);
}

.panel--navy {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #cddcf0;
}

.panel--navy h3 {
  color: #fff;
}

.panel__title {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}

/* Contact detail rows — mirrors the visiting card */
.details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.details li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}

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

.details__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-050);
  color: var(--green-700);
}

.details__icon svg {
  width: 20px;
  height: 20px;
}

.details__icon--blue {
  background: var(--blue-050);
  color: var(--blue-600);
}

.details__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.details__value {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy-900);
  text-decoration: none;
  overflow-wrap: anywhere;
}

a.details__value:hover {
  color: var(--blue-600);
}

/* ---------------------------------------------------------------- */
/* 21. CTA band                                                      */
/* ---------------------------------------------------------------- */

.band {
  background: var(--navy-900);
  color: #cddcf0;
}

.band__inner {
  display: grid;
  gap: 26px;
  padding-block: clamp(44px, 5vw, 72px);
  align-items: center;
}

.band__title {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 10px;
}

.band__lead {
  color: #a9c1e0;
  margin: 0;
  max-width: 52ch;
}

.band .btn-row {
  margin-top: 0;
}

@media (min-width: 900px) {
  .band__inner {
    grid-template-columns: 1.2fr auto;
    gap: 40px;
  }
}

/* ---------------------------------------------------------------- */
/* 22. Testimonials                                                  */
/* ---------------------------------------------------------------- */

.placeholder-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px 18px;
  margin-bottom: 26px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--mist);
  font-size: var(--fs-sm);
  color: var(--muted);
}

.quote {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.quote__text {
  color: var(--navy-800);
  margin-bottom: 16px;
}

.quote__meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.quote--empty .quote__text {
  color: var(--muted-light);
  font-style: italic;
}

/* ---------------------------------------------------------------- */
/* 23. Breadcrumbs                                                   */
/* ---------------------------------------------------------------- */

.crumbs {
  padding-top: 20px;
}

.crumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--fs-xs);
  color: var(--muted);
}

.crumb {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.crumb:not(:last-child)::after {
  content: '/';
  color: var(--line-strong);
}

.crumb a {
  color: var(--muted);
  text-decoration: none;
}

.crumb a:hover {
  color: var(--blue-600);
  text-decoration: underline;
}

/* ---------------------------------------------------------------- */
/* 24. Page header (interior pages)                                  */
/* ---------------------------------------------------------------- */

.phead {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.phead__inner {
  padding-block: clamp(30px, 4vw, 56px);
  max-width: 74ch;
}

.phead__title {
  font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.phead__lead {
  font-size: var(--fs-lead);
  color: var(--muted);
  margin: 0;
}

.phead__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------------------------------------------------------- */
/* 25. Footer                                                        */
/* ---------------------------------------------------------------- */

.footer {
  background: var(--navy-900);
  color: #9db5d4;
  font-size: var(--fs-sm);
}

.footer__top {
  display: grid;
  gap: 34px;
  padding-block: clamp(44px, 5vw, 72px);
}

.footer__logo {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
}

.footer__blurb {
  max-width: 34ch;
  color: #9db5d4;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 16px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__list a {
  color: #cddcf0;
  text-decoration: none;
}

.footer__list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__contact li {
  margin-bottom: 14px;
}

.footer__contact a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

.footer__contact a:hover {
  color: var(--green-500);
}

.footer__contact .lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #7b93b3;
  margin-bottom: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: #7b93b3;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__legal li {
  margin: 0;
}

.footer__legal a {
  color: #9db5d4;
  text-decoration: none;
}

.footer__legal a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 760px) {
  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 32px;
  }
}

/* ---------------------------------------------------------------- */
/* 26. Floating WhatsApp                                             */
/* ---------------------------------------------------------------- */

.wafab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px 13px 15px;
  border-radius: 999px;
  background: #25d366;
  color: #06331a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px -6px rgba(6, 51, 26, 0.45);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.wafab:hover {
  color: #06331a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(6, 51, 26, 0.5);
}

.wafab svg {
  width: 24px;
  height: 24px;
  flex: none;
}

@media (max-width: 560px) {
  .wafab__label {
    display: none;
  }
  .wafab {
    padding: 15px;
  }
}

/* ---------------------------------------------------------------- */
/* 27. Touch ergonomics                                              */
/* ---------------------------------------------------------------- */

/* Phone and email in a details row are primary actions, not links
   embedded in a sentence, so they get a full-height tap target. The
   negative margin claws back most of the added height so the rows keep
   their rhythm. */
a.details__value {
  display: inline-block;
  padding-block: 12px;
  margin-block: -7px;
}

/* The monospaced micro-labels sit between 10px and 11.5px, which is
   fine on a desktop at reading distance and too small on a phone held
   in one hand. Step every one of them above 12px on small screens. */
@media (max-width: 700px) {
  .spec,
  .spec-plate,
  .eyebrow,
  .fieldset__legend,
  .callout__title,
  .fit__label,
  .cat__more,
  .step__detail,
  .cond__n,
  .quote__meta,
  .tag__badge,
  .drop__list li,
  .footer__col-title,
  .phead__meta {
    font-size: 0.78rem;
  }

  .spec--sm,
  .details__label,
  .footer__contact .lbl {
    font-size: 0.76rem;
  }
}

/* Narrow phones — 320px covers the iPhone SE (1st gen) and the older
   Android handsets still in wide use in India. The header lockup is the
   only thing that does not fit at that width, so it gets tightened
   rather than the whole layout getting another breakpoint. */
@media (max-width: 420px) {
  .header__inner {
    gap: 10px;
  }
  .header__actions {
    gap: 8px;
  }
  /* Drive the logo from width rather than height here. Sizing by height
     leaves the replaced element wider than its artwork, and `flex: none`
     stops the brand giving that space back, which pushes the call and menu
     buttons off a 320px screen. */
  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }
  .brand__logo {
    width: 140px;
    height: auto;
    max-width: 100%;
  }
}

/* ---------------------------------------------------------------- */
/* 28. Motion preferences                                            */
/* ---------------------------------------------------------------- */

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