/* ==========================================================================
   E-Scooter Repairs & Servicing Sunshine Coast — one-page site
   Mobile-first. Light, neutral palette with ONE subtle accent. No external
   dependencies. Template note: the whole look is driven by the design tokens
   below — a future client re-skins by editing the custom properties in :root
   (palette, accent, radius, shadows, spacing, fonts) and swapping the text
   in index.html. Nothing else needs to change.
   ========================================================================== */

:root {
  /* ---- palette (neutral: white / off-white / charcoal / grey) ---- */
  --bg: #ffffff;            /* page background */
  --bg-soft: #f7f6f3;       /* alternating section band (off-white) */
  --surface: #ffffff;       /* card background */
  --surface-2: #fcfbf9;     /* card inner tint */
  --border: #eae8e2;        /* hairline borders */
  --border-strong: #d8d5cd;
  --text: #26231e;          /* primary text — warm charcoal */
  --muted: #6f6a62;         /* secondary text — grey */
  --footer-bg: #26231e;     /* footer — charcoal */

  /* ---- accent (ONE subtle accent — amber) ---- */
  --accent: #b45309;        /* amber-700: links, icons, key strokes (AA on white) */
  --accent-strong: #92400e; /* amber-800: hover / pressed */
  --accent-soft: #fdf0dd;   /* pale amber tint for icon wells */
  --star: #f59e0b;          /* review stars (amber) */

  /* ---- shape ---- */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* ---- elevation (soft, restrained) ---- */
  --shadow-sm: 0 1px 2px rgba(38, 35, 30, 0.05), 0 1px 3px rgba(38, 35, 30, 0.06);
  --shadow-md: 0 6px 18px rgba(38, 35, 30, 0.08), 0 2px 6px rgba(38, 35, 30, 0.05);
  --shadow-lg: 0 20px 44px rgba(38, 35, 30, 0.14), 0 5px 12px rgba(38, 35, 30, 0.07);

  /* ---- layout & type ---- */
  --header-h: 68px;
  --maxw: 1120px;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-display: var(--font-body); /* swap to a serif here for an editorial look */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: none; transition: color 0.15s var(--ease); }
a:hover { color: var(--accent-strong); text-decoration: underline; }

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

::selection { background: var(--accent-soft); color: var(--text); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { left: 8px; }

/* ------------------------------------ header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  min-width: 0;
  flex: 1 1 auto;
}
.brand:hover { text-decoration: none; color: var(--text); }
.brand-avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
  background: var(--bg-soft);
}
.brand-name {
  font-weight: 800;
  font-size: 0.94rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-nav { margin-left: auto; }

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  display: block;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
}
.nav-links a:hover {
  color: var(--accent);
  text-decoration: none;
  background: var(--bg-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle:hover { background: var(--bg-soft); }

.nav-toggle-box { display: flex; flex-direction: column; gap: 5px; }
.nav-toggle-box span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.22s var(--ease), opacity 0.18s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------ buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.28);
}
.btn-accent:hover { background: var(--accent-strong); color: #fff; box-shadow: 0 8px 26px rgba(180, 83, 9, 0.34); }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 16px 30px; font-size: 1.06rem; }

.header-call { font-size: 0.9rem; padding: 10px 18px; }

/* ------------------------------------ hero */
.hero {
  padding: 52px 0 60px;
  background:
    radial-gradient(760px 360px at 85% -12%, rgba(180, 83, 9, 0.07), transparent 62%),
    var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.accent-text { color: var(--accent); }

.lede {
  margin: 0 0 28px;
  font-size: clamp(1.06rem, 2.3vw, 1.24rem);
  color: var(--muted);
  max-width: 33em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-note {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
}

.rating-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  color: var(--text);
  line-height: 1;
}
.rating-badge:hover { text-decoration: none; }
.rating-badge .rb-star { color: var(--star); font-size: 1.05rem; letter-spacing: 1px; }
.rating-badge .rb-score { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.rating-badge .rb-label { font-size: 0.86rem; color: var(--muted); font-weight: 600; }

/* ------------------------------------ generic sections */
.section { padding: clamp(64px, 9vw, 96px) 0; scroll-margin-top: calc(var(--header-h) + 12px); }
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-lede {
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 1.07rem;
  max-width: 42em;
}

.section-cta-line {
  margin: 38px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
}
.section-cta-line a { font-weight: 700; }

.services-art {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}
.services-art img {
  width: 100%;
  max-width: 320px;
  height: auto;
  opacity: 0.9;
}

/* ------------------------------------ services */
.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}

.card h3 { margin: 0 0 8px; font-size: 1.14rem; font-weight: 800; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--muted); font-size: 0.97rem; }

/* ------------------------------------ steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  counter-reset: step;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.step h3 { margin: 0 0 8px; font-size: 1.12rem; font-weight: 800; }
.step p { margin: 0; color: var(--muted); font-size: 0.97rem; }
.step p a { font-weight: 600; }

/* ------------------------------------ reviews */
.reviews-head {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.reviews-heading .section-lede { margin-bottom: 0; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  color: var(--text);
  line-height: 1;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.google-badge:hover {
  text-decoration: none;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.badge-star { color: var(--star); font-size: 1.5rem; letter-spacing: 2px; }
.badge-rating { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.badge-count { color: var(--muted); font-size: 0.92rem; font-weight: 600; line-height: 1.25; }
.badge-count strong { color: var(--text); font-weight: 800; }

.review-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }

.review-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 14px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}

.review-name {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.review-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
}

.review-stars {
  margin: 0;
  color: var(--star);
  font-size: 1rem;
  letter-spacing: 3px;
  line-height: 1;
  white-space: nowrap;
}

.review-date {
  margin: 2px 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.review-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.reviews-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
}

/* ------------------------------------ service area */
.area-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background:
    radial-gradient(560px 240px at 92% 0%, rgba(180, 83, 9, 0.06), transparent 60%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}

.area-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
}

.area-card h2 { margin-bottom: 8px; }
.area-text { margin: 0; color: var(--muted); font-size: 1.05rem; max-width: 44em; }
.area-text + .area-text { margin-top: 12px; }
.area-list {
  margin: 14px 0 2px;
  padding-left: 1.4em;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.area-list li { margin: 3px 0; }
.area-note {
  margin: 16px 0 0;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 1rem;
}

/* ------------------------------------ contact */
.section-contact {
  background:
    radial-gradient(640px 300px at 50% -10%, rgba(180, 83, 9, 0.06), transparent 62%),
    var(--bg-soft);
  border-top: 1px solid var(--border);
}

.contact-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.text-center { text-align: center; }
.text-center.section-lede { margin-left: auto; margin-right: auto; }

.contact-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact-card:hover {
  text-decoration: none;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 10px;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-value {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  word-break: break-word;
}
.contact-hint {
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 4px;
}

/* ------------------------------------ footer */
.site-footer {
  background: var(--footer-bg);
  color: #d6d2cb;
  padding: 44px 0 40px;
  text-align: center;
}

.footer-name { margin: 0 0 6px; font-weight: 800; font-size: 1.05rem; color: #fff; }
.footer-tagline { margin: 0 auto 18px; color: #a39e96; font-size: 0.94rem; max-width: 34em; }
.footer-meta { margin: 0 0 20px; color: #a39e96; font-size: 0.95rem; display: flex; flex-wrap: wrap; gap: 6px 12px; justify-content: center; }
.footer-meta a { color: #e9e6e0; font-weight: 600; }
.footer-meta a:hover { color: #fbbf24; }
.footer-credit { margin: 0; color: #8d887f; font-size: 0.85rem; }
.footer-credit a { color: #b9b4ab; }
.footer-credit a:hover { color: #fbbf24; }

/* ------------------------------------ reveal (progressive enhancement:
   .js on <html> is set by app.js; without JS content stays visible) */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.js .reveal.revealed { opacity: 1; transform: none; }
.js .reveal.reveal-1 { transition-delay: 0.06s; }
.js .reveal.reveal-2 { transition-delay: 0.12s; }
.js .reveal.reveal-3 { transition-delay: 0.18s; }

/* ------------------------------------ shop */
.section-shop { padding-top: 0; }
.shop-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 26px;
  background:
    radial-gradient(560px 240px at 95% 0%, rgba(180, 83, 9, 0.07), transparent 60%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.shop-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }

.shop-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
}

.shop-copy { flex: 1 1 260px; min-width: 0; }
.shop-copy .section-kicker { margin-bottom: 8px; }
.shop-statement {
  margin: 0;
  font-size: clamp(1.12rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  max-width: 24em;
}
.shop-btn { flex: 0 0 auto; }

/* ------------------------------------ repair enquiry form */
.enquiry-head { margin-bottom: 30px; }
.enquiry-head .section-lede { margin-bottom: 0; }

.enquiry-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(22px, 4vw, 38px);
  max-width: 760px;
  margin: 0 auto;
}

.form-group {
  border: 0;
  padding: 0;
  margin: 0 0 28px;
}
.form-group:last-of-type { margin-bottom: 24px; }

.form-group legend {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.form-group legend::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 20px;
  border-radius: 4px;
  background: var(--accent);
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.form-field label { font-weight: 700; font-size: 0.92rem; }
.form-field .req { color: var(--accent); }
.form-field .opt { color: var(--muted); font-weight: 600; font-size: 0.86rem; }

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #a29c92; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.18);
}
.form-field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }

.form-field input[type="file"] {
  width: 100%;
  font: inherit;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  cursor: pointer;
}
.form-field input[type="file"]::file-selector-button {
  font: inherit;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  margin-right: 12px;
  cursor: pointer;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}
.form-field input[type="file"]::file-selector-button:hover {
  background: #fbe9cd;
  border-color: var(--accent);
}

.form-hint { margin: 0; font-size: 0.84rem; color: var(--muted); }
.form-files { margin: 2px 0 0; font-size: 0.84rem; font-weight: 600; color: var(--accent); word-break: break-word; }

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.radio-option {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
}
.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
  margin: 0;
}
.radio-option:hover { color: var(--accent); }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-status {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-status.ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-status.err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ------------------------------------ responsive */
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .form-row .span-2 { grid-column: 1 / -1; }
}

/* Mid-width header: with the extra "Repair enquiry" link the desktop nav needs
   a little less padding to fit without wrapping between 768px and 1080px. */
@media (min-width: 768px) and (max-width: 1080px) {
  .nav-links a { padding: 8px 10px; font-size: 0.86rem; }
  .header-call { padding: 10px 14px; font-size: 0.84rem; }
}

@media (min-width: 920px) {
  .hero { padding: 92px 0 84px; }
  .hero-grid { grid-template-columns: 1.02fr 0.98fr; gap: 56px; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); max-width: 660px; margin: 0 auto; }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
  }
  .reviews-heading { max-width: 56%; }
}

@media (max-width: 767px) {
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 10px 16px 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.28s var(--ease), opacity 0.2s ease;
  }
  .nav-links.open {
    max-height: 340px;
    opacity: 1;
    visibility: visible;
  }
  .nav-links a { padding: 13px 12px; font-size: 1.02rem; border-radius: var(--radius-sm); }

  .hero-ctas .btn { width: 100%; }
}

/* ------------------------------------ reduced 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;
  }
  .js .reveal { opacity: 1; transform: none; }
}
