/* ==========================================================================
   JENTRIX AUTO GARAGE
   Visual system derived from the workshop itself: cold rolled steel, the blue
   gate, safety orange, tyre-black. Signage-weight display type echoes the
   garage's own hand-lettered board; monospace carries anything a mechanic
   would read as data (years, hours, phone numbers).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette — sampled from the garage's own photographs */
  --ink:        #14181D;  /* tyre black, faint blue cast */
  --ink-soft:   #1D232B;  /* raised surface on dark bands */
  --steel:      #2A3340;  /* corrugated iron in shadow */
  --steel-line: #39434f;  /* hairline on dark */
  --paper:      #F5F7F9;  /* fresh paint, clean band */
  --white:      #FFFFFF;
  --signal:        #FF6B00;  /* hi-vis / hazard orange — graphics + dark bands */
  --signal-bright: #FF7A1A;  /* hover state; brightens rather than dims */
  --signal-ink:    #C2410C;  /* small orange TEXT on light bands (WCAG 4.8:1) */
  --gate:          #1F4E8C;  /* the blue of their steel gate */

  --text-on-dark:      #EEF1F4;
  --text-on-dark-mute: #A3ADBA;
  --text-on-light:     #1B2027;
  --text-on-light-mute:#59626E;

  /* Type */
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  "Helvetica Neue", Arial, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  "Helvetica Neue", Arial, sans-serif;
  --font-mono:    ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
                  "Liberation Mono", monospace;

  /* Fluid type scale */
  --step--2: clamp(0.72rem, 0.70rem + 0.10vw, 0.78rem);
  --step--1: clamp(0.84rem, 0.81rem + 0.14vw, 0.92rem);
  --step-0:  clamp(1rem,    0.97rem + 0.18vw, 1.09rem);
  --step-1:  clamp(1.18rem, 1.10rem + 0.42vw, 1.44rem);
  --step-2:  clamp(1.45rem, 1.28rem + 0.85vw, 2.05rem);
  --step-3:  clamp(1.85rem, 1.48rem + 1.85vw, 2.95rem);
  --step-4:  clamp(2.30rem, 1.70rem + 3.00vw, 4.10rem);

  /* Space & shape */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --band:   clamp(4rem, 9vw, 7.5rem);
  --maxw:   1200px;
  --prose:  62ch;
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 16px;

  --shadow-card: 0 1px 2px rgba(20,24,29,.06), 0 8px 24px rgba(20,24,29,.08);
  --shadow-lift: 0 4px 10px rgba(20,24,29,.10), 0 18px 44px rgba(20,24,29,.16);

  --header-h: 68px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

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

body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text-on-light);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

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

a { color: inherit; }

/* Anchor targets clear the sticky header */
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* Keyboard focus — visible everywhere, never suppressed */
:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 3000;
  background: var(--signal);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 8px; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band { padding-block: var(--band); }

.band--dark  { background: var(--ink);  color: var(--text-on-dark); }
.band--steel { background: var(--steel); color: var(--text-on-dark); }
.band--light { background: var(--paper); color: var(--text-on-light); }

.band--dark h2, .band--dark h3,
.band--steel h2, .band--steel h3 { color: var(--white); }

/* Hazard rule — workshop floor marking. Used sparingly as a band divider. */
.rule-hazard {
  height: 6px;
  border: 0;
  margin: 0;
  background: repeating-linear-gradient(
    135deg,
    var(--signal) 0 14px,
    var(--ink) 14px 28px
  );
}

/* Section heading block */
.section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .16em;
  text-transform: uppercase;
  /* Small orange text needs the darker mix to clear 4.5:1 on light bands */
  color: var(--signal-ink);
  margin: 0 0 .9rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
/* On dark bands the bright signal already clears contrast */
.band--dark .eyebrow,
.band--steel .eyebrow { color: var(--signal); }

.section-title {
  font-size: var(--step-3);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.section-lede {
  margin-top: 1rem;
  max-width: var(--prose);
  font-size: var(--step-1);
  color: var(--text-on-light-mute);
  line-height: 1.5;
}
.band--dark .section-lede,
.band--steel .section-lede { color: var(--text-on-dark-mute); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .95em 1.6em;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              color .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Ink on orange, the way real hazard signage does it — and it clears 6.2:1
   where white on orange only managed 2.9:1. */
.btn--signal { background: var(--signal); color: var(--ink); }
.btn--signal:hover { background: var(--signal-bright); color: var(--ink); }

/* WhatsApp green darkened: white on #1FA855 was only 3.09:1, and this text is
   small enough to need AA 4.5. #178643 clears it at 4.64 and still reads green. */
.btn--whatsapp { background: #178643; color: var(--white); }
.btn--whatsapp:hover { background: #127034; }

.btn--ghost-light {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: var(--white); color: var(--ink); }

.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--steel); }

.btn svg { width: 1.15em; height: 1.15em; flex: none; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(20,24,29,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 2rem);
}

.brand { display: flex; align-items: center; flex: none; }
.brand img {
  height: 40px;
  width: auto;
  border-radius: var(--r-sm);
  background: var(--white);
  padding: 3px 5px;
}

.nav { margin-left: auto; }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2.2vw, 2rem);
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-on-dark);
  padding: .4em 0;
  border-bottom: 2px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--signal); border-bottom-color: var(--signal); }

.header-cta { flex: none; padding: .7em 1.15em; }
.header-cta .header-cta-text { display: inline; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(480px, 82vh, 780px);
  overflow: hidden;
  background: var(--ink);
}

.hero-carousel { position: absolute; inset: 0; }

.hero-track {
  display: flex;
  height: 100%;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.hero-slide { position: relative; flex: 0 0 100%; height: 100%; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

/* Legibility scrim — heavier at the bottom where the copy sits */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(20,24,29,.86) 0%, rgba(20,24,29,.55) 42%, rgba(20,24,29,.15) 72%, rgba(20,24,29,.35) 100%),
    linear-gradient(to top, rgba(20,24,29,.92) 0%, rgba(20,24,29,.25) 42%, rgba(20,24,29,.45) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(3rem, 8vh, 6rem);
}
.hero-inner { max-width: 46rem; }

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .9rem;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.15rem;
}
.hero-eyebrow span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--signal); flex: none;
}

.hero-title {
  font-size: var(--step-3);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.028em;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero-title em {
  font-style: normal;
  color: var(--signal);
}

.hero-sub {
  font-size: var(--step-1);
  color: #DCE2E9;
  max-width: 34rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Carousel controls */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(20,24,29,.45);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.hero-arrow:hover { background: var(--signal); border-color: var(--signal); color: var(--ink); }
.hero-prev { left: clamp(.75rem, 2vw, 1.75rem); }
.hero-next { right: clamp(.75rem, 2vw, 1.75rem); }

.hero-dots {
  position: absolute;
  z-index: 4;
  bottom: 1.5rem;
  right: clamp(1.25rem, 4vw, 3rem);
  display: flex;
  gap: .5rem;
}
.hero-dot {
  width: 30px; height: 4px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .25s var(--ease), width .25s var(--ease);
}
.hero-dot.active { background: var(--signal); width: 46px; }

/* --------------------------------------------------------------------------
   7. Trust strip — the facts a worried car owner wants first
   -------------------------------------------------------------------------- */
.trust {
  background: var(--ink-soft);
  border-bottom: 1px solid var(--steel-line);
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.trust-item { display: flex; align-items: flex-start; gap: .9rem; }
.trust-item svg {
  width: 22px; height: 22px;
  flex: none;
  color: var(--signal);
  margin-top: 2px;
}
.trust-item dt {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
  margin-bottom: .2rem;
}
.trust-item dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-0);
  color: var(--white);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   8. About
   -------------------------------------------------------------------------- */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.about-prose { max-width: var(--prose); }
.about-prose p { color: var(--text-on-light-mute); }
.about-prose p:first-of-type {
  font-size: var(--step-1);
  color: var(--text-on-light);
  line-height: 1.55;
}

.about-figure { position: relative; }
.about-figure img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
}
/* Tagline plate — echoes the garage's painted signboard */
.plate {
  position: absolute;
  left: clamp(-.5rem, -1vw, -1.25rem);
  bottom: -1.25rem;
  background: var(--white);
  border-left: 6px solid var(--signal);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lift);
  padding: .9rem 1.25rem;
  max-width: 82%;
}
.plate-label {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-on-light-mute);
  margin-bottom: .15rem;
}
.plate-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-0);
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   9. Services
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.75rem);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--ink-soft);
  border: 1px solid var(--steel-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .28s var(--ease), border-color .28s var(--ease),
              box-shadow .28s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--signal);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-trigger img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover .gallery-trigger img { transform: scale(1.06); }

.gallery-badge {
  position: absolute;
  left: .7rem;
  bottom: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .45em;
  background: rgba(20,24,29,.78);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45em .75em;
  border-radius: var(--r-sm);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.gallery-badge svg { width: 13px; height: 13px; }
.service-card:hover .gallery-badge,
.gallery-trigger:focus-visible .gallery-badge { opacity: 1; transform: none; }

.service-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.4rem;
}
.service-name {
  font-size: var(--step-1);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.015em;
  color: var(--white);
  margin-bottom: .55rem;
}
.service-desc {
  font-size: var(--step--1);
  color: var(--text-on-dark-mute);
  line-height: 1.6;
  margin-bottom: 1.15rem;
}
.service-actions { margin-top: auto; }
.book-now {
  width: 100%;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--steel-line);
  border-radius: var(--r-sm);
  padding: .8em 1em;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease),
              color .2s var(--ease);
}
.book-now:hover {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   10. Gallery lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,12,15,.94);
  backdrop-filter: blur(8px);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.open { display: flex; }

.lb-stage { width: 100%; max-width: 960px; text-align: center; }

.lb-title {
  font-size: var(--step-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 1rem;
}
.lb-image {
  max-width: 100%;
  /* Leaves room for the caption, counter and thumbnail strip below */
  max-height: 56vh;
  margin-inline: auto;
  border-radius: var(--r-md);
  box-shadow: 0 24px 70px rgba(0,0,0,.6);
  object-fit: contain;
}
/* Caption — lets each job explain itself instead of being photo 3 of 7 */
.lb-caption {
  max-width: 46rem;
  margin: 1.1rem auto 0;
  font-size: var(--step-0);
  line-height: 1.5;
  color: #DCE2E9;
}
.lb-caption[hidden] { display: none; }

.lb-counter {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .16em;
  color: var(--text-on-dark-mute);
  margin: .5rem 0 0;
}
.lb-thumbs {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}
.lb-thumb {
  width: 76px; height: 56px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  opacity: .5;
  cursor: pointer;
  transition: opacity .2s var(--ease), border-color .2s var(--ease);
}
.lb-thumb:hover, .lb-thumb.active { opacity: 1; border-color: var(--signal); }

.lb-close {
  position: absolute;
  top: clamp(.75rem, 2vw, 1.5rem);
  right: clamp(.75rem, 2vw, 1.5rem);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.lb-close:hover { background: var(--signal); border-color: var(--signal); color: var(--ink); }

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.lb-arrow:hover { background: var(--signal); border-color: var(--signal); color: var(--ink); }
.lb-prev { left: clamp(.5rem, 2vw, 1.5rem); }
.lb-next { right: clamp(.5rem, 2vw, 1.5rem); }

/* --------------------------------------------------------------------------
   11. Story — mission, vision, journey, values
   -------------------------------------------------------------------------- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.mv-card {
  background: var(--white);
  border: 1px solid #E3E7EC;
  border-top: 4px solid var(--signal);
  border-radius: var(--r-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.mv-card h3 {
  font-size: var(--step-1);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.mv-card p { color: var(--text-on-light-mute); margin: 0; }

/* Journey — a genuine chronology, so the years carry the structure */
.timeline {
  position: relative;
  max-width: 640px;
  /* Aligned to the content edge, not centred — it reads as a column of record */
  margin: 0 0 clamp(3rem, 6vw, 4.5rem);
  padding-left: 1.5rem;
  border-left: 2px solid #DCE1E7;
  list-style: none;
}
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-block: .7rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: calc(-1.5rem - 6px);
  top: 1.35rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--signal);
}
.timeline li:last-child::before { background: var(--signal); }
.timeline time {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--signal-ink);
}
.timeline span { color: var(--text-on-light); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.value-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-0);
  line-height: 1.3;
  transition: transform .25s var(--ease);
}
.value-card:hover { transform: translateY(-3px); }
.value-card svg { width: 24px; height: 24px; color: var(--signal); flex: none; }

/* --------------------------------------------------------------------------
   12. Booking
   -------------------------------------------------------------------------- */
#booking .booking-shell {
  max-width: 620px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid #E3E7EC;
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-card);
}
.booking-form { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-on-light-mute);
}
.booking-form input,
.booking-form select {
  width: 100%;
  padding: .85em 1em;
  font: inherit;
  font-size: var(--step-0);
  color: var(--text-on-light);
  background: var(--paper);
  border: 1px solid #D7DDE4;
  border-radius: var(--r-sm);
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--signal);
  background: var(--white);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-form .btn { width: 100%; margin-top: .35rem; }

/* --------------------------------------------------------------------------
   13. Find Us
   -------------------------------------------------------------------------- */
.findus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: stretch;
}
.map-embed {
  position: relative;
  min-height: 460px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--steel-line);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

.contact-card {
  background: var(--ink-soft);
  border: 1px solid var(--steel-line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
}

/* The signature: contact rendered as workshop signage, the way their own
   board renders it — the number is the loudest thing on it. */
.sign {
  background: var(--white);
  border-radius: var(--r-md);
  border-bottom: 5px solid var(--signal);
  padding: 1.2rem 1.35rem 1.35rem;
  margin-bottom: 1.5rem;
}
.sign-label {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-on-light-mute);
  margin-bottom: .6rem;
}
.sign-numbers { display: grid; gap: .3rem; }
.sign-numbers a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.7vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.15;
  transition: color .18s var(--ease);
}
.sign-numbers a:hover { color: var(--signal-ink); }

.contact-rows { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.contact-row { display: flex; gap: .85rem; align-items: flex-start; }
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--signal);
  flex: none;
  margin-top: 3px;
}
.contact-row dt {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
  margin-bottom: .15rem;
}
.contact-row dd { margin: 0; color: var(--white); }
.contact-row dd a { color: var(--white); text-decoration: none; }
.contact-row dd a:hover { color: var(--signal); }

.hours {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--steel-line);
  font-family: var(--font-mono);
  font-size: var(--step--1);
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .4rem 0;
  color: var(--text-on-dark-mute);
}
.hours li span:last-child { color: var(--white); }
.hours li.is-closed span:last-child { color: var(--text-on-dark-mute); }

.contact-actions { margin-top: auto; display: grid; gap: .65rem; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0E1116;
  color: var(--text-on-dark-mute);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--steel-line);
}
.footer-col h3 {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 1rem;
}
.footer-brand img {
  height: 44px;
  width: auto;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 4px 6px;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-0);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.footer-col p { margin: 0 0 .5rem; }
.footer-hours { font-family: var(--font-mono); font-size: var(--step--1); }
.footer-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .25rem 0;
}
.footer-hours div span:last-child { color: var(--white); }
.footer-link {
  display: inline-block;
  margin-top: .75rem;
  color: var(--signal);
  font-weight: 700;
  font-size: var(--step--1);
  text-decoration: none;
}
.footer-link:hover { text-decoration: underline; }

.social-icons { display: flex; gap: .75rem; }
.social-icons a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--steel-line);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.social-icons a:hover { border-color: var(--signal); transform: translateY(-2px); }
.social-icons img { width: 22px; height: 22px; object-fit: contain; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  padding-top: 1.75rem;
  font-size: var(--step--1);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--text-on-dark-mute); text-decoration: none; }
.footer-bottom a:hover { color: var(--signal); }

/* --------------------------------------------------------------------------
   15. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-figure { order: -1; }
  .plate { position: static; max-width: none; margin-top: 1rem; }
  .findus-grid { grid-template-columns: 1fr; }
  .map-embed, .map-embed iframe { min-height: 340px; }
}

@media (max-width: 760px) {
  :root { --header-h: 60px; }
  .brand img { height: 34px; }
  .nav-links { gap: .85rem; }
  .nav-links a { font-size: .78rem; letter-spacing: .02em; }
  /* Keep the call button, shed its label so it still fits */
  .header-cta { padding: .65em .8em; }
  .header-cta .header-cta-text { display: none; }
  .hero { min-height: 78vh; }
  /* Arrows overlapped the hero copy on narrow screens — on touch, swipe and
     the dots are the real affordances, so the arrows just get in the way. */
  .hero-arrow { display: none; }
  /* The garage's own signage is busy; deepen the scrim so the headline wins. */
  .hero-scrim {
    background: linear-gradient(
      to top,
      rgba(20,24,29,.95) 0%,
      rgba(20,24,29,.82) 38%,
      rgba(20,24,29,.55) 68%,
      rgba(20,24,29,.45) 100%
    );
  }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
  .nav-links { gap: .6rem; }
  .nav-links a { font-size: .72rem; }
  .hero-dots { left: var(--gutter); right: auto; }
}

/* --------------------------------------------------------------------------
   16. Motion & print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-track { transition: none; }
}

@media print {
  .site-header, .hero-arrow, .hero-dots, .lightbox, .book-now { display: none !important; }
  body { padding-top: 0; color: #000; }
}

/* ==========================================================================
   17. THE REBUILD — staged sequence
   A repair genuinely is a sequence, so the step numbers carry real
   information rather than decorating the layout.
   ========================================================================== */
.rb {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
}
.rb:focus-visible { outline: 3px solid var(--signal); outline-offset: 6px; border-radius: var(--r-md); }

.rb-stage {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--steel-line);
}
.rb-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: opacity .28s var(--ease);
}
.rb-image.is-swapping { opacity: .25; }

.rb-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: rgba(255,255,255,.14);
}
.rb-progress span {
  display: block;
  height: 100%;
  width: 20%;
  background: var(--signal);
  transition: width .4s var(--ease);
}

.rb-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(.5rem, 2vw, 1.5rem) 0;
}
.rb-step-label {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .18em;
  color: var(--signal);
  margin-bottom: .8rem;
}
.rb-step-label .rb-of { color: var(--text-on-dark-mute); }
.rb-title {
  font-size: var(--step-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: .9rem;
}
.rb-text {
  color: var(--text-on-dark-mute);
  font-size: var(--step-0);
  line-height: 1.65;
  max-width: 34rem;
}
.rb-nav { display: flex; gap: .6rem; margin-top: 1.75rem; }
.rb-arrow {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--steel-line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 1.05rem;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.rb-arrow:hover { background: var(--signal); border-color: var(--signal); color: var(--ink); }

.rb-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: clamp(.5rem, 1.4vw, 1rem);
  margin-top: .5rem;
}
.rb-step {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  text-align: left;
  padding: .95rem .25rem 0;
  background: none;
  border: 0;
  border-top: 3px solid var(--steel-line);
  color: var(--text-on-dark-mute);
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.rb-step:hover { color: var(--white); border-top-color: #5a6675; }
.rb-step.active { color: var(--white); border-top-color: var(--signal); }
.rb-step-n {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .14em;
}
.rb-step.active .rb-step-n { color: var(--signal); }
.rb-step-t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step--1);
  line-height: 1.25;
}

/* ==========================================================================
   18. GENUINE PARTS — evidence, not a catalogue
   ========================================================================== */
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
}
.proof-note {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-1);
  text-transform: uppercase;
  letter-spacing: -.015em;
  color: var(--white);
  margin: 1.5rem 0 1.75rem;
  padding-left: 1rem;
  border-left: 4px solid var(--signal);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(.75rem, 1.6vw, 1.15rem);
}
.proof-item {
  margin: 0;
  background: var(--ink);
  border: 1px solid var(--steel-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.proof-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.proof-item figcaption {
  padding: .7rem .85rem;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
  border-top: 1px solid var(--steel-line);
}

/* ==========================================================================
   19. Story lower half + shared minor heading
   ========================================================================== */
.minor-title {
  font-size: var(--step-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 1.4rem;
}
.about-lead {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--text-on-light);
}
.about-prose .mv-grid { margin-top: 2rem; margin-bottom: 0; }
.story-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid #E1E6EB;
}
.story-lower .timeline { margin-bottom: 0; }
.values-grid { grid-template-columns: 1fr; }

/* ==========================================================================
   20. Badge / booking / misc refinements
   ========================================================================== */
.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: .4em;
}
[hidden] { display: none !important; }

.booking-note {
  color: var(--text-on-light-mute);
  margin-bottom: 1.75rem;
  font-size: var(--step--1);
}
.booking-note a { color: var(--signal-ink); font-weight: 700; }

/* ==========================================================================
   21. Sticky mobile action bar
   The two things someone with a damaged car actually wants, always in reach.
   ========================================================================== */
.mobile-bar { display: none; }

/* ==========================================================================
   22. Scroll reveal — scoped to .js so content is never hidden without JS,
   and disabled entirely for reduced-motion visitors.
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  .js [data-reveal].in { opacity: 1; transform: none; }
}

/* ==========================================================================
   23. Responsive for the new components
   ========================================================================== */
@media (max-width: 960px) {
  .rb { grid-template-columns: 1fr; }
  .proof-layout { grid-template-columns: 1fr; }
  .story-lower { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .rb-steps {
    grid-auto-flow: column;
    grid-auto-columns: minmax(140px, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .5rem;
  }
  .rb-step { scroll-snap-align: start; }
  .rb-image { aspect-ratio: 3 / 2; }

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

  /* Sticky bar appears, and the page makes room for it */
  .mobile-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 900;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--steel-line);
    border-top: 1px solid var(--steel-line);
  }
  .mb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding: .95em 1em;
    font-family: var(--font-display);
    font-size: var(--step--1);
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .mb-btn svg { width: 1.15em; height: 1.15em; }
  .mb-call { background: var(--ink); color: var(--white); }
  .mb-wa { background: #178643; color: var(--white); }
  body { padding-bottom: 58px; }
  /* Keep the lightbox clear of the bar */
  .lightbox { padding-bottom: 72px; }
}

@media (max-width: 420px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .rb-arrow { width: 44px; height: 44px; }
}

/* ==========================================================================
   24. "Awaiting photographs" service card
   Used where no genuine photograph of that bay exists yet. Deliberately
   styled so it reads as intentional — never stock imagery, never AI.
   ========================================================================== */
.awaiting {
  aspect-ratio: 4 / 3;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .9rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--text-on-dark-mute);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.022) 0 10px,
      transparent 10px 20px
    ),
    var(--ink);
  border-bottom: 1px solid var(--steel-line);
}
.awaiting svg { width: 42px; height: 42px; color: var(--signal); opacity: .8; }
.awaiting-note {
  margin: 0;
  max-width: 20ch;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.5;
}
.service-card--awaiting:hover { transform: none; border-color: var(--steel-line); box-shadow: none; }

/* Logo needs a little more presence — it is a wide badge, not a glyph. */
.brand img { height: 46px; padding: 3px 7px; }
@media (max-width: 760px) { .brand img { height: 38px; } }

/* On small screens the sticky bottom bar already carries Call and WhatsApp, so
   the header CTA is duplicated — and it was overflowing the viewport by ~15px.
   Dropping it here fixes the overflow and gives the nav room to breathe. */
@media (max-width: 760px) {
  .header-cta { display: none; }
  .nav { margin-left: auto; }
}

/* The steel band is lighter than ink, so the standard signal orange lands at
   4.47:1 — just under AA. The brighter token clears it at 4.89 without
   introducing another colour or flattening the band contrast. */
.band--steel .eyebrow { color: var(--signal-bright); }

/* ==========================================================================
   25. COLOUR CHANGE — a genuine before/after, client-confirmed as one car
   Two different angles, so a wipe slider would misalign; a matched pair is
   honest and reads instantly.
   ========================================================================== */
.swap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}
.swap-item {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--steel-line);
}
.swap-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
/* Tag reads like a workshop label stuck to the panel */
.swap-tag {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  padding: .55em 1.1em;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-bottom-right-radius: var(--r-md);
}
.swap-tag--after { background: var(--signal); color: var(--ink); }
.swap-item figcaption {
  padding: .95rem 1.15rem;
  font-size: var(--step--1);
  color: var(--text-on-dark-mute);
  border-top: 1px solid var(--steel-line);
}
.swap-note {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  max-width: var(--prose);
  color: var(--text-on-dark-mute);
  font-size: var(--step--1);
}
.swap-note a { color: var(--signal-bright); font-weight: 700; }

@media (max-width: 760px) {
  .swap-grid { grid-template-columns: 1fr; }
}
