/* =========================================================================
   BB Tyres — 24/7 Mobile Tyre Rescue, Brighton & Hove
   Shared stylesheet
   Register: brand (dark "night-shift" register)
   Palette:  black + white base · brand red (#CB2223) action
   Type:     Archivo (display) · Hanken Grotesk (body)
   ========================================================================= */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* Ink / dark surfaces */
  --ink-900: oklch(0.15 0 0);
  --ink-850: oklch(0.175 0 0);
  --ink-800: oklch(0.205 0 0);
  --ink-700: oklch(0.265 0 0);
  --ink-600: oklch(0.34 0 0);

  /* Light / paper surfaces */
  --paper: oklch(0.98 0 0);
  --paper-alt: oklch(0.955 0 0);
  --paper-line: oklch(0.9 0 0);

  /* Text */
  --text-on-dark: oklch(0.97 0 0);
  --text-on-dark-muted: oklch(0.74 0 0);
  --text-on-dark-faint: oklch(0.58 0 0);
  --text-on-light: oklch(0.24 0 0);
  --text-on-light-muted: oklch(0.46 0 0);

  /* Action — brand red (#CB2223) */
  --amber: oklch(0.53 0.205 27);
  --amber-hi: oklch(0.6 0.215 28);
  --amber-deep: oklch(0.47 0.19 27);
  --amber-ink: oklch(0.99 0 0);
  /* text sitting on amber */

  /* Status — live green */
  --live: oklch(0.8 0.18 150);
  --live-soft: oklch(0.8 0.18 150 / 0.35);

  /* Enquire action — green */
  --green: oklch(0.6 0.145 150);
  --green-hi: oklch(0.66 0.15 150);
  --green-ink: oklch(0.99 0 0);

  /* Supporting neutral (unused) */
  --blue: oklch(0.55 0 0);

  /* Borders on dark */
  --line-dark: oklch(1 0 0 / 0.1);
  --line-dark2: oklch(1 0 0 / 0.16);

  /* Radii / shadow / spacing rhythm */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px oklch(0.15 0 0 / 0.25);
  --shadow-md: 0 10px 30px -12px oklch(0.15 0 0 / 0.45);
  --shadow-lg: 0 30px 60px -22px oklch(0.15 0 0 / 0.6);
  --shadow-red: 0 12px 30px -8px oklch(0.53 0.205 27 / 0.5);
  --shadow-green: 0 12px 30px -8px oklch(0.6 0.145 150 / 0.5);

  --edge: clamp(1.15rem, 5vw, 4.5rem);
  --maxw: 1200px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
}

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

* {
  margin: 0;
}

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

@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;
  }
}

body {
  font-family: var(--font-body);
  background: var(--ink-900);
  color: var(--text-on-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  list-style: none;
  padding: 0;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
}

/* ---- Layout helpers --------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--edge);
}

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.55;
}

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  --_bg: var(--amber);
  --_fg: var(--amber-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--r-pill);
  background: var(--_bg);
  color: var(--_fg);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s;
  white-space: nowrap;
}

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

.btn:hover {
  transform: translateY(-2px);
}

.btn--amber {
  box-shadow: var(--shadow-red);
}

.btn--amber:hover {
  background: var(--amber-hi);
}

.btn--green {
  --_bg: var(--green);
  --_fg: var(--green-ink);
  box-shadow: var(--shadow-green);
}

.btn--green:hover {
  background: var(--green-hi);
}

.btn--ghost {
  --_bg: transparent;
  --_fg: var(--text-on-dark);
  border: 1.5px solid var(--line-dark2);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  border-color: var(--text-on-dark);
  background: oklch(1 0 0 / 0.06);
}

.btn--dark {
  --_bg: var(--ink-900);
  --_fg: var(--text-on-dark);
}

.btn--dark:hover {
  background: var(--ink-800);
}

.btn--lg {
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
}

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

/* The emergency mega-CTA */
.btn--emergency {
  --_bg: var(--amber);
  --_fg: var(--amber-ink);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  padding: clamp(0.8rem, 1.6vw, 1rem) clamp(1.3rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-red);
  position: relative;
}

.btn--emergency .btn__sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0.72;
  text-transform: uppercase;
}

.btn__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1.05;
}

/* ---- Live status pill ------------------------------------------------- */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  background: oklch(0.8 0.18 150 / 0.12);
  border: 1px solid oklch(0.8 0.18 150 / 0.35);
  padding: 0.42rem 0.85rem 0.42rem 0.7rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.live-pill--light {
  color: var(--text-on-light);
  background: oklch(0.8 0.18 150 / 0.14);
  border-color: oklch(0.62 0.16 150 / 0.5);
}

.live-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 var(--live-soft);
  flex: none;
  animation: livePulse 2s var(--ease-out) infinite;
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid oklch(0.8 0.18 150 / 0.5);
  animation: liveRing 2s var(--ease-out) infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 oklch(0.8 0.18 150 / 0.5);
  }

  70% {
    box-shadow: 0 0 0 9px oklch(0.8 0.18 150 / 0);
  }

  100% {
    box-shadow: 0 0 0 0 oklch(0.8 0.18 150 / 0);
  }
}

@keyframes liveRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

/* ---- Header ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: oklch(0.15 0 0 / 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-on-dark);
  /* Push header content below a phone's notch / status-bar inset.
     Resolves to 0 on desktop and non-notched devices, so the computer
     layout is unaffected. */
  padding-top: env(safe-area-inset-top, 0px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex: none;
}

.brand__logo {
  height: 42px;
  width: auto;
  flex: none;
}

.footer-brand .brand__logo {
  height: 48px;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-on-dark);
}

.brand__name span {
  color: var(--amber);
}

.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text-on-dark-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: var(--text-on-dark);
  background: oklch(1 0 0 / 0.06);
}

.nav a[aria-current="page"] {
  color: var(--text-on-dark);
}

.nav a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 3px;
  background: var(--amber);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-live {
  display: inline-flex;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--amber-ink);
  background: var(--amber);
  padding: 0.6rem 1.05rem;
  border-radius: var(--r-pill);
  transition: transform 0.2s var(--ease-out), background 0.2s;
}

.header-call:hover {
  transform: translateY(-1px);
  background: var(--amber-hi);
}

.header-call svg {
  width: 1.05em;
  height: 1.05em;
}

.header-see {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-on-dark);
  background: transparent;
  border: 1.5px solid var(--line-dark2);
  padding: 0.55rem 1.05rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}

.header-see:hover {
  border-color: var(--text-on-dark);
  background: oklch(1 0 0 / 0.06);
}

.nav-toggle {
  display: none;
}

/* ---- Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--text-on-dark);
  background: var(--ink-900);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(0.15 0 0 / 0.72) 0%, oklch(0.15 0 0 / 0.55) 45%, oklch(0.15 0 0 / 0.94) 100%),
    linear-gradient(90deg, oklch(0.15 0 0 / 0.85) 0%, oklch(0.15 0 0 / 0.25) 70%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: 60vw;
  height: 60vw;
  max-width: 640px;
  max-height: 640px;
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, oklch(0.53 0.205 27 / 0.28), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__inner {
  padding-block: clamp(1.6rem, 3.6vw, 2.6rem) clamp(1.9rem, 3.6vw, 2.9rem);
  position: relative;
}

.hero__grid {
  display: grid;
  gap: 2rem;
}

.hero__content {
  max-width: 46rem;
}

.hazard-rule {
  height: 6px;
  border-radius: 4px;
  margin-bottom: 0.7rem;
  max-width: 92px;
  background: repeating-linear-gradient(-45deg,
      var(--amber) 0 12px,
      var(--ink-900) 12px 24px);
}

.hero h1 {
  font-size: clamp(2rem, 4.3vw, 3.05rem);
  font-weight: 800;
  margin-block: 0.6rem 0.7rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero__sub {
  color: var(--text-on-dark-muted);
  max-width: 40rem;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.5;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.1rem;
  align-items: center;
}

.hero__phone-note {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.8rem;
  margin-top: 1.1rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line-dark);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-on-dark);
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  line-height: 1.25;
}

.stars {
  color: var(--amber);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

/* ---- Google review trust cluster ------------------------------------- */
.trust-item--google {
  gap: 0.7rem;
}

.tg-avatars {
  display: inline-flex;
  align-items: center;
}

.tg-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--text-on-dark);
  border: 2px solid var(--ink-850);
  box-shadow: var(--shadow-sm);
}
.tg-avatar:not(:first-child) {
  margin-left: -11px;
}
.tg-avatar:nth-child(1) { background: linear-gradient(150deg, var(--ink-600), var(--ink-700)); }
.tg-avatar:nth-child(2) { background: linear-gradient(150deg, var(--amber), var(--amber-deep)); }
.tg-avatar:nth-child(3) { background: linear-gradient(150deg, var(--ink-700), var(--ink-800)); }

.tg-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.tg-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tg-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}
.tg-stars svg {
  width: 16px;
  height: 16px;
  fill: #fbbc04;
}

.tg-glogo {
  width: 16px;
  height: 16px;
  flex: none;
}

.tg-text {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  line-height: 1.2;
}
.tg-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-on-dark);
}

/* ---- Average response-time item -------------------------------------- */
.trust-item--response {
  gap: 0.7rem;
}

.tr-clock {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--amber);
  background: linear-gradient(150deg, var(--ink-700), var(--ink-800));
  border: 2px solid var(--ink-850);
  box-shadow: var(--shadow-sm);
}

.tr-clock svg {
  width: 18px;
  height: 18px;
}

.tr-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-on-dark);
  line-height: 1.1;
}

.tr-num span {
  color: var(--text-on-dark-muted);
  font-weight: 700;
  font-size: 0.72em;
  margin-left: 1px;
}

/* ---- AA & RAC verified partner badges -------------------------------- */
.trust-item--partners {
  gap: 0.7rem;
}

.pt-badges {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pt-logo {
  height: 26px;
  width: auto;
  flex: none;
  border-radius: 6px;
  box-shadow: 0 1px 3px oklch(0 0 0 / 0.45), 0 0 0 1px oklch(1 0 0 / 0.06);
}

/* ---- Partner / trust strip ------------------------------------------- */
.partners {
  background: var(--ink-850);
  color: var(--text-on-dark);
  border-block: 1px solid var(--line-dark);
}

.partners__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  padding-block: 1.6rem;
}

.partners__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-on-dark);
}

.partner-badge small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.02em;
}

.partner-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

/* ---- Generic light section -------------------------------------------- */
.panel-light {
  background: var(--paper);
  color: var(--text-on-light);
}

.panel-alt {
  background: var(--paper-alt);
  color: var(--text-on-light);
}

.panel-dark {
  background: var(--ink-900);
  color: var(--text-on-dark);
}

.panel-ink {
  background: var(--ink-850);
  color: var(--text-on-dark);
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.05rem);
  margin-block: 0.9rem 0.9rem;
}

.panel-light .section-head p,
.panel-alt .section-head p {
  color: var(--text-on-light-muted);
}

.panel-dark .section-head p,
.panel-ink .section-head p {
  color: var(--text-on-dark-muted);
}

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

.section-head--center .eyebrow {
  justify-content: center;
}

/* ---- Steps ------------------------------------------------------------ */
.steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--r-lg);
  background: var(--ink-800);
  border: 1px solid var(--line-dark);
}

.step__num {
  counter-increment: step;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.step__num::before {
  content: "0" counter(step);
  font-size: 2.4rem;
  line-height: 1;
}

.step__icon {
  width: 30px;
  height: 30px;
  color: var(--amber);
  margin-bottom: 0.9rem;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-on-dark);
}

.step p {
  color: var(--text-on-dark-muted);
  font-size: 0.98rem;
}

.step__line {
  display: none;
}

/* ---- Service cards ---------------------------------------------------- */
.services-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-800);
  border: 1px solid var(--line-dark);
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: oklch(0.53 0.205 27 / 0.55);
  box-shadow: 0 26px 50px -26px oklch(0 0 0 / 0.75), 0 0 0 1px oklch(0.53 0.205 27 / 0.22);
}

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

/* top scrim so the index numeral stays legible over any photo */
.service-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, oklch(0.12 0 0 / 0.62), transparent 42%);
  pointer-events: none;
}

/* diagonal light sweep on hover */
.service-card__media::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  background: linear-gradient(105deg, transparent 34%, oklch(1 0 0 / 0.16) 46%, transparent 58%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease-out);
  pointer-events: none;
}

.service-card:hover .service-card__media::after {
  transform: translateX(130%);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s var(--ease-out);
  filter: saturate(0.92) brightness(0.94);
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
  filter: saturate(1.02) brightness(1);
}

/* signature entrance: photo settles from a slight over-scale as it reveals */
.service-card.is-in .service-card__media img {
  animation: mediaSettle 1.1s var(--ease-out);
}

@keyframes mediaSettle {
  from {
    transform: scale(1.16);
  }
  to {
    transform: scale(1);
  }
}

.sc-index {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
}

.sc-index::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--amber);
  transition: width 0.35s var(--ease-out);
}

.service-card:hover .sc-index::before {
  width: 34px;
}

.service-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.service-card h3 {
  font-size: 1.28rem;
  color: var(--text-on-dark);
}

.service-card p {
  color: var(--text-on-dark-muted);
  font-size: 0.96rem;
}

.service-card__link {
  margin-top: auto;
  padding-top: 0.5rem;
  color: var(--amber);
  font-weight: 700;
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card__link svg {
  width: 1em;
  height: 1em;
  transition: transform 0.25s var(--ease-out);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

.service-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.6rem;
}

.service-card__cta .sr-btn {
  flex: 1 1 auto;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.service-card__cta + .service-card__link {
  margin-top: 0.85rem;
  padding-top: 0;
}

/* Detailed service rows (services page) */
.service-row {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line-dark);
}

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

.service-row__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.service-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row:nth-child(even) .service-row__media {
  order: 2;
}

.service-row__tag {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--amber);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.service-row h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  margin-block: 0.6rem 0.9rem;
  color: var(--text-on-dark);
}

.service-row p {
  color: var(--text-on-dark-muted);
  margin-bottom: 1rem;
}

.tick-list {
  display: grid;
  gap: 0.6rem;
}

.tick-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text-on-dark-muted);
}

.tick-list svg {
  width: 1.15em;
  height: 1.15em;
  color: var(--live);
  flex: none;
  margin-top: 0.25em;
}

/* ---- Feature / why-us ------------------------------------------------- */
.feature-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature {
  padding: 1.6rem;
  border-radius: var(--r-md);
  background: var(--paper);
  border: 1px solid var(--paper-line);
}

.panel-alt .feature {
  background: var(--paper);
}

.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: oklch(0.53 0.205 27 / 0.16);
  color: var(--amber-deep);
  margin-bottom: 1rem;
}

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

.feature h3 {
  font-size: 1.2rem;
  color: var(--text-on-light);
  margin-bottom: 0.4rem;
}

.feature p {
  color: var(--text-on-light-muted);
  font-size: 0.96rem;
}

/* ---- Stats ------------------------------------------------------------ */
.stats {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat {
  padding: 1.5rem 1.6rem;
  border-radius: var(--r-md);
  background: var(--ink-800);
  border: 1px solid var(--line-dark);
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--text-on-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat__label {
  color: var(--text-on-dark-muted);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* ---- Coverage --------------------------------------------------------- */
.coverage {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

.coverage__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  aspect-ratio: 4 / 3;
  background: var(--ink-850);
  position: relative;
}

.coverage__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* gently mute the map so it settles into the dark section without hurting legibility */
  filter: saturate(0.9) brightness(0.96);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.area-tag {
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-pill);
  background: oklch(1 0 0 / 0.05);
  border: 1px solid var(--line-dark);
  color: var(--text-on-dark);
}

.area-tag--home {
  background: oklch(0.53 0.205 27 / 0.16);
  border-color: oklch(0.53 0.205 27 / 0.4);
  color: var(--amber-hi);
}

/* ---- Testimonials ----------------------------------------------------- */
.reviews {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Google rating summary badge */
.grev {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.1rem;
  margin-top: 1.5rem;
  padding: 0.7rem 0.75rem 0.7rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}

.grev__g {
  width: 30px;
  height: 30px;
  flex: none;
}

.grev__info {
  text-align: left;
}

.grev__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.grev__rating strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-on-light);
}

.grev__stars {
  color: #fbbc04;
  letter-spacing: 0.06em;
  font-size: 0.98rem;
}

.grev__meta {
  font-size: 0.82rem;
  color: var(--text-on-light-muted);
}

.grev__meta b {
  color: var(--text-on-light);
  font-weight: 700;
}

.grev__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-on-light);
  background: var(--paper-alt);
  border: 1px solid var(--paper-line);
  padding: 0.6rem 1rem;
  border-radius: var(--r-pill);
  transition: background 0.2s, transform 0.2s var(--ease-out);
}

.grev__cta:hover {
  transform: translateY(-1px);
  background: #fff;
}

.grev__cta svg {
  width: 0.95em;
  height: 0.95em;
}

.review {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--paper-line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review__g {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 22px;
  height: 22px;
}

.review__stars {
  color: #fbbc04;
  letter-spacing: 0.1em;
}

.review__who b {
  display: block;
  font-family: var(--font-display);
  color: var(--text-on-light);
}

.review p {
  color: var(--text-on-light);
  font-size: 1.02rem;
}

.review__by {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--amber-ink);
  background: var(--amber);
}

.review__by b {
  font-family: var(--font-display);
  color: var(--text-on-light);
}

.review__by small {
  color: var(--text-on-light-muted);
  display: block;
}

/* ---- CTA band --------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--text-on-dark);
  isolation: isolate;
}

.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, oklch(0.15 0 0 / 0.96) 0%, oklch(0.15 0 0 / 0.78) 55%, oklch(0.15 0 0 / 0.55) 100%);
}

.cta-band__inner {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.cta-band h2 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  max-width: 18ch;
}

.cta-band p {
  color: var(--text-on-dark-muted);
  max-width: 44ch;
  margin-block: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ---- Page hero (interior pages) --------------------------------------- */
.page-hero {
  position: relative;
  color: var(--text-on-dark);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-850);
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.55;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(0.15 0 0 / 0.7), oklch(0.15 0 0 / 0.95));
}

.page-hero__inner {
  padding-block: clamp(3rem, 8vw, 5.5rem) clamp(2.5rem, 6vw, 4rem);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-block: 1rem 1rem;
}

.page-hero p {
  color: var(--text-on-dark-muted);
  max-width: 50ch;
  font-size: 1.12rem;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-on-dark-faint);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumbs a:hover {
  color: var(--amber);
}

/* ---- Prose / about ---------------------------------------------------- */
.prose {
  max-width: 42rem;
}

.prose p {
  margin-bottom: 1.15rem;
  font-size: 1.08rem;
}

.panel-light .prose p,
.panel-alt .prose p {
  color: var(--text-on-light-muted);
}

.prose p strong {
  color: var(--text-on-light);
}

.split {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.split__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Contact ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-card {
  background: var(--ink-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--text-on-dark);
}

.contact-row {
  display: flex;
  gap: 1rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line-dark);
}

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

.contact-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: none;
  display: grid;
  place-items: center;
  background: oklch(0.53 0.205 27 / 0.16);
  color: var(--amber);
}

.contact-row__icon svg {
  width: 22px;
  height: 22px;
}

.contact-row h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-muted);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-row a,
.contact-row p {
  color: var(--text-on-dark);
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-row a:hover {
  color: var(--amber);
}

.contact-big-call {
  background: var(--amber);
  color: var(--amber-ink);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.contact-big-call .live-pill {
  color: var(--amber-ink);
  background: oklch(0.15 0 0 / 0.12);
  border-color: oklch(0.99 0 0 / 0.4);
}

.contact-big-call .live-dot {
  background: var(--amber-ink);
}

.contact-big-call h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin-block: 1rem 0.5rem;
}

.contact-big-call p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.contact-big-call .phone-xl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 3rem);
  letter-spacing: -0.03em;
  display: inline-block;
  margin-bottom: 1.25rem;
}

/* ---- FAQ -------------------------------------------------------------- */
.faq {
  display: grid;
  gap: 0.9rem;
  max-width: 48rem;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-md);
  padding: 0 1.25rem;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--text-on-light);
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--amber-deep);
  transition: transform 0.25s var(--ease-out);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  color: var(--text-on-light-muted);
  padding-bottom: 1.2rem;
}

/* ---- Why-us split (image + tick dropdowns) --------------------------- */
.why-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.why-intro > h2 {
  margin-top: 0.7rem;
}

.why-intro > p {
  margin-top: 0.9rem;
  color: var(--text-on-dark-muted);
  max-width: 34ch;
}

.why-media {
  position: relative;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 4;
}

.why-media__tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  background: oklch(0.15 0 0 / 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-dark2);
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-pill);
}

.why {
  display: grid;
  gap: 0;
}

.why__item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.why__item:first-child {
  border-top: 1px solid var(--line-dark);
}

.why__tick {
  width: 27px;
  height: 27px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--amber);
  color: #fff;
  box-shadow: var(--shadow-sm);
  margin-top: 1px;
}

.why__tick svg {
  width: 15px;
  height: 15px;
}

.why__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  color: var(--text-on-dark);
  margin-bottom: 0.3rem;
}

.why__body p {
  color: var(--text-on-dark-muted);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .why-split {
    grid-template-columns: 1fr;
  }
}

/* ---- Footer ----------------------------------------------------------- */
.site-footer {
  background: var(--ink-900);
  color: var(--text-on-dark-muted);
  border-top: 1px solid var(--line-dark);
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.footer-brand .brand__name {
  color: var(--text-on-dark);
}

.footer-about {
  margin-top: 1rem;
  max-width: 30ch;
  font-size: 0.95rem;
}

.footer-live {
  margin-top: 1.25rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--text-on-dark);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.6rem;
}

.footer-col a,
.footer-col p {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
}

.footer-col a:hover {
  color: var(--amber);
}

.footer-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}

.footer-phone:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
  color: var(--text-on-dark-faint);
}

.footer-bottom a:hover {
  color: var(--amber);
}

/* ---- Mobile sticky call bar ------------------------------------------ */
.mobile-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  padding: 0.7rem clamp(0.8rem, 4vw, 1rem);
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
  background: oklch(0.15 0 0 / 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-dark);
  gap: 0.6rem;
  align-items: center;
}

.mobile-call .live-pill {
  flex: none;
  padding-inline: 0.6rem;
  font-size: 0.7rem;
}

.mobile-call .btn {
  flex: 1;
}

/* ---- Reveal animation ------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---- Responsive ------------------------------------------------------- */
@media (max-width: 940px) {
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) .service-row__media {
    order: 0;
  }

  .service-row__media {
    aspect-ratio: 16 / 9;
  }

  .coverage,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split__media {
    aspect-ratio: 16 / 10;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .header-see {
    display: none;
  }
}

@media (max-width: 760px) {
  .header-live {
    display: none;
  }

  .nav {
    position: fixed;
    inset: calc(72px + env(safe-area-inset-top, 0px)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: oklch(0.15 0 0 / 0.98);
    backdrop-filter: blur(14px);
    padding: 1rem var(--edge) 1.5rem;
    border-bottom: 1px solid var(--line-dark);
    gap: 0.15rem;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease-out);
    margin-left: 0;
  }

  .nav.is-open {
    transform: none;
  }

  .nav a {
    padding: 0.85rem 0.5rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line-dark);
    border-radius: 0;
  }

  .nav a[aria-current="page"]::after {
    display: none;
  }

  .nav a[aria-current="page"] {
    color: var(--amber);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;
    border-radius: var(--r-sm);
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text-on-dark);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.2s;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-call span.header-call__label {
    display: none;
  }

  .header-call {
    padding: 0.6rem;
  }

  /* Give the row room and pin the call + hamburger to the right,
     with the hamburger as the last (right-most) item. */
  .header-inner {
    gap: 0.6rem;
  }

  .header-actions {
    margin-left: auto;
    gap: 0.55rem;
  }

  .nav-toggle {
    margin-left: 0;
  }

  .mobile-call {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero__cta .btn {
    flex: 1;
  }
}

/* ---- Mobile phone refinements (≤600px) — desktop layout untouched ---- */
@media (max-width: 600px) {
  /* Tighter vertical rhythm so phones show more per screen, less dead space */
  .section { padding-block: 2.9rem; }
  .section--tight { padding-block: 2rem; }
  .section-head { margin-bottom: 1.6rem; }
  .page-hero__inner { padding-block: 2rem 2.25rem; }

  /* Type proportions tuned for small screens */
  .section-head h2 { font-size: clamp(1.7rem, 7.8vw, 2.2rem); }
  .cta-band h2 { font-size: clamp(1.85rem, 8.5vw, 2.4rem); }
  .cta-band p { font-size: 1.02rem; }
  .page-hero p { font-size: 1.02rem; }

  /* Consistent, slightly tighter grid gaps */
  .services-grid,
  .feature-grid,
  .reviews,
  .steps,
  .stats { gap: 1rem; }

  /* Stacked cards read better with a shorter media crop */
  .service-card__media { aspect-ratio: 16 / 10; }

  /* Comfortable, even card/step padding */
  .step,
  .service-card__body,
  .review,
  .feature { padding: 1.4rem; }

  /* Coverage tags a touch more compact */
  .area-tag { font-size: 0.88rem; padding: 0.4rem 0.8rem; }

  /* Clean stacked footer meta row */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

@media (max-width: 420px) {
  .brand__tag {
    display: none;
  }

  .hero__trust {
    gap: 1rem 1.4rem;
  }

  /* Keep the hero headline commanding but never cramped on tiny screens */
  .hero h1 { font-size: clamp(2rem, 9.5vw, 2.6rem); }

  /* Full-width, comfortable primary actions */
  .hero__cta .btn { width: 100%; }
}

/* ---- Service row action buttons -------------------------------------- */
.service-row__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.sr-btn {
  padding: 0.8rem 1.3rem;
  font-size: 0.98rem;
}

.sr-btn svg {
  width: 1.1em;
  height: 1.1em;
}

/* ---- Enquire modal --------------------------------------------------- */
html.enquire-open {
  overflow: hidden;
}

.enquire {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.enquire[hidden] {
  display: none;
}

.enquire__backdrop {
  position: absolute;
  inset: 0;
  background: oklch(0.1 0 0 / 0.74);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}

.enquire.is-open .enquire__backdrop {
  opacity: 1;
}

.enquire__dialog {
  position: relative;
  width: min(30rem, 100%);
  max-height: calc(100dvh - 2.4rem);
  overflow-y: auto;
  background: var(--ink-850);
  color: var(--text-on-dark);
  border: 1px solid var(--line-dark2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 4vw, 2rem);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.enquire.is-open .enquire__dialog {
  opacity: 1;
  transform: none;
}

.enquire__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text-on-dark-muted);
  background: oklch(1 0 0 / 0.05);
  border: 1px solid var(--line-dark);
  transition: color 0.2s, background 0.2s;
}

.enquire__close:hover {
  color: var(--text-on-dark);
  background: oklch(1 0 0 / 0.1);
}

.enquire__close svg {
  width: 18px;
  height: 18px;
}

.enquire__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.enquire__steps {
  display: flex;
  gap: 0.4rem;
  margin: 0.9rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.enquire__steps li {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
  padding-top: 0.55rem;
  border-top: 2px solid var(--line-dark);
  transition: color 0.25s, border-color 0.25s;
}

.enquire__steps li.is-active {
  color: var(--text-on-dark);
  border-color: var(--amber);
}

.enquire__step {
  display: none;
}

.enquire__step.is-active {
  display: block;
  animation: enquireStep 0.35s var(--ease-out);
}

@keyframes enquireStep {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.enquire__title {
  font-size: clamp(1.3rem, 4vw, 1.55rem);
}

.enquire__sub {
  color: var(--text-on-dark-muted);
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.enquire__reg {
  width: 100%;
  margin-top: 1.15rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-on-light);
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 0.9rem 1rem;
}

.enquire__reg::placeholder {
  color: oklch(0.62 0 0);
  letter-spacing: 0.12em;
}

.enquire__reg:focus-visible {
  outline: none;
  border-color: var(--amber);
}

/* Extra step-1 fields: locking nut + tyre size */
.enquire__field {
  margin-top: 1.15rem;
}

.enquire__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-on-dark);
  margin-bottom: 0.55rem;
}

.enquire__toggle {
  display: flex;
  gap: 0.5rem;
}

.enquire__toggle-opt {
  flex: 1;
  padding: 0.75rem 0.6rem;
  border-radius: var(--r-md);
  background: var(--green);
  border: 1.5px solid transparent;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  transition: background 0.2s, box-shadow 0.2s;
}

.enquire__toggle-opt:hover {
  background: var(--green-hi);
}

.enquire__toggle-opt.is-selected {
  background: var(--green-hi);
  box-shadow: inset 0 0 0 2px #fff;
  color: #fff;
}

.enquire__tyre,
.enquire__loc {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-on-light);
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 0.8rem 1rem;
}

.enquire__loc {
  margin-top: 1.15rem;
}

.enquire__tyre::placeholder,
.enquire__loc::placeholder {
  color: oklch(0.62 0 0);
}

.enquire__tyre:focus-visible,
.enquire__loc:focus-visible {
  outline: none;
  border-color: var(--amber);
}

/* Share-my-location (GPS) helper */
.enquire__geo {
  margin-top: 0.9rem;
}

.enquire__geo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  background: oklch(0.6 0.145 150 / 0.14);
  border: 1.5px solid var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  transition: background 0.2s, opacity 0.2s;
}

.enquire__geo-btn:hover {
  background: oklch(0.6 0.145 150 / 0.24);
}

.enquire__geo-btn[disabled] {
  opacity: 0.6;
  cursor: default;
}

.enquire__geo-btn svg {
  width: 1.15em;
  height: 1.15em;
}

.enquire__geo-status {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--text-on-dark-muted);
}

.enquire__geo-status.is-ok {
  color: var(--live);
}

.enquire__geo-status.is-warn {
  color: var(--amber-hi);
}

.enquire__options {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.enquire__opt {
  text-align: left;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-md);
  background: var(--green);
  border: 1.5px solid transparent;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.2s, box-shadow 0.2s;
}

.enquire__opt::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid oklch(1 0 0 / 0.55);
  flex: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.enquire__opt:hover {
  background: var(--green-hi);
}

.enquire__opt.is-selected {
  background: var(--green-hi);
  box-shadow: inset 0 0 0 2px #fff;
}

.enquire__opt.is-selected::after {
  border-color: #fff;
  box-shadow: inset 0 0 0 4px #fff;
}

/* Continue buttons inside the modal are green, matching the options */
.enquire .btn--amber {
  --_bg: var(--green);
  --_fg: var(--green-ink);
  box-shadow: var(--shadow-green);
}

.enquire .btn--amber:hover {
  background: var(--green-hi);
}

.enquire__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
}

.enquire__summary {
  margin: 1.15rem 0 0;
  display: grid;
  gap: 0.55rem;
  background: var(--ink-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
}

.enquire__summary > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.enquire__summary dt {
  color: var(--text-on-dark-faint);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
  font-weight: 700;
}

.enquire__summary dd {
  color: var(--text-on-dark);
  font-weight: 600;
  text-align: right;
}

.enquire__send {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.enquire__action {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 800;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.enquire__action:hover {
  transform: translateY(-2px);
}

.enquire__action svg {
  width: 26px;
  height: 26px;
  flex: none;
}

.enquire__action span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.enquire__action small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  opacity: 0.9;
}

.enquire__action--wa {
  background: #25d366;
  color: #06301a;
  box-shadow: 0 12px 30px -10px oklch(0.75 0.18 155 / 0.5);
}

.enquire__action--call {
  background: var(--amber);
  color: #fff;
  box-shadow: var(--shadow-red);
}