/* =============================================================
   Shields Auto Centre — Main Stylesheet
   Color palette: black + yellow accent + white
   Inspired by modern auto shops: clean, bold, trustworthy
   ============================================================= */

/* ── Reset & Tokens ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colors */
  --clr-bg:        #000000;
  --clr-surface:   #111111;
  --clr-surface-2: #1c1c1c;
  --clr-border:    #2e2e2e;
  --clr-accent:    #f5c518;        /* yellow — action / attention */
  --clr-accent-lt: #ffd740;
  --clr-text:      #ffffff;
  --clr-muted:     #999999;
  --clr-white:     #ffffff;

  /* Type — system fonts, no external requests */
  --font-head:  system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:  system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container: 1200px;
  --radius:    6px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ── Utility ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-2xl) 0; }
.section--alt { background: var(--clr-surface); }

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.section__sub {
  color: var(--clr-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--clr-accent);
  color: #000000;
  border-color: var(--clr-accent);
}
.btn--primary:hover { background: var(--clr-accent-lt); border-color: var(--clr-accent-lt); }

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border-color: var(--clr-border);
}
.btn--ghost:hover { border-color: var(--clr-muted); }

.btn--sm  { padding: 0.4rem 1rem;   font-size: 0.875rem; }
.btn--lg  { padding: 0.8rem 1.8rem; font-size: 1rem; }
.btn--xl  { padding: 1rem 2.4rem;   font-size: 1.15rem; font-weight: 700; }
.btn--full { width: 100%; justify-content: center; padding: 0.85rem; font-size: 1rem; }

/* ── Announcement Bar ────────────────────────────────────────── */
.announce-bar {
  background: var(--clr-accent);
  color: #000000;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.announce-bar__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.announce-bar__track span { flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Header / Nav ────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--clr-border);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: 64px;
}

.nav__logo { flex-shrink: 0; }
.nav__logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nav__logo-text em {
  font-style: normal;
  color: var(--clr-accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.nav__logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  margin-left: auto;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--clr-text); }
.nav__links a.nav__link--active,
.mobile-menu__links a.nav__link--active {
  color: var(--clr-accent) !important;
  font-weight: 600;
}

.nav__cta { display: flex; align-items: center; gap: var(--space-sm); margin-left: var(--space-sm); }

.nav__phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--clr-accent); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── Page hero (sub-pages) ───────────────────────────────────── */
.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
}
.page-hero .section__title { margin-bottom: var(--space-xs); }
.page-hero .section__sub { margin: 0; font-size: 1.25rem; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}
.hero__heading em {
  font-style: normal;
  color: var(--clr-accent);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(240,240,240,0.8);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}
.hero__actions .btn--primary {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
}
.hero__actions .btn--ghost {
  width: 100%;
  text-align: center;
  justify-content: center;
}


/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--clr-surface-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-md) 0;
}

.trust-bar__grid {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.trust-bar__icon {
  width: 22px;
  height: 22px;
  color: var(--clr-accent);
  flex-shrink: 0;
}

/* ── Book CTA bar ────────────────────────────────────────────── */
.book-cta-bar {
  padding: var(--space-md) 0;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
}

/* ── Service list ─────────────────────────────────────────────── */
.svc-list-wrap { max-width: 100%; }

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.svc-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.svc-item:hover {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 1px var(--clr-accent), 0 8px 32px rgba(245, 197, 24, 0.08);
}

@media (min-width: 680px) {
  .svc-item { flex-direction: row; min-height: 220px; }
  .svc-item:nth-child(even) { flex-direction: row-reverse; }
}

.svc-item__img-link {
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

/* Gradient fades image edge into card background, always toward the text side */
@media (min-width: 680px) {
  .svc-item__img-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 55%, #111 100%);
    pointer-events: none;
  }
  .svc-item:nth-child(even) .svc-item__img-link::after {
    background: linear-gradient(to left, transparent 55%, #111 100%);
  }
}

.svc-item__img {
  width: 100%;
  aspect-ratio: 16 / 7;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.svc-item__img-link:hover .svc-item__img {
  opacity: 0.9;
  transform: scale(1.03);
}

@media (min-width: 680px) {
  .svc-item__img-link { width: 50%; align-self: stretch; }
  .svc-item__img { width: 100%; height: 100%; min-height: 100%; aspect-ratio: unset; }
  .svc-item__body { width: 50%; }
}

/* Even cards: text faces the image (right-aligned within text panel) */
@media (min-width: 680px) {
  .svc-item:nth-child(even) .svc-item__body {
    align-items: flex-end;
    text-align: right;
    width: 38%;
    flex: 0 0 38%;
  }
  .svc-item:nth-child(even) .svc-item__img-link {
    width: 62%;
    flex: 0 0 62%;
  }
  .svc-item:nth-child(even) .svc-item__name {
    border-left: none;
    border-right: 3px solid var(--clr-accent);
    padding-left: 0;
    padding-right: 0.75rem;
  }
}

.svc-item__img--oil    { background-color: #2d1400; background-image: url('../img/webp/oil.webp'); }
.svc-item__img--brakes { background-color: #2d0000; background-image: url('../img/webp/brake.webp'); }
.svc-item__img--tires  { background-color: #141414; background-image: url('../img/webp/tire.webp'); }
.svc-item__img--align  { background-color: #001828; background-image: url('../img/webp/wheel-alignment.webp'); }
.svc-item__img--diag   { background-color: #1f1000; background-image: url('../img/webp/engine.webp'); }
.svc-item__img--ac     { background-color: #001420; background-image: url('../img/webp/air-con.webp'); }
.svc-item__img--body   { background-color: #141a20; background-image: url('../img/webp/body-repair.webp'); }
.svc-item__img--detail { background-color: #001a14; background-image: url('../img/webp/detailing.webp'); }

@media (max-width: 680px) {
  .svc-item__img--oil    { background-image: url('../img/webp/oil-mobile.webp'); }
  .svc-item__img--brakes { background-image: url('../img/webp/brake-mobile.webp'); }
  .svc-item__img--tires  { background-image: url('../img/webp/tire-mobile.webp'); }
  .svc-item__img--align  { background-image: url('../img/webp/wheel-alignment-mobile.webp'); }
  .svc-item__img--diag   { background-image: url('../img/webp/engine-mobile.webp'); }
  .svc-item__img--ac     { background-image: url('../img/webp/air-con-mobile.webp'); }
  .svc-item__img--body   { background-image: url('../img/webp/body-repair-mobile.webp'); }
  .svc-item__img--detail { background-image: url('../img/webp/detailing-mobile.webp'); }
}

.svc-item__body {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-sm);
  flex: 1;
}

.svc-item__body .btn { margin-top: var(--space-xs); }

/* Ghost button accent on hover — yellow underline reinforces the CTA */
.svc-item__body .btn--ghost:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: rgba(245, 197, 24, 0.06);
}

/* Service name: slightly larger with a yellow left-bar accent */
.svc-item__name {
  font-size: 1.55rem;
  font-weight: 700;
  padding-left: 0.75rem;
  border-left: 3px solid var(--clr-accent);
  line-height: 1.2;
}

.svc-item__desc {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.7;
  max-width: 420px;
}

/* ── Service detail page ─────────────────────────────────────── */
.svc-detail__img {
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 340px;
  background-size: cover;
  background-position: center;
}
.svc-detail__img--oil    { background-color: #2d1400; background-image: url('../img/webp/oil.webp'); }
.svc-detail__img--brakes { background-color: #2d0000; background-image: url('../img/webp/brake.webp'); }
.svc-detail__img--tires  { background-color: #141414; background-image: url('../img/webp/tire.webp'); }
.svc-detail__img--align  { background-color: #001828; background-image: url('../img/webp/wheel-alignment.webp'); }
.svc-detail__img--diag   { background-color: #1f1000; background-image: url('../img/webp/engine.webp'); }
.svc-detail__img--ac     { background-color: #001420; background-image: url('../img/webp/air-con.webp'); }
.svc-detail__img--body   { background-color: #141a20; background-image: url('../img/webp/body-repair.webp'); }
.svc-detail__img--detail { background-color: #001a14; background-image: url('../img/webp/detailing.webp'); }

@media (max-width: 680px) {
  .svc-detail__img--oil    { background-image: url('../img/webp/oil-mobile.webp'); }
  .svc-detail__img--brakes { background-image: url('../img/webp/brake-mobile.webp'); }
  .svc-detail__img--tires  { background-image: url('../img/webp/tire-mobile.webp'); }
  .svc-detail__img--align  { background-image: url('../img/webp/wheel-alignment-mobile.webp'); }
  .svc-detail__img--diag   { background-image: url('../img/webp/engine-mobile.webp'); }
  .svc-detail__img--ac     { background-image: url('../img/webp/air-con-mobile.webp'); }
  .svc-detail__img--body   { background-image: url('../img/webp/body-repair-mobile.webp'); }
  .svc-detail__img--detail { background-image: url('../img/webp/detailing-mobile.webp'); }
}

.svc-detail__content {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.svc-detail__content p {
  color: var(--clr-muted);
  line-height: 1.7;
}

.svc-detail__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.svc-detail__includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--clr-text);
}
.svc-detail__includes li::before {
  content: '✓';
  color: var(--clr-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.svc-detail__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.svc-detail__cta .btn {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

@media (min-width: 480px) {
  .svc-detail__cta {
    flex-direction: row;
    align-items: center;
  }
  .svc-detail__cta .btn {
    width: auto;
    flex: 1;
  }
}

/* ── Service Cards (grid) ────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 700px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
}

.svc-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.svc-card:active { transform: scale(0.97); }
@media (hover: hover) {
  .svc-card:hover { border-color: var(--clr-accent); }
  .svc-card:hover .svc-card__name { color: var(--clr-accent); }
}

.svc-card__img {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-card__img svg {
  width: 38%;
  height: 38%;
  color: #fff;
  opacity: 0.35;
}

/* Placeholder colors — swap for background-image when photos arrive */
.svc-card__img--oil    { background: #2d1400; }
.svc-card__img--brakes { background: #2d0000; }
.svc-card__img--tires  { background: #141414; }
.svc-card__img--balance{ background: #001828; }
.svc-card__img--diag   { background: #1f1000; }
.svc-card__img--ac     { background: #001420; }
.svc-card__img--body   { background: #141a20; }
.svc-card__img--detail { background: #001a14; }
.svc-card__img--other  { background: #18181e; }

.svc-card__body {
  padding: 0.65rem 0.75rem 0.8rem;
  flex: 1;
}

.svc-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  transition: color 0.15s;
  line-height: 1.2;
}

.svc-card__desc {
  font-size: 0.78rem;
  color: var(--clr-muted);
  line-height: 1.35;
}

.svc-card--other .svc-card__img { opacity: 0.6; }

/* ── Services List ───────────────────────────────────────────── */
.service-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--clr-border);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: var(--clr-surface-2); }
.service-row:hover .service-row__cta { color: var(--clr-accent-lt); }

.service-row__body { flex: 1; }
.service-row__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.service-row__desc {
  font-size: 0.875rem;
  color: var(--clr-muted);
  line-height: 1.5;
}
.service-row__cta {
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: color 0.15s;
}

.service-row--other { opacity: 0.75; }
.service-row--other:hover { opacity: 1; }

/* ── Offers / Coupons ────────────────────────────────────────── */
.offers__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.offer-card {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-surface-2);
  transition: border-color 0.2s;
}
.offer-card:hover { border-color: var(--clr-accent); }

/* Highlight variant — accent left border */
.offer-card--highlight { border-left: 4px solid var(--clr-accent); }

.offer-card__body {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  justify-content: center;
}

.offer-card__title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

.offer-card__desc {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

.offer-card__pricing {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.offer-card__pricing li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--clr-muted);
}
.offer-card__pricing li span { flex: 1; }

.price {
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}
.price--cta {
  color: var(--clr-accent-lt);
  font-size: 1.1rem;
}

.offer-card__includes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
}
.offer-card__includes li {
  font-size: 0.8rem;
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.offer-card__includes li::before {
  content: '✓';
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 0.75rem;
}

.offer-card__cta { align-self: flex-start; margin-top: var(--space-xs); }



/* ── Booking Form ────────────────────────────────────────────── */
.booking__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.booking__form {
  max-width: 680px;
  margin: 0 auto;
}

.booking__avail {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-accent);
  border-radius: var(--radius);
  padding: var(--space-sm);
  font-size: 0.875rem;
  min-height: 48px;
}

/* Form styles */
.booking__form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group__legend {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-accent);
  margin-bottom: var(--space-xs);
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field--checkbox { flex-direction: row; align-items: center; gap: 0.5rem; cursor: pointer; }
.field--checkbox input { width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }

.field__label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; color: var(--clr-muted); }
.field__hint   { font-size: 0.75rem; color: var(--clr-muted); }
.field__optional { font-weight: 400; }

.field input,
.field select,
.field textarea {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.6rem 0.75rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--clr-accent); }
.field textarea { resize: vertical; }
.field select option { background: var(--clr-surface-2); }

.booking__fine-print { font-size: 0.75rem; color: var(--clr-muted); text-align: center; }

.booking__feedback {
  padding: var(--space-sm);
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
}
.booking__feedback.success { background: rgba(76,175,80,0.15); border: 1px solid #4caf50; color: #81c784; }
.booking__feedback.error   { background: rgba(244,67,54,0.15);  border: 1px solid #f44336; color: #e57373; }

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews__eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: var(--space-sm);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.review-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
}

.review-card__stars { color: var(--clr-accent); font-size: 1rem; letter-spacing: 0.05em; }

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--clr-muted);
  flex: 1;
  font-style: italic;
}

.review-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-border);
}

.review-card__author { display: flex; align-items: center; gap: 0.6rem; }

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  flex-shrink: 0;
}

.review-card__name { font-size: 0.85rem; font-weight: 600; color: var(--clr-text); }

.review-card__g { width: 20px; height: 20px; flex-shrink: 0; }

.reviews__cta {
  display: block;
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  color: var(--clr-muted);
  text-decoration: underline;
  transition: color 0.2s;
}
.reviews__cta:hover { color: var(--clr-accent); }

/* ── About ───────────────────────────────────────────────────── */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__img-wrap { border-radius: var(--radius-lg); overflow: hidden; }

.about__img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about__img-placeholder {
  aspect-ratio: 4/3;
  background: var(--clr-surface-2);
  border: 1px dashed var(--clr-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-muted);
}

.about__copy .section__title { text-align: left; margin-bottom: var(--space-sm); }
.about__copy p { color: var(--clr-muted); margin-bottom: var(--space-sm); }
.about__creds { list-style: none; margin-top: var(--space-md); display: flex; flex-direction: column; gap: 0.4rem; }
.about__creds li { font-size: 0.9rem; color: var(--clr-text); }

/* ── Contact ─────────────────────────────────────────────────── */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__info .section__title { text-align: left; margin-bottom: var(--space-md); }

.contact__address { font-style: normal; color: var(--clr-muted); margin-bottom: var(--space-md); }

.contact__hours { margin-bottom: var(--space-md); overflow-x: auto; }
.contact__hours h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; text-transform: uppercase; margin-bottom: var(--space-xs); }
.contact__hours table { border-collapse: collapse; font-size: 0.85rem; min-width: 240px; }
.contact__hours td { padding: 0.2rem 1rem 0.2rem 0; color: var(--clr-muted); }
.contact__hours td:first-child { color: var(--clr-text); font-weight: 500; }

.contact__channels { display: flex; flex-direction: column; gap: var(--space-xs); }

.contact__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--clr-text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  transition: color 0.2s;
}
.contact__link:hover { color: var(--clr-accent); }
.contact__link svg { width: 18px; height: 18px; flex-shrink: 0; }

.contact__map { border-radius: var(--radius-lg); overflow: visible; display: flex; flex-direction: column; gap: var(--space-sm); }
.contact__map iframe { border-radius: var(--radius-lg); overflow: hidden; }
.contact__directions { align-self: flex-start; }
.contact__map-placeholder {
  aspect-ratio: 16/9;
  background: var(--clr-surface-2);
  border: 1px dashed var(--clr-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-muted);
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer__brand { display: flex; flex-direction: column; }

.footer__brand-tagline { font-size: 0.875rem; color: var(--clr-muted); margin: var(--space-sm) 0; line-height: 1.6; }

.footer__socials { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); }
.footer__social { color: var(--clr-muted); transition: color 0.2s; }
.footer__social:hover { color: var(--clr-accent); }
.footer__social svg { width: 20px; height: 20px; }

.footer__col-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.875rem; color: var(--clr-muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--clr-text); }

.footer__contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--clr-muted); }
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--clr-accent); }
.footer__contact-item a { color: var(--clr-muted); transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--clr-text); }

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding: var(--space-sm) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.footer__copy { font-size: 0.78rem; color: var(--clr-muted); }
.footer__powered { font-size: 0.78rem; color: var(--clr-muted); }
.footer__powered strong { color: var(--clr-text); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── Sticky booking bar (mobile only) ───────────────────────── */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 0.75rem var(--space-md);
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

/* ── Mobile nav drawer ───────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.mobile-menu.is-open { display: block; }

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  animation: fadeIn 0.2s ease;
}

.mobile-menu__drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--clr-surface);
  border-left: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-md);
  gap: var(--space-md);
  animation: slideIn 0.25s ease;
  overflow-y: auto;
}

@keyframes fadeIn  { from { opacity: 0; }           to { opacity: 1; } }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.mobile-menu__close:hover { border-color: var(--clr-accent); }

.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.mobile-menu__links li { border-bottom: 1px solid var(--clr-border); }
.mobile-menu__links a {
  display: block;
  padding: var(--space-sm) var(--space-xs);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: color 0.2s;
}
.mobile-menu__links a:hover { color: var(--clr-accent); }

.mobile-menu__book { margin-top: auto; }

/* Hamburger → X animation */
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__hamburger span { transition: transform 0.2s, opacity 0.2s; }

/* ── Responsive — Tablet ─────────────────────────────────────── */
@media (max-width: 960px) {
  .about__layout  { grid-template-columns: 1fr; }
  .about__img-wrap { order: -1; }
  .about__copy .section__title { text-align: center; }
  .about__creds { align-items: center; }

  .contact__layout { grid-template-columns: 1fr; }
  .contact__info .section__title { text-align: center; }
  .contact__address { text-align: center; }
  .contact__hours { text-align: center; }
  .contact__hours table { margin: 0 auto; }
  .contact__channels { align-items: center; }
}

/* ── Responsive — Mobile ─────────────────────────────────────── */
@media (max-width: 700px) {
  /* Nav */
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__phone { display: none; }

  /* Announce bar — slower, readable on small screen */
  .announce-bar { font-size: 0.72rem; }
  .announce-bar__track { animation-duration: 40s; }

  /* Hero */
  .hero { padding: clamp(3rem, 12vw, 5rem) 0; align-items: center; }
  .hero__content { max-width: 100%; padding-top: var(--space-lg); }
  .hero__heading { font-size: clamp(1.9rem, 10vw, 3rem); }
  .hero__sub { font-size: 1rem; }

  /* Trust bar — 2 col on mobile */
  .trust-bar__grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .trust-bar__item { font-size: 0.8rem; }

  /* Services — tighter rows on mobile */
  .service-row { padding: var(--space-sm) var(--space-md); }
  .service-row__desc { display: none; }

  /* Offers */
  .offer-card__body { padding: var(--space-md); }
  .offer-card__title { font-size: 1.3rem; }

  /* Sticky bar visible on mobile */
  .sticky-book { display: block; }
  /* Add padding so form submit button isn't hidden behind sticky bar */
  body { padding-bottom: 70px; }

  /* Booking form */
  .booking__form { padding: var(--space-md); }
  .form-row,
  .form-row--3 { grid-template-columns: 1fr; }
  /* Bigger tap targets on inputs */
  .field input,
  .field select,
  .field textarea { font-size: 1rem; padding: 0.75rem; }

  /* Reviews — single col */
  .reviews__grid { grid-template-columns: 1fr; }

  /* Contact map full width */
  .contact__map-placeholder { aspect-ratio: 4/3; }

  /* Section spacing tighter on mobile */
  .section { padding: var(--space-xl) 0; }
  .section__title { font-size: clamp(1.8rem, 8vw, 2.5rem); }

}

/* ── Responsive — Desktop ────────────────────────────────────── */
@media (min-width: 768px) {
  .svc-list-wrap { max-width: 100%; }

  /* Offers: 2 columns on desktop */
  .offers__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  /* Hide sticky booking bar on desktop */
  .sticky-book { display: none !important; }
}

/* ── Booking page ────────────────────────────────────────────── */
.book--hidden { display: none !important; }

.book-rate-limit {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  color: var(--clr-muted);
}
.book-rate-limit a { color: var(--clr-accent); }

.book-section {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--clr-border);
}
.book-section:last-of-type { border-bottom: none; }
.book-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--clr-text);
}
.book-section__sub {
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-bottom: var(--space-sm);
}

.book-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}
@media (min-width: 500px) {
  .book-svc-grid { grid-template-columns: repeat(3, 1fr); }
}
.book-svc-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}
.book-svc-item:hover { border-color: var(--clr-accent); }
.book-svc-item input[type="checkbox"] { accent-color: var(--clr-accent); }
.book-svc-item--wide {
  grid-column: 1 / -1;
  justify-content: center;
}

.book-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-sm);
}
.book-field__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
}
.book-field__opt { color: var(--clr-muted); font-weight: 400; }
.book-field__hint { font-size: 0.75rem; color: var(--clr-muted); }
.book-field input,
.book-field select,
.book-field textarea {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
}
.book-field select:disabled { opacity: 0.5; cursor: not-allowed; }
.book-field input:focus,
.book-field select:focus,
.book-field textarea:focus {
  outline: 2px solid var(--clr-accent);
  outline-offset: 1px;
  border-color: var(--clr-accent);
}
.book-field textarea { resize: vertical; min-height: 80px; }

.book-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.book-row--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 500px) {
  .book-row,
  .book-row--3 { grid-template-columns: 1fr; }
}

.book-check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--clr-text);
  cursor: pointer;
  margin-bottom: var(--space-sm);
}
.book-check-row input[type="checkbox"] { accent-color: var(--clr-accent); margin-top: 2px; flex-shrink: 0; }
.book-checks {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--clr-border);
}
.book-checks .book-section__title { margin-bottom: var(--space-md); }
.book-checks .book-check-row { margin-bottom: 0.75rem; }
.book-checks .book-check-row:last-child { margin-bottom: 0; }
.book-check-row--required { font-weight: 500; }
.book-check-row--required a { color: var(--clr-accent); text-decoration: underline; }
.book-check-row__required { color: var(--clr-muted); font-size: 0.8rem; }

.book-foot { margin-top: var(--space-md); }
.book-error {
  background: rgba(220, 50, 50, 0.12);
  border: 1px solid rgba(220, 50, 50, 0.4);
  border-radius: var(--radius);
  color: #ff6b6b;
  padding: 0.6rem 0.9rem;
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.book-success {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}
.book-success__icon {
  font-size: 3rem;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

/* ── About page ──────────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-color: #141414;
  background-image: url('../img/webp/tire-swap.webp');
}
@media (max-width: 680px) {
  .about-hero__bg { background-image: url('../img/webp/tire-swap-mobile.webp'); }
}
.about-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
.about-hero__body {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) 0;
  text-align: center;
  width: 100%;
}
.about-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: var(--space-sm);
}
.about-hero__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: var(--space-md);
}
.about-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--space-lg);
  text-align: left;
}
.stat-item__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.stat-item__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--clr-text);
  margin-bottom: 0.4rem;
}
.stat-item__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  max-width: 560px;
  margin: 0 auto;
}
.team-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
}
.team-card__avatar svg { width: 36px; height: 36px; }
.team-card__name { font-size: 1rem; font-weight: 700; }
.team-card__role { font-size: 0.82rem; color: var(--clr-muted); }

.mission-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.mission-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.mission-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.mission-section__body {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) 0;
  max-width: 520px;
}
.mission-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: var(--space-sm);
}
.mission-section__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.mission-section__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.values-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.values-header__copy { flex: 1; }
.values-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: var(--space-sm);
}
.values-header__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.value-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.value-card__icon {
  width: 44px;
  height: 44px;
  color: var(--clr-muted);
}
.value-card__name {
  font-size: 1rem;
  font-weight: 700;
}
.value-card__desc {
  font-size: 0.82rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-xs);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--clr-border);
}
.faq__item:first-child { border-top: 1px solid var(--clr-border); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '›';
  font-size: 1.4rem;
  color: var(--clr-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
  transform: rotate(90deg);
}
.faq__item[open] .faq__question::after { transform: rotate(270deg); }
.faq__item[open] .faq__question { color: var(--clr-accent); }

.faq__answer {
  padding: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 680px;
}

@media (max-width: 700px) {
  .about-stats { grid-template-columns: 1fr; gap: var(--space-md); }
  .values-grid  { grid-template-columns: 1fr 1fr; }
  .values-header { flex-direction: column; align-items: flex-start; }
  .mission-section__body { max-width: 100%; }
}

