/* =====================================================
   Barnet Service & Tuning Centre — design system
   Industrial / trustworthy local garage.
   Tokens, components, and layout are inherited from a
   prior multi-branch garage build; the branch-switcher
   rules were removed because this site has only one
   location (see README.md for context).
   ===================================================== */

:root {
  /* Palette */
  --ink:        #1a1f2a;   /* deep slate, near-black */
  --ink-soft:   #2a3140;
  --slate:      #4a525e;   /* body copy */
  --slate-2:    #6c7480;   /* muted */
  --line:       #e2e4e8;
  --paper:      #fafaf7;   /* warm off-white */
  --paper-2:    #f1f0eb;
  --card:       #ffffff;
  --accent:     #e85d24;   /* signal orange — tool chest */
  --accent-d:   #c34a18;
  --accent-l:   #fff1e8;
  --ok:         #2c8a4b;
  --warn:       #b8860b;

  /* Type */
  --f-display: "Barlow Condensed", "Helvetica Neue", Arial, sans-serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Scale */
  --container: 1200px;
  --r-sm: 4px;
  --r:    8px;
  --r-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.1;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5vw + 0.5rem, 4.5rem); }
h2 { font-size: clamp(1.8rem, 2.5vw + 0.8rem, 2.8rem); }
h3 { font-size: clamp(1.3rem, 1vw + 0.9rem, 1.6rem); }
h4 { font-size: 1.05rem; letter-spacing: 0.04em; }
p  { margin: 0 0 1rem; }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--alt { background: var(--paper-2); }
.section--dark {
  background: var(--ink);
  color: #cdd3dd;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* =====================================================
   Top utility bar + nav
   ===================================================== */
.topbar {
  background: var(--ink);
  color: #cdd3dd;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar__row {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  justify-content: space-between; align-items: center;
}
.topbar a { color: #fff; }
.topbar__social {
  display: flex; align-items: center; gap: 14px;
}
.topbar__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #cdd3dd;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.topbar__social a:hover { background: #1877f2; color: #fff; }
.topbar__social svg { width: 14px; height: 14px; }
.footer__social {
  display: inline-flex; align-items: center; gap: 10px;
  margin-left: 14px;
}
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #cdd3dd;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.footer__social a:hover { background: #1877f2; color: #fff; }
.footer__social svg { width: 15px; height: 15px; }
.topbar strong { color: #fff; }

/* Topbar left cluster — single phone, no branch switcher in this build. */
.topbar__row > div:first-child {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 14px;
  position: relative;
}

.nav {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand__mark {
  width: 40px; height: 40px;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff; font-size: 1.3rem; font-weight: 800;
  border-radius: var(--r-sm);
}
.brand__name { font-size: 1.15rem; line-height: 1; }
.brand__sub  {
  display: block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  color: var(--slate-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

.nav__links {
  display: flex; gap: 4px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active {
  background: var(--accent-l);
  color: var(--accent-d);
}

.nav__cta { white-space: nowrap; }

.nav__toggle {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  color: var(--ink);
}
.nav__toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--card);
    flex-direction: column;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
  }
  .nav.is-open .nav__links a { padding: 14px 16px; }
  /* .btn has higher cascade order; override display: inline-flex on the nav CTA so it collapses on mobile */
  .nav__cta.nav__cta { display: none; }
  .nav.is-open .nav__cta.nav__cta {
    display: inline-flex;
    margin: 12px 0 4px;
    justify-content: center;
  }
  .nav__toggle { display: grid; place-items: center; }
  .brand__sub { display: none; }
  .topbar { font-size: 0.78rem; padding: 6px 0; }
  .topbar__row { gap: 4px 12px; }
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform .15s var(--ease), background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-d); border-color: var(--accent-d); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light {
  background: #fff; color: var(--ink); border-color: #fff;
}
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn--lg { padding: 16px 28px; font-size: 1rem; }

/* =====================================================
   Hero
   ===================================================== */
.hero {
  position: relative;
  /* Layered background: dark base -> supplied Bugatti Chiron hero photo
     (Luke-supplied asset, swapped in from the original Porsche placeholder)
     -> dark vignette overlay so white text stays readable. Image is
     intrinsic 1600x1068 so it covers at any width without source sets. */
  background:
    linear-gradient(90deg, rgba(13,18,27,0.92) 0%, rgba(13,18,27,0.78) 45%, rgba(13,18,27,0.45) 100%),
    url("../img/hero-bugatti.jpg") center right / cover no-repeat,
    linear-gradient(180deg, var(--ink) 0%, #0d121b 100%);
  background-color: var(--ink);
  color: #cdd3dd;
  overflow: hidden;
  padding: 90px 0 100px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(232,93,36,0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(232,93,36,0.10), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .hero {
    padding: 40px 0 56px;
    /* On mobile, shift the photo further off-screen so the dark overlay covers
       more of it and the heading/CTA stay legible. Fallback gradient still
       gives the section its identity if the photo doesn't load. */
    background-position: 80% center, right center;
  }
  .hero__grid.hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__grid.hero__grid > * { min-width: 0; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); overflow-wrap: break-word; }
  .hero__card { overflow-wrap: anywhere; }
  .hero__ctas .btn { flex: 1 1 auto; justify-content: center; min-width: 0; }
  .hero__ctas .btn--ghost { padding-left: 18px; padding-right: 18px; }
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero p.lead {
  font-size: 1.15rem;
  color: #b6bdca;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero guarantees strip — concrete, numeric, first-viewport promises.
   Sits inside the hero section, beneath the heading/lead/CTA grid. */
.hero-promises {
  list-style: none;
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero-promises li {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
}
.hero-promises svg {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  color: var(--accent);
}
.hero-promises .hp-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.hero-promises .hp-lbl {
  font-size: 0.82rem;
  color: #b6bdca;
  line-height: 1.25;
  margin-top: 2px;
}
@media (max-width: 880px) {
  .hero-promises { grid-template-columns: repeat(2, 1fr); margin-top: 36px; padding-top: 24px; gap: 18px; }
}
@media (max-width: 480px) {
  .hero-promises { grid-template-columns: 1fr; }
}

.hero__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(4px);
}
.hero__card h3 {
  color: #fff;
  margin-bottom: 8px;
}
.hero__loc {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px; margin-top: 18px;
}
.hero__loc + .hero__loc { margin-top: 12px; }
.hero__loc h4 { color: #fff; margin-bottom: 6px; }
.hero__loc p { margin: 4px 0; font-size: 0.95rem; color: #cdd3dd; }
.hero__loc .phone {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* =====================================================
   Trust strip
   ===================================================== */
.trust {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust__item .num {
  display: block;
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.trust__item .lbl {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  font-weight: 700;
  margin-top: 6px;
  display: block;
}
.trust__item .sub { color: var(--slate-2); font-size: 0.85rem; }
@media (max-width: 720px) {
  .trust__row { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
}

/* =====================================================
   Service grid
   ===================================================== */
.services__header { max-width: 700px; margin-bottom: 48px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }

.service {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  display: flex; flex-direction: column;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -16px rgba(0,0,0,0.18);
  border-color: var(--accent);
}
.service__icon {
  width: 56px; height: 56px;
  background: var(--accent-l);
  color: var(--accent-d);
  display: grid; place-items: center;
  border-radius: var(--r);
  margin-bottom: 18px;
}
.service__icon svg { width: 28px; height: 28px; }
.service h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.service p { font-size: 0.95rem; flex: 1; }
.service__link {
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-d);
  display: inline-flex; align-items: center; gap: 6px;
}
.service__link::after { content: "→"; transition: transform .15s var(--ease); }
.service:hover .service__link::after { transform: translateX(3px); }

/* Service detail (page) */
.service-detail { max-width: 820px; margin: 0 auto; }
.service-detail h1 { font-size: clamp(2rem, 3vw + 1rem, 3rem); }
.service-detail ul { padding-left: 20px; }
.service-detail ul li { margin-bottom: 6px; }

/* =====================================================
   Section heading pattern
   ===================================================== */
.section__head { max-width: 720px; margin-bottom: 48px; }
.section__head p { font-size: 1.05rem; color: var(--slate); }

/* =====================================================
   Two-column blocks (about etc.)
   ===================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } }

.placeholder {
  background:
    repeating-linear-gradient(
      45deg,
      var(--paper-2),
      var(--paper-2) 12px,
      #e8e6df 12px,
      #e8e6df 24px
    );
  border: 2px dashed #c8c5b9;
  border-radius: var(--r-lg);
  aspect-ratio: 16/10;
  display: grid; place-items: center;
  color: var(--slate-2);
  font-weight: 600;
  text-align: center;
  padding: 20px;
}
.placeholder small {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  margin-top: 6px;
  color: var(--slate-2);
  opacity: 0.8;
}

/* Inline figure inside service copy (e.g. wheel-alignment diagram on
   services/tyres.html). Real, named asset — not a placeholder. */
.align-diagram {
  margin: 28px auto 36px;
  max-width: 560px;
  text-align: center;
}
.align-diagram img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.align-diagram figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--slate-2);
  font-style: italic;
}

/* =====================================================
   Make strip (makes served)
   ===================================================== */
.makes {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.makes__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}
.makes__row .lbl {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-right: 12px;
  align-self: center;
}
.makes__row .mk {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* =====================================================
   CTA banner
   ===================================================== */
.cta {
  background: var(--accent);
  color: #fff;
  padding: 64px 0;
}
.cta__row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.cta h2 { color: #fff; margin: 0; }
.cta p { margin: 8px 0 0; opacity: 0.95; }

/* =====================================================
   Booking form / general forms
   ===================================================== */
.form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
}
.form h3 { margin-bottom: 8px; }
.form p.form__lede { color: var(--slate-2); margin-bottom: 24px; }

.field { display: block; margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-l);
}
.field textarea { min-height: 120px; resize: vertical; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.form__note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--slate-2);
  display: flex; gap: 8px; align-items: flex-start;
}
.form__note svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }

/* Booking-specific: slot picker */
.slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 600px) { .slots { grid-template-columns: repeat(3, 1fr); } }
.slot {
  position: relative;
}
.slot input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.slot label {
  display: block;
  padding: 12px 0;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: all .15s var(--ease);
}
.slot input:checked + label {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.slot input:disabled + label {
  background: var(--paper-2);
  color: var(--slate-2);
  cursor: not-allowed;
  text-decoration: line-through;
}
.slot label:hover { border-color: var(--accent); }

/* simple date input wrap */
.date-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Success banner inside booking page (shown via .is-active) */
.form__success {
  display: none;
  background: #e6f4ea;
  border: 1px solid #b6dec3;
  color: var(--ok);
  border-radius: var(--r);
  padding: 16px;
  margin-bottom: 24px;
}
.form__success.is-active { display: block; }

/* Find-us block on the one-page homepage */
.location-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}
.location-card {
  font-style: normal;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.location-card__name {
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
}
.location-card__action { margin: 14px 0 0; }
.location-card__hours { margin: 14px 0 0; font-size: 0.9rem; color: var(--slate-2); }
.map-frame {
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper-2);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
}
@media (max-width: 760px) {
  .location-grid { grid-template-columns: 1fr; }
  .map-frame, .map-frame iframe { min-height: 280px; }
}

/* =====================================================
   Location page
   ===================================================== */
.location { padding: 80px 0; }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) { .location__grid { grid-template-columns: 1fr; } }
.loc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.loc-card h3 { margin-bottom: 14px; }
.loc-card .phone {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  margin: 10px 0;
  display: block;
}
.loc-card ul {
  list-style: none; padding: 0; margin: 0;
}
.loc-card ul li {
  display: flex; gap: 10px;
  padding: 6px 0; font-size: 0.95rem;
}
.loc-card ul li svg {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--accent);
  margin-top: 3px;
}
.loc-card .map {
  margin-top: 16px;
  aspect-ratio: 16/10;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-2);
  display: grid; place-items: center;
  color: var(--slate-2);
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--line);
}
.loc-card .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.loc-card .map small {
  display: block;
  font-weight: 500; font-size: 0.8rem; margin-top: 4px;
}
.loc-card .map__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-d);
}
.loc-card .map__link:hover { text-decoration: underline; }

/* =====================================================
   Testimonials
   ===================================================== */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.review__stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review blockquote {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
}
.review__author {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem;
}
.review__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-l);
  color: var(--accent-d);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--f-display);
}
.review__name { font-weight: 700; color: var(--ink); }
.review__meta { color: var(--slate-2); font-size: 0.85rem; }

/* Placeholder shown when no verified reviews are available yet.
   Visually distinct from a real review so visitors don't read unverified
   text as customer feedback. Dashed border + warm amber tone. */
.reviews-placeholder {
  border: 2px dashed var(--line);
  border-radius: var(--r-lg);
  padding: 48px 32px;
  text-align: center;
  background: rgba(232, 93, 36, 0.04);
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
}
.reviews-placeholder__icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  color: var(--accent);
  opacity: 0.55;
}
.reviews-placeholder__icon svg { width: 100%; height: 100%; }
.reviews-placeholder p { margin: 8px auto; max-width: 56ch; line-height: 1.6; }
.reviews-placeholder p strong { color: var(--ink); }

/* Facebook Page Plugin wrapper */
.fb-page-wrap {
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
}
.fb-page-wrap iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 760px) {
  .fb-page-wrap { max-width: 500px; }
}

/* =====================================================
   FAQ
   ===================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq details[open] {
  border-color: var(--accent);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 600;
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq details > *:not(summary) {
  padding: 0 22px 22px;
  color: var(--slate);
  margin: 0;
}

/* =====================================================
   Footer
   ===================================================== */
footer {
  background: var(--ink);
  color: #aab1bd;
  padding: 64px 0 32px;
}
footer h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 8px; }
footer ul a { color: #aab1bd; font-size: 0.92rem; }
footer ul a:hover { color: var(--accent); }

.footer__brand .brand__mark { background: var(--accent); }
.footer__brand p { font-size: 0.9rem; max-width: 280px; }

.footer__legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: space-between; align-items: center;
  font-size: 0.85rem;
  color: #6e7682;
}
.footer__legal a { color: #aab1bd; }

/* =====================================================
   Page hero (smaller banner variant)
   ===================================================== */
.page-hero {
  background: var(--ink);
  color: #cdd3dd;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(232,93,36,0.18), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { color: #fff; max-width: 720px; }
.page-hero p { max-width: 640px; font-size: 1.1rem; color: #cdd3dd; }

/* =====================================================
   Misc
   ===================================================== */
.tag {
  display: inline-block;
  background: var(--accent-l);
  color: var(--accent-d);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.muted { color: var(--slate-2); }
.center { text-align: center; }

.skip {
  position: absolute; left: -10000px;
}
.skip:focus {
  position: static;
  background: var(--accent); color: #fff;
  padding: 8px 14px;
  display: inline-block;
}

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

/* =====================================================
   Cookie consent banner
   ===================================================== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  max-width: 720px;
  margin: 0 auto;
  background: var(--card, #fff);
  color: var(--ink, #1a1f2a);
  border: 1px solid var(--line, #e0ddd2);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(15, 17, 24, 0.18);
  padding: 18px 22px;
  display: none;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner__msg {
  flex: 1 1 320px;
  min-width: 0;
}
.cookie-banner__msg strong {
  display: block;
  font-family: var(--f-display, sans-serif);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.cookie-banner__msg p {
  margin: 0;
  color: var(--slate-2, #4a5260);
  line-height: 1.45;
}
.cookie-banner__msg a {
  color: var(--accent-d, #b94215);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner__actions .btn {
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 8px;
}
@media (max-width: 600px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 14px 16px;
  }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1 1 auto; }
}
