/* ==========================================================================
   Easthope Auto Electrics
   Single stylesheet. No build step, no framework.
   Order: tokens > reset > layout > header > hero > components > footer > bar
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------
   Self-hosted. Nothing here touches a third-party server, so there is no
   extra DNS lookup or TLS handshake before the type can start loading —
   which is the part that hurts most on a weak mobile signal.

   Three files, latin subset, ~66 KB total:
     assets/fonts/barlow-latin-400.woff2            body copy
     assets/fonts/barlow-latin-600.woff2            labels, lead lines, strong
     assets/fonts/barlow-condensed-latin-800.woff2  headings, buttons, nav

   The latin subset covers everything the site uses, including £ (U+00A3),
   © (U+00A9), the middot (U+00B7) and en/em dashes (U+2013/2014).

   font-display: swap means the system font paints immediately and Barlow
   swaps in when it lands. Nobody ever waits on a blank screen; the phone
   number is readable from first paint.

   If you ever add a new weight to the CSS, add the matching @font-face and
   file too — otherwise the browser will synthesise a fake bold, which looks
   noticeably worse than the real thing.
   ------------------------------------------------------------------------- */

@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-latin-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-latin-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
  /* Colour */
  --ink:        #14171A;   /* base dark - headers, hero, footer, call bar   */
  --steel:      #262B31;   /* raised surface on dark                        */
  --steel-line: #3A4149;   /* border on dark                                */
  --amber:      #FFB020;   /* the only accent. 9.8:1 against --ink          */
  --amber-deep: #E09A00;   /* pressed state                                 */
  --green:      #15803D;   /* confirmations only. 4.9:1 on white            */
  --paper:      #FFFFFF;
  --off:        #F4F5F6;   /* alternating section background                */
  --text:       #1B1F23;   /* body copy on light. 15.8:1 on white           */
  --mut:        #565E66;   /* secondary copy. 6.4:1 on white                */
  --bd:         #DEE1E4;   /* hairline borders on light                     */
  --on-dark:    #FFFFFF;
  --on-dark-mut:#BFC6CC;   /* 11:1 on --ink                                 */

  /* Type */
  --ff-head: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --ff-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --fs-xs:   0.8125rem;   /* 13px - labels, chips                           */
  --fs-sm:   0.9375rem;   /* 15px - captions                                */
  --fs-base: 1.0625rem;   /* 17px - body. Never below 16px on mobile.       */
  --fs-lg:   1.1875rem;   /* 19px - lead paragraphs                         */

  /* Spacing - 4/8 rhythm */
  --s1: 0.25rem; --s2: 0.5rem;  --s3: 0.75rem; --s4: 1rem;
  --s5: 1.5rem;  --s6: 2rem;    --s7: 3rem;    --s8: 4rem;  --s9: 5rem;

  --radius: 10px;
  --radius-sm: 6px;

  /* Layout */
  --wrap: 1120px;
  --gutter: 1.25rem;
  --bar-h: 74px;          /* height of the fixed bottom call bar            */

  --z-header: 20;
  --z-bar: 60;
}

@media (min-width: 768px) {
  :root { --gutter: 2rem; --fs-base: 1.125rem; }
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Keeps a keyboard-focused element clear of the fixed bottom bar.
     WCAG 2.2 - Focus Not Obscured. */
  scroll-padding-bottom: calc(var(--bar-h) + 1rem);
  scroll-padding-top: 1rem;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  /* Clears the fixed bottom bar so nothing is ever trapped behind it. */
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: -0.004em;
  margin: 0 0 var(--s4);
  text-wrap: balance;
}

h1 { font-size: clamp(2.125rem, 8.5vw, 3.5rem); }
h2 { font-size: clamp(1.625rem, 5.5vw, 2.375rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.5rem); letter-spacing: 0; }
h4 { font-size: 1.125rem; letter-spacing: 0; }

p { margin: 0 0 var(--s4); max-width: 68ch; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

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

ul, ol { margin: 0 0 var(--s4); padding-left: 1.25rem; }
li { margin-bottom: var(--s2); }
li:last-child { margin-bottom: 0; }

strong, b { font-weight: 600; }

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

/* Long tokens (URLs, reg plates, part numbers) must not force a sideways
   scroll on a 320px screen. */
p, li, td, th, dd, dt { overflow-wrap: anywhere; }

/* ==========================================================================
   3. Utilities
   ========================================================================== */

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

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

.skip-link {
  position: absolute; left: var(--s4); top: -100px;
  z-index: 100;
  background: var(--amber); color: var(--ink);
  font-family: var(--ff-head); font-weight: 800; text-transform: uppercase;
  padding: var(--s3) var(--s5); border-radius: var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus { top: var(--s4); }

.lead { font-size: var(--fs-lg); color: var(--mut); }

.tnum { font-variant-numeric: tabular-nums; }

/* Consistent, visible focus everywhere. Never removed. */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 2px;
}
.on-dark :focus-visible, .site-footer :focus-visible, .call-bar :focus-visible {
  outline-color: var(--amber);
}

/* ==========================================================================
   4. Sections
   ========================================================================== */

.section { padding-block: var(--s7); }
.section--tight { padding-block: var(--s6); }
.section--off { background: var(--off); }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--dark p { color: var(--on-dark-mut); }

@media (min-width: 768px) {
  .section { padding-block: var(--s9); }
  .section--tight { padding-block: var(--s7); }
}

.section-label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mut);
  margin: 0 0 var(--s3);
}
.section--dark .section-label { color: var(--on-dark-mut); }

/* A short amber rule used to open major sections. */
.rule-top { border-top: 4px solid var(--amber); padding-top: var(--s5); }

/* ==========================================================================
   5. Header + navigation
   Nav is a plain visible list with no JavaScript. The toggle button is
   hidden in the HTML and only revealed by the inline script, so a failed
   or blocked script leaves a fully usable menu instead of a dead button.
   ========================================================================== */

.site-header {
  background: var(--ink);
  color: var(--on-dark);
  border-bottom: 1px solid var(--steel-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  min-height: 60px;
  padding-block: var(--s2);
}

.logo {
  font-family: var(--ff-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.3125rem;
  line-height: 1;
  letter-spacing: 0.005em;
  text-decoration: none;
  color: var(--on-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-block: var(--s2);
}
.logo .logo-mark { color: var(--amber); flex: 0 0 auto; }
.logo .logo-sub { color: var(--amber); }

.nav-toggle {
  display: none;              /* revealed by the inline script */
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0 var(--s3);
  background: transparent;
  border: 1px solid var(--steel-line);
  border-radius: var(--radius-sm);
  color: var(--on-dark);
  font-family: var(--ff-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.nav-toggle[hidden] { display: none; }
.js .nav-toggle:not([hidden]) { display: inline-flex; }
.nav-toggle:hover { background: var(--steel); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 0 var(--s3);
  display: flex;
  flex-direction: column;
}
.site-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;              /* comfortable thumb target */
  padding: 0 var(--s2);
  text-decoration: none;
  color: var(--on-dark-mut);
  font-family: var(--ff-head);
  /* 800 rather than 700 so the site ships one font file fewer. At this size,
     in condensed uppercase, the two weights are indistinguishable. */
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--steel-line);
}
.site-nav a:hover { color: var(--on-dark); }
.site-nav a[aria-current="page"] {
  color: var(--amber);
}

/* Collapsed state is only ever applied by the script. */
.site-nav[data-collapsed="true"] { display: none; }

@media (min-width: 900px) {
  .site-nav,
  .site-nav[data-collapsed="true"] { display: block; }
  .js .nav-toggle:not([hidden]) { display: none; }
  .site-nav ul { flex-direction: row; gap: var(--s5); padding: 0; }
  .site-nav a { border-bottom: 0; min-height: 44px; font-size: 1rem; }
  .site-nav a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--amber); }
}

/* ==========================================================================
   6. Hero
   Type only. Nothing heavy loads before the phone number paints.
   ========================================================================== */

.hero {
  background: var(--ink);
  color: var(--on-dark);
  padding-block: var(--s6) var(--s7);
}

.hero-coverage {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #98A1A9;
  margin: 0 0 var(--s4);
}
.hero-coverage svg { flex: 0 0 auto; }

.hero-hook {
  font-size: clamp(1.0625rem, 4.5vw, 1.375rem);
  font-weight: 600;
  color: var(--amber);
  margin: 0 0 var(--s2);
  line-height: 1.25;
  max-width: 24ch;
}

.hero h1 { margin-bottom: var(--s4); max-width: 15ch; }

.hero-sub {
  color: var(--on-dark-mut);
  max-width: 46ch;
  margin-bottom: var(--s5);
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: var(--s5) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.hero-trust li {
  margin: 0;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--on-dark-mut);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem;
  letter-spacing: 0.02em;
}

@media (min-width: 900px) {
  .hero { padding-block: var(--s8) var(--s9); }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: var(--s8);
    align-items: start;
  }
  .hero h1 { max-width: none; }
}

/* ==========================================================================
   7. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.1875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn svg { flex: 0 0 auto; }

.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: var(--amber-deep); }
.btn--primary:active { background: var(--amber-deep); }

.btn--ghost-dark {
  background: transparent;
  border-color: var(--steel-line);
  color: var(--on-dark);
}
.btn--ghost-dark:hover { background: var(--steel); }

.btn--outline {
  background: var(--paper);
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover { background: var(--off); }

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

/* The hero's phone button: number large, hours underneath. */
.btn-call {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--amber);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  min-height: 60px;
  text-decoration: none;
  transition: background-color .15s ease;
}
.btn-call:hover { background: var(--amber-deep); }
.btn-call svg { flex: 0 0 auto; }
.btn-call .num {
  display: block;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 6vw, 1.875rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
}
.btn-call .hours {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 1px;
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-top: var(--s4);
}
@media (min-width: 560px) {
  .btn-row { flex-direction: row; flex-wrap: wrap; }
  .btn-row > * { flex: 1 1 auto; }
}

/* ==========================================================================
   8. Cards, service list, price tables
   ========================================================================== */

.grid {
  display: grid;
  gap: var(--s4);
  grid-template-columns: 1fr;
}
@media (min-width: 620px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 620px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: var(--s5);
}
.section--off .card { background: var(--paper); }

.card h3 { margin-bottom: var(--s2); }
.card p { font-size: var(--fs-sm); color: var(--mut); margin-bottom: 0; }

/* Service card that links through to the services page */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.card-link:hover { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.card-link .card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: var(--s3);
  font-family: var(--ff-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  box-shadow: inset 0 -3px 0 var(--amber);
}

/* Price list - used on the home page and the pricing page */
.price-list { margin: 0; padding: 0; list-style: none; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s4);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--bd);
  margin: 0;
}
.price-list li:last-child { border-bottom: 0; }
.price-list .what { margin: 0; max-width: none; }
.price-list .what span {
  display: block;
  font-size: var(--fs-sm);
  color: var(--mut);
  line-height: 1.4;
}
.price-list .cost {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.price-block {
  border: 1px solid var(--bd);
  border-top: 4px solid var(--amber);
  border-radius: var(--radius);
  background: var(--paper);
  padding: var(--s5);
}
.price-block + .price-block { margin-top: var(--s5); }
.price-block > h2,
.price-block > h3 { margin-bottom: var(--s1); }
.price-block .when {
  font-size: var(--fs-sm);
  color: var(--mut);
  margin-bottom: var(--s4);
}

/* Callout - dark block used for the closing "ring us" prompts */
.callout {
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: var(--s5);
}
.callout h3 { color: var(--amber); }
.callout p { color: var(--on-dark-mut); margin-bottom: 0; }

.note {
  background: var(--off);
  border-left: 4px solid var(--amber);
  padding: var(--s4) var(--s5);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--fs-sm);
  color: var(--text);
}
.note p { margin-bottom: var(--s2); }
.note p:last-child { margin-bottom: 0; }

/* Symptom lists on the services page */
.symptoms { list-style: none; padding: 0; margin: 0 0 var(--s4); }
.symptoms li {
  position: relative;
  padding-left: 1.75rem;
  font-size: var(--fs-sm);
  margin-bottom: var(--s2);
}
.symptoms li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 10px; height: 3px;
  background: var(--amber);
}

/* Service sections on the services page */
.service {
  padding-top: var(--s6);
  margin-top: var(--s6);
  border-top: 1px solid var(--bd);
  scroll-margin-top: var(--s4);
}
.service:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.service h2 { max-width: 20ch; }
.service .price-tag {
  display: inline-block;
  background: var(--off);
  border: 1px solid var(--bd);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  font-size: var(--fs-sm);
  font-weight: 600;
}
.service .price-tag b { font-family: var(--ff-head); font-size: 1.125rem; }

@media (min-width: 900px) {
  .service-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--s7);
    align-items: start;
  }
}

/* Areas */
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--s2) var(--s4);
}
.area-list li {
  margin: 0;
  font-size: var(--fs-sm);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--bd);
}

.town { padding-top: var(--s5); margin-top: var(--s5); border-top: 1px solid var(--bd); }
.town:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.town > h2 { margin-bottom: var(--s2); }

/* Price blocks and town blocks are h2 in the document outline — they sit
   directly under the page h1 — but there are several of them per page, so
   they're sized like an h3 to stop them competing with each other. */
.price-block > h2,
.town > h2 {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  letter-spacing: 0;
}

/* Contact methods */
.contact-methods { display: grid; gap: var(--s4); grid-template-columns: 1fr; margin: 0; padding: 0; list-style: none; }
@media (min-width: 720px) { .contact-methods { grid-template-columns: repeat(2, 1fr); } }
.contact-methods li { margin: 0; }
.contact-card {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: var(--s5);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-card:hover { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.contact-card .icon {
  flex: 0 0 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--ink);
  border-radius: var(--radius-sm);
}
.contact-card h3 { margin-bottom: 0.15rem; }
.contact-card .value {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.375rem;
  line-height: 1.1;
  display: block;
  word-break: break-word;
}
.contact-card .meta { font-size: var(--fs-sm); color: var(--mut); display: block; margin-top: 0.15rem; }

/* Hours table */
.hours { width: 100%; border-collapse: collapse; margin: 0 0 var(--s4); }
.hours th, .hours td {
  text-align: left;
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--bd);
  font-size: var(--fs-sm);
}
.hours th { font-weight: 600; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours .rate { display: block; font-size: var(--fs-xs); color: var(--mut); font-weight: 400; }

/* FAQ - <details> works without JavaScript and is keyboard accessible. */
.faq { border-top: 1px solid var(--bd); }
.faq details { border-bottom: 1px solid var(--bd); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: var(--s4) 2.25rem var(--s4) 0;
  position: relative;
  font-family: var(--ff-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.5rem; top: 50%;
  width: 12px; height: 12px;
  border-right: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq .answer { padding: 0 0 var(--s5); }
.faq .answer p { font-size: var(--fs-sm); }

/* Reviews placeholder */
.reviews-empty {
  border: 2px dashed var(--bd);
  border-radius: var(--radius);
  padding: var(--s6) var(--s5);
  text-align: center;
  color: var(--mut);
}
.reviews-empty p { margin-inline: auto; }

/* ==========================================================================
   9. Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: var(--on-dark-mut);
  padding-block: var(--s7) var(--s6);
  font-size: var(--fs-sm);
}
.site-footer h2, .site-footer h3 { color: var(--on-dark); font-size: 1.125rem; }
.site-footer a { color: var(--on-dark-mut); }
.site-footer a:hover { color: var(--amber); }
.footer-grid { display: grid; gap: var(--s6); grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0; }
/* Full 44px targets. The footer phone number is a real tap target, not
   decoration, and these sit close enough together to mis-tap otherwise. */
.footer-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-right: var(--s2);
}
.footer-bottom {
  margin-top: var(--s6);
  padding-top: var(--s5);
  border-top: 1px solid var(--steel-line);
  font-size: var(--fs-xs);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s5);
  justify-content: space-between;
}

/* ==========================================================================
   10. Fixed bottom call bar
   The one element that must be reachable from anywhere on the site.
   ========================================================================== */

.call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-bar);
  background: var(--ink);
  border-top: 1px solid var(--steel-line);
  padding: var(--s2) var(--s3);
  padding-bottom: calc(var(--s2) + env(safe-area-inset-bottom, 0px));
  display: flex;
  gap: var(--s2);
}
.call-bar a {
  flex: 1;
  min-height: 52px;              /* well above the 44px minimum */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--radius-sm);
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.1875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background-color .15s ease;
}
.call-bar .bar-call { background: var(--amber); color: var(--ink); }
.call-bar .bar-call:hover { background: var(--amber-deep); }
.call-bar .bar-wa {
  background: transparent;
  border: 1px solid #4A5158;
  color: #E4E8EB;
}
.call-bar .bar-wa:hover { background: var(--steel); }

@media (min-width: 900px) {
  .call-bar { justify-content: center; padding: var(--s3); }
  .call-bar a { flex: 0 1 260px; }
}

/* ==========================================================================
   11. Motion
   ========================================================================== */

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