/* ==========================================================================
   Auto Spot Multi Branded Car Care Centre
   Global stylesheet
   ========================================================================== */

:root {
  --red: #9b1b1e;
  --red-bright: #c41e24;
  --red-dark: #6f1215;
  --ink: #12100f;
  --ink-2: #1c1917;
  --ink-3: #2a2624;
  --grey: #7b7470;
  --grey-light: #d9d4d0;
  --paper: #f6f4f1;
  --white: #fff;

  --radius: 4px;
  --shell: 1180px;
  --pad: clamp(1.2rem, 4vw, 2rem);

  --head: "Oswald", "Arial Narrow", "Helvetica Neue", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow: 0 2px 4px rgba(18, 16, 15, .06), 0 12px 32px rgba(18, 16, 15, .08);
  --shadow-lg: 0 4px 8px rgba(18, 16, 15, .08), 0 24px 60px rgba(18, 16, 15, .16);
}

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

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

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-bright); }

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .01em;
  color: var(--ink);
  margin: 0 0 .5em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.3rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1.1em; }

.shell { width: min(100% - (2 * var(--pad)), var(--shell)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: var(--paper); }
.section--dark { background: var(--ink); color: var(--grey-light); }
.section--dark h2, .section--dark h3 { color: #fff; }

/* --- Skip link ----------------------------------------------------------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: .75rem 1.25rem;
}
.skip:focus { left: 0; color: #fff; }

/* --- Eyebrow / headings -------------------------------------------------- */
.eyebrow {
  font-family: var(--head);
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin: 0 0 .7rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 3px;
  background: var(--red);
  display: block;
}
.section-head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head.is-center .eyebrow { justify-content: center; }
.section-head p { color: var(--grey); font-size: 1.05rem; margin-bottom: 0; }
.section--dark .section-head p { color: #a9a29d; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--head);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .95rem 1.7rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-bright); border-color: var(--red-bright); color: #fff; }
.btn--ghost { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: #fff; color: var(--ink); }
.btn--dark { border-color: var(--ink); color: var(--ink); }
.btn--dark:hover { background: var(--ink); color: #fff; }
.btn--wa { background: #25d366; border-color: #25d366; color: #08340f; }
.btn--wa:hover { background: #1eb955; border-color: #1eb955; color: #08340f; }
.btn svg { width: 18px; height: 18px; }

/* --- Top strip ----------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: #b8b1ac;
  font-size: .84rem;
  letter-spacing: .03em;
}
.topbar .shell {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding-block: .35rem;
}
.topbar a { color: #e7e2de; }
.topbar a:hover { color: #fff; }
.topbar span { display: inline-flex; align-items: center; gap: .45rem; }
.topbar a { display: inline-flex; align-items: center; gap: .45rem; }
.topbar svg { width: 14px; height: 14px; opacity: .75; flex: none; }
.topbar-links { display: flex; gap: 1.4rem; align-items: center; }
@media (max-width: 560px) { .topbar .shell > span:first-child { display: none; } }

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e8e3df;
}
/* backdrop-filter would make the header a containing block for the fixed
   mobile nav panel, so it is only applied where that panel is not used. */
@media (min-width: 941px) {
  .site-header {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
  }
}
.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 94px;
}
.brand { display: flex; align-items: center; gap: .8rem; color: var(--ink); }
.brand-logo { height: 66px; width: auto; }
@media (max-width: 520px) { .site-header .brand-logo { height: 44px; } }
@media (max-width: 380px) { .site-header .brand-logo { height: 38px; } }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: var(--head);
  font-size: 1.42rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.brand-text small {
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}
@media (max-width: 420px) {
  .site-header .brand-text small { display: none; }
  .site-header .brand svg, .site-header .brand img { height: 38px; }
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; gap: 1.85rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  font-family: var(--head);
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: .4rem 0;
  position: relative;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--red);
  transition: width .22s ease;
}
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { width: 100%; }
.nav-list a[aria-current="page"] { color: var(--red); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: .5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: block; position: relative; z-index: 120; }
  .nav-toggle[aria-expanded="true"] span { background: #fff; }

  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 110;
    width: min(330px, 86vw);
    max-width: 100vw;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: calc(5.5rem + env(safe-area-inset-top)) 1.75rem
             calc(2rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), visibility 0s linear .3s;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .45);
  }
  /* transform must be `none` when open so the scrim below can be viewport-fixed */
  .nav.is-open {
    transform: none;
    visibility: visible;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), visibility 0s;
  }

  /* full-screen scrim behind the panel; tapping it closes the menu */
  .nav::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(10, 9, 8, .6);
    opacity: 0;
    transition: opacity .3s ease;
  }
  .nav.is-open::before { opacity: 1; }

  .nav-list { flex-direction: column; gap: 0; }
  .nav-list li + li { border-top: 1px solid rgba(255, 255, 255, .09); }
  .nav-list a {
    color: #f2eeeb;
    font-size: 1.12rem;
    padding: .95rem 0;
    display: block;
    min-height: 48px;
  }
  .nav-list a::after { display: none; }
  .nav-list a[aria-current="page"] { color: var(--red-bright); }
  .nav .btn { width: 100%; padding-block: 1.05rem; }
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
  z-index: 0;
}
/* portrait night shot: bias the crop upwards so the lit signboard stays in
   frame, and lift the opacity a little since the photo is already dark */
.hero > .hero-bg { object-position: center 22%; opacity: .75; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 16, 15, .96) 0%, rgba(18, 16, 15, .8) 45%, rgba(18, 16, 15, .4) 100%),
    radial-gradient(70% 90% at 90% 10%, rgba(155, 27, 30, .4), transparent 65%);
  z-index: 1;
}
.hero .shell {
  padding-block: clamp(4rem, 12vw, 8.5rem);
  position: relative;
  z-index: 2;
}
.hero-inner { max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: var(--red-bright); }
.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: #cfc8c3;
  max-width: 56ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.8rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem clamp(1.5rem, 4vw, 2.8rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-stats div strong {
  display: block;
  font-family: var(--head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #fff;
  line-height: 1;
}
.hero-stats div span {
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #a49d98;
}

/* Compact page hero for interior pages */
.page-hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg { opacity: .5; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(18, 16, 15, .95), rgba(18, 16, 15, .55));
  z-index: 1;
}
.page-hero .shell { padding-block: clamp(3rem, 8vw, 5.5rem); position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p { color: #c3bcb7; max-width: 62ch; margin-bottom: 0; }
.crumbs {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8e8783;
  margin-bottom: 1rem;
  font-family: var(--head);
}
.crumbs a { color: #c9c2bd; }
.crumbs a:hover { color: #fff; }

/* --- Trust bar ----------------------------------------------------------- */
.trustbar { background: var(--red); color: #fff; }
.trustbar .shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem 2rem;
  padding-block: 1.6rem;
}
.trustbar .shell > div { display: flex; gap: .8rem; align-items: flex-start; }
.trustbar svg { width: 24px; height: 24px; flex: none; margin-top: 2px; }
.trustbar b {
  font-family: var(--head);
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
}
.trustbar span { font-size: .85rem; color: rgba(255, 255, 255, .82); }

/* --- Car showcase --------------------------------------------------------
   The cutaway sits in a centre band and drifts against the page as it
   scrolls (parallax), with the services arriving on either side of it.
   JS writes scroll progress through the section into --p (0 to 1) and adds
   .is-in to each service as the scroll reaches its step. */
.showcase {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: clip;
}
.sc-grid {
  display: grid;
  grid-template-columns: 1fr clamp(300px, 34vw, 520px) 1fr;
  gap: 0 clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
  width: min(100% - (2 * var(--pad)), 1320px);
  margin-inline: auto;
}

/* the band the car scrolls through */
.sc-car {
  position: relative;
  align-self: stretch;
  border-inline: 1px solid #ece7e3;
  overflow: hidden;
  min-height: 520px;
}
.sc-car picture { display: block; height: 100%; }
.sc-car img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* drifts against the page as the section scrolls: that is the parallax */
  transform: translate3d(0, calc(3% - (var(--p, .5) * 6%)), 0);
  will-change: transform;
}

.sc-col { list-style: none; margin: 0; padding: 0; display: grid; align-content: space-between; }
.sc-col--left { text-align: right; justify-items: end; }
/* drop the right column half a step so the two sides alternate down the page */
.sc-col--right { padding-top: clamp(3rem, 10vw, 9rem); }
.sc-item { max-width: 380px; padding-block: clamp(1.4rem, 3.5vw, 3.2rem); }
.sc-item h3 { margin: 0 0 .5rem; }
.sc-item p { margin: 0; color: var(--grey); font-size: .95rem; }
.sc-ico { display: block; color: var(--red); margin-bottom: .9rem; }
.sc-ico svg { width: 34px; height: 34px; stroke-width: 1.6; }
.sc-col--left .sc-ico svg { margin-left: auto; }

/* hidden only once JS is driving, so the list still reads without scripting */
.showcase.is-live .sc-item {
  opacity: 0;
  transform: translate3d(-46px, 0, 0);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .75, .3, 1);
}
.showcase.is-live .sc-col--right .sc-item { transform: translate3d(46px, 0, 0); }
.showcase.is-live .sc-item.is-in { opacity: 1; transform: none; }

.sc-cta { text-align: center; margin: clamp(2rem, 4vw, 3.2rem) 0 0; }

@media (max-width: 900px) {
  /* one column: car first, then the services as a plain list */
  .sc-grid { grid-template-columns: 1fr; gap: 0; }
  .sc-car { order: -1; max-width: 340px; margin: 0 auto 1.5rem; border: 0; min-height: 0; }
  .sc-car img { margin-top: 0; transform: none; }
  .sc-col--right { padding-top: 0; }
  .sc-col--left { text-align: left; justify-items: start; }
  .sc-col--left .sc-ico svg { margin-left: 0; }
  .sc-item { max-width: none; padding-block: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .showcase.is-live .sc-item { opacity: 1; transform: none; transition: none; }
  .sc-car img { transform: none; }
}

/* --- Grids / cards ------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid #e8e3df;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width .28s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #ddd6d1; }
.card:hover::before { width: 100%; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--grey); font-size: .95rem; margin-bottom: 0; }
.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: #fdf2f2;
  color: var(--red);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 26px; height: 26px; }

/* --- Service list (services page) ---------------------------------------- */
.svc {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid #e8e3df;
  align-items: start;
}
.svc:last-child { border-bottom: 0; }
.svc-num {
  font-family: var(--head);
  font-size: 1.5rem;
  color: var(--red);
  line-height: 1;
  padding-top: .15rem;
}
.svc h3 { margin-bottom: .35rem; }
.svc p { color: var(--grey); margin-bottom: .7rem; max-width: 74ch; }
.svc ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.svc ul li {
  font-size: .8rem;
  background: var(--paper);
  border: 1px solid #e8e3df;
  padding: .3rem .7rem;
  border-radius: 100px;
  color: var(--ink-2);
}

/* --- Split (about / image + text) ---------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split-media::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 55%; height: 55%;
  border: 4px solid var(--red);
  border-radius: var(--radius);
  z-index: -1;
}
@media (max-width: 700px) { .split-media::after { display: none; } }
.split-badge {
  position: absolute;
  left: -12px; bottom: 24px;
  background: var(--red);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-badge b { font-family: var(--head); font-size: 2rem; display: block; line-height: 1; }
.split-badge span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }

.ticks { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: .7rem; }
.ticks li { display: flex; gap: .7rem; align-items: flex-start; }
.ticks svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 3px; }

/* --- Branch cards -------------------------------------------------------- */
.branch {
  background: #fff;
  border: 1px solid #e8e3df;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.branch:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.branch-map { aspect-ratio: 16 / 9; border: 0; width: 100%; display: block; filter: grayscale(.2); background: #ddd; }
.branch-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.branch-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--head); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  background: #fdf2f2; color: var(--red);
  padding: .3rem .7rem; border-radius: 100px;
  align-self: flex-start; margin-bottom: .9rem;
}
.branch h3 { margin-bottom: .4rem; }
.branch dl { margin: 0 0 1.4rem; display: grid; gap: .65rem; font-size: .94rem; }
.branch dl > div { display: grid; grid-template-columns: 22px 1fr; gap: .7rem; align-items: start; }
.branch dt { color: var(--red); }
.branch dt svg { width: 17px; height: 17px; margin-top: 4px; }
.branch dd { margin: 0; color: var(--ink-2); }
.branch dd small { display: block; color: var(--grey); font-size: .85rem; }
.branch-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: auto; }
.branch-actions .btn { padding: .7rem 1.1rem; font-size: .8rem; }
.rating { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--grey); margin-bottom: 1rem; }
.rating b { color: var(--ink); font-family: var(--head); font-size: 1.05rem; }
.stars { color: #f0a500; letter-spacing: 2px; }

/* --- Gallery ------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: clamp(190px, 20vw, 250px);
  gap: 1.1rem;
  margin: 0;
}
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-3);
  border: 0; padding: 0; cursor: pointer;
  display: block; width: 100%; height: 100%;
  margin: 0;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.shot:hover img { transform: scale(1.06); }
.shot figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(18, 16, 15, .9));
  color: #fff;
  font-family: var(--head);
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: left;
}
.shot--tall { grid-row: span 2; }
@media (min-width: 760px) { .shot--wide { grid-column: span 2; } }
.shot:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12, 10, 9, .93);
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: none; border: 0; color: #fff;
  font-size: 2.4rem; line-height: 1; cursor: pointer;
}
.lightbox-cap {
  position: absolute; bottom: 1.4rem; left: 0; right: 0;
  text-align: center; color: #cfc8c3;
  font-family: var(--head); letter-spacing: .1em; text-transform: uppercase; font-size: .9rem;
}

/* --- Brands -------------------------------------------------------------- */
.brands {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  list-style: none; padding: 0; margin: 0;
}
.brands li {
  font-family: var(--head);
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #ded8d4;
  padding: .55rem 1.1rem;
  border-radius: 100px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.brands li:hover { border-color: var(--red-bright); color: #fff; background: rgba(196, 30, 36, .18); }

/* --- Steps --------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--head);
  font-size: 2.6rem;
  color: rgba(155, 27, 30, .22);
  line-height: 1;
}
.section--dark .step::before { color: rgba(196, 30, 36, .55); }
.step h3 { margin-bottom: .4rem; }
.step p { font-size: .93rem; color: var(--grey); margin: 0; }
.section--dark .step p { color: #a49d98; }

/* --- Testimonials -------------------------------------------------------- */
.quote {
  background: #fff;
  border: 1px solid #e8e3df;
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.9rem;
}
.quote p { font-size: .98rem; color: var(--ink-2); margin-bottom: 1.1rem; }
.quote .stars { font-size: 1rem; margin-bottom: .8rem; display: block; }
.quote cite {
  font-style: normal;
  font-family: var(--head);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .9rem;
}
.quote cite span { display: block; font-family: var(--body); text-transform: none; letter-spacing: 0; color: var(--grey); font-size: .82rem; }

/* --- CTA band ------------------------------------------------------------ */
.cta {
  background: linear-gradient(100deg, var(--red-dark), var(--red) 55%, #b0212a);
  color: #fff;
  text-align: center;
}
.cta .shell { padding-block: clamp(3rem, 7vw, 4.8rem); }
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .88); max-width: 58ch; margin-inline: auto; margin-bottom: 1.8rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.cta .btn--primary { background: #fff; color: var(--red); border-color: #fff; }
.cta .btn--primary:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* --- Forms --------------------------------------------------------------- */
.form-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.form {
  background: #fff;
  border: 1px solid #e8e3df;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-family: var(--head);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .45rem;
  color: var(--ink);
}
.field label span { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: .96rem;
  padding: .8rem .9rem;
  border: 1px solid #ddd6d1;
  border-radius: var(--radius);
  background: #fcfbfa;
  color: var(--ink-2);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(155, 27, 30, .12);
  background: #fff;
}
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.15rem; }
.form-note { font-size: .84rem; color: var(--grey); margin: 1rem 0 0; }
.form .btn { width: 100%; }

.info-block { display: grid; gap: 1.6rem; }
.info-item { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.info-item .card-icon { width: 44px; height: 44px; margin: 0; }
.info-item .card-icon svg { width: 21px; height: 21px; }
.info-item b {
  display: block;
  font-family: var(--head);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
  margin-bottom: .15rem;
}
.info-item p { margin: 0; color: var(--grey); font-size: .95rem; }
.info-item a { color: var(--ink-2); }
.info-item a:hover { color: var(--red); }
/* several numbers under one heading: small label, then the number */
.phone-lines { display: grid; gap: .15rem; }
.phone-lines span { display: flex; flex-wrap: wrap; gap: .1rem .5rem; align-items: baseline; }
.phone-lines i {
  font-style: normal;
  font-family: var(--head);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
  min-width: 9.5rem;
}

.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { text-align: left; padding: .6rem 0; border-bottom: 1px solid #e8e3df; }
.hours th { font-family: var(--head); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: .85rem; }
.hours td { text-align: right; color: var(--grey); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours .is-closed td { color: var(--red); }

/* --- FAQ ----------------------------------------------------------------- */
.faq { border-top: 1px solid #e8e3df; }
.faq details { border-bottom: 1px solid #e8e3df; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: var(--head);
  font-size: 1.08rem;
  letter-spacing: .02em;
  color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: .4rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; color: var(--red); line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--grey); font-size: .96rem; padding-right: 2.5rem; margin: -.3rem 0 1.3rem; }

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #97908b; font-size: .93rem; }
.site-footer .shell { padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
.site-footer h4 {
  color: #fff;
  font-size: .92rem;
  letter-spacing: .16em;
  margin-bottom: 1.2rem;
}
.site-footer .brand { color: #fff; margin-bottom: 1.1rem; }
.site-footer .brand-logo { height: 62px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.site-footer a { color: #b7b0ab; }
.site-footer a:hover { color: #fff; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  color: #cfc8c3;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .85rem;
  color: #7d7772;
}

/* --- Floating actions ---------------------------------------------------- */
.floating {
  position: fixed;
  right: 1rem; bottom: 1rem;
  z-index: 90;
  display: grid;
  gap: .6rem;
}
.floating a {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .2s ease;
}
.floating a:hover { transform: scale(1.08); color: #fff; }
.floating svg { width: 24px; height: 24px; }
.fab-wa { background: #25d366; }
.fab-call { background: var(--red); }
@media (max-width: 620px) {
  .floating {
    right: 0; left: 0; bottom: 0;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    box-shadow: 0 -6px 24px rgba(18, 16, 15, .18);
  }
  .floating a {
    width: auto;
    height: auto;
    min-height: 58px;
    padding-bottom: env(safe-area-inset-bottom);
    border-radius: 0;
    font-family: var(--head);
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: .95rem;
    gap: .5rem;
    grid-auto-flow: column;
    box-shadow: none;
  }
  .floating a:hover { transform: none; }
  .floating a:active { filter: brightness(.92); }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
}
.floating span { display: none; }
@media (max-width: 620px) { .floating span { display: inline; } }

/* --- Reveal animation ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   Phone-specific tuning; most visitors arrive on a phone, so this block
   tightens spacing, enlarges tap targets and keeps text legible over photos.
   ========================================================================== */
@media (max-width: 620px) {
  body { font-size: 16px; -webkit-tap-highlight-color: rgba(155, 27, 30, .18); }

  .section { padding: 3rem 0; }
  .section-head { margin-bottom: 1.9rem; }
  h1 { font-size: clamp(2.1rem, 9vw, 2.7rem); }
  h2 { font-size: clamp(1.65rem, 6.5vw, 2.1rem); }

  /* every link and button stays thumb-sized */
  .btn { padding: .95rem 1.4rem; min-height: 50px; }
  .topbar a { min-height: 34px; }
  .site-footer ul a { display: inline-block; padding: .2rem 0; min-height: 32px; }

  /* hero: less dead space, stronger scrim so the headline always reads */
  .hero .shell { padding-block: 2.8rem 3.2rem; }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(18, 16, 15, .88) 0%, rgba(18, 16, 15, .74) 45%, rgba(18, 16, 15, .92) 100%),
      radial-gradient(80% 60% at 80% 0%, rgba(155, 27, 30, .35), transparent 70%);
  }
  .hero-bg { opacity: .5; }
  .hero-lede { font-size: 1rem; margin-bottom: 1.6rem; }
  .hero-actions { gap: .7rem; margin-bottom: 2rem; }
  .hero-actions .btn { width: 100%; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1rem;
    padding-top: 1.5rem;
  }
  .hero-stats div strong { font-size: 1.6rem; }
  .hero-stats div span { font-size: .72rem; }

  .page-hero .shell { padding-block: 2.2rem 2.6rem; }
  .page-hero p { font-size: .97rem; }

  /* trust strip reads as a simple list rather than a squeezed grid */
  .trustbar .shell { grid-template-columns: 1fr; gap: 1rem; padding-block: 1.4rem; }
  .trustbar .shell > div { align-items: center; }
  .trustbar b { font-size: .95rem; }
  .trustbar span { font-size: .82rem; display: block; }

  .card { padding: 1.5rem 1.35rem; }
  .card-icon { width: 44px; height: 44px; margin-bottom: .9rem; }
  .card-icon svg { width: 22px; height: 22px; }

  .svc { grid-template-columns: 42px 1fr; gap: .9rem; padding: 1.5rem 0; }
  .svc-num { font-size: 1.2rem; }

  .steps { gap: 1.6rem; }
  .split { gap: 2rem; }
  .split-media img { aspect-ratio: 3 / 2; }
  .split-badge { left: 0; bottom: 12px; padding: .8rem 1.1rem; }
  .split-badge b { font-size: 1.6rem; }

  .branch-body { padding: 1.4rem; }
  .branch-actions { display: grid; grid-template-columns: 1fr; gap: .5rem; }
  .branch-actions .btn { width: 100%; font-size: .85rem; }
  .branch-map { aspect-ratio: 4 / 3; }

  .gallery { grid-auto-rows: 220px; gap: .8rem; }
  .shot figcaption { font-size: .82rem; padding: 2rem .9rem .85rem; }

  .quote { padding: 1.5rem; }
  .brands { gap: .45rem; }
  .brands li { font-size: .85rem; padding: .45rem .85rem; }

  .cta .shell { padding-block: 2.8rem; }
  .cta-actions { display: grid; gap: .7rem; }
  .cta-actions .btn { width: 100%; }

  /* 16px minimum stops iOS from zooming in when a field is focused */
  .field input, .field select, .field textarea { font-size: 16px; padding: .95rem .9rem; }
  .field textarea { min-height: 120px; }
  .form { padding: 1.35rem; }

  .faq summary { padding: 1.15rem 2.2rem 1.15rem 0; font-size: 1rem; }
  .faq details p { font-size: .92rem; padding-right: 1rem; }

  .footer-grid { gap: 2rem; }
  .footer-bottom { margin-top: 2rem; font-size: .8rem; }
  .lightbox { padding: 1rem; }
  .lightbox-close { top: .4rem; right: .6rem; }
}

@media (max-width: 400px) {
  .hero-stats { gap: 1rem .8rem; }
  .brand-logo { height: 40px; }
  .site-header .shell { min-height: 72px; }
}

/* ==========================================================================
   Motion — opt in per page with <body class="anim">; the home page uses it.
   Only transform, opacity and background-position are animated, so none of
   it triggers layout. Anything that starts hidden is hidden by a class that
   JS adds, so the page still reads with scripting off. The whole block is
   switched off for reduced-motion visitors at the end.
   ========================================================================== */
@keyframes as-rise {
  from { opacity: 0; transform: translate3d(0, 26px, 0); }
  to   { opacity: 1; transform: none; }
}
@keyframes as-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.12) translate3d(0, -1.5%, 0); }
}
@keyframes as-ring {
  0%        { opacity: .5; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(1.85); }
}
@keyframes as-pan {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}
@keyframes as-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* --- Scroll progress line (JS writes --sp, 0 to 1) ------------------------ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 150;
  background: linear-gradient(90deg, var(--red), var(--red-bright) 60%, #ff6a6f);
  transform: scaleX(var(--sp, 0));
  transform-origin: 0 50%;
  pointer-events: none;
  will-change: transform;
}

/* --- Hero entrance ------------------------------------------------------- */
.anim .hero-inner > * { animation: as-rise .85s cubic-bezier(.2, .7, .3, 1) both; }
.anim .hero-inner > *:nth-child(1) { animation-delay: .06s; }
.anim .hero-inner > *:nth-child(2) { animation-delay: .16s; }
.anim .hero-inner > *:nth-child(3) { animation-delay: .28s; }
.anim .hero-inner > *:nth-child(4) { animation-delay: .40s; }
.anim .hero-inner > *:nth-child(5) { animation-delay: .52s; }
/* slow drift on the backdrop photo so the hero is never completely still */
.anim .hero > .hero-bg { animation: as-kenburns 26s ease-in-out infinite alternate; }

/* --- Header condenses once the page moves -------------------------------- */
.anim .site-header,
.anim .site-header .shell,
.anim .site-header .brand-logo {
  transition: min-height .3s ease, height .3s ease, box-shadow .3s ease, background .3s ease;
}
.anim .site-header.is-stuck .shell { min-height: 70px; }
.anim .site-header.is-stuck .brand-logo { height: 50px; }
.anim .site-header.is-stuck { box-shadow: 0 10px 30px rgba(0, 0, 0, .45); }

/* --- Staggered groups (JS numbers the children into --i) ------------------ */
.anim [data-stagger].is-live > * { opacity: 0; }
.anim [data-stagger].is-live.is-in > * {
  animation: as-rise .7s cubic-bezier(.2, .7, .3, 1) both;
  animation-delay: calc(var(--i, 0) * 65ms);
}

/* --- Section headings: the eyebrow rule draws itself in ------------------- */
.anim .reveal .eyebrow::before { width: 0; transition: width .7s cubic-bezier(.2, .7, .3, 1) .15s; }
.anim .reveal.is-visible .eyebrow::before { width: 34px; }

/* --- Buttons: light sweeps across on hover -------------------------------- */
.anim .btn { position: relative; overflow: hidden; isolation: isolate; }
.anim .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, .18) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform .65s ease;
}
.anim .btn:hover::after { transform: translateX(130%); }
.anim .btn:active { transform: translateY(0) scale(.98); }

/* --- Small hover details -------------------------------------------------- */
.anim .trustbar svg { transition: transform .25s ease; }
.anim .trustbar .shell > div:hover svg { transform: translateY(-3px) scale(1.1); }
.anim .step::before { transition: color .25s ease, transform .25s ease; }
.anim .step:hover::before { color: var(--red-bright); transform: translateY(-4px); }
.anim .shot figcaption { transition: transform .4s ease; }
.anim .shot:hover figcaption { transform: translateY(-4px); }
.anim .sc-ico svg { transition: transform .3s ease; }
.anim .sc-item:hover .sc-ico svg { transform: scale(1.12) rotate(-4deg); }

/* the CTA band's gradient drifts slowly from side to side */
.anim .cta { background-size: 220% 100%; animation: as-pan 16s linear infinite alternate; }

/* pulse ring on the WhatsApp button, only while it is a round FAB */
@media (min-width: 621px) {
  .anim .fab-wa { position: relative; }
  .anim .fab-wa::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: as-ring 2.8s ease-out infinite;
  }
}

/* the cutaway loses its parallax on small screens, so let it float instead */
@media (max-width: 900px) {
  .anim .sc-car img { animation: as-bob 6.5s ease-in-out infinite; }
}

@media (prefers-reduced-motion: reduce) {
  .anim *, .anim *::before, .anim *::after { animation: none !important; }
  .anim [data-stagger].is-live > * { opacity: 1; }
  .anim .reveal .eyebrow::before { width: 34px; }
}

/* ==========================================================================
   Dark theme — black page, red accent, white type.
   Opt in per page with <body class="theme-dark">; the home page uses it.
   Most of it is done by re-pointing the surface and muted-text variables,
   with explicit rules only where a component hard-codes a light colour.
   ========================================================================== */
.theme-dark {
  --paper: #111010;        /* .section--tint band + pill backgrounds */
  --grey: #b0a9a5;         /* muted body text, now light instead of dark */
  --grey-light: #e6e2df;
  --line: #2b2726;         /* borders that were #e8e3df */
  --surface: #141312;      /* cards, quotes, branch panels */
  --shadow: 0 2px 4px rgba(0, 0, 0, .5), 0 12px 32px rgba(0, 0, 0, .55);
  --shadow-lg: 0 4px 8px rgba(0, 0, 0, .5), 0 24px 60px rgba(0, 0, 0, .7);

  color-scheme: dark;
  background: #000;
  color: #fff;
}

.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4 { color: #fff; }
/* inline prose links only: the deep red is too dark to read on black.
   Kept off .btn and off the nav/topbar/footer links, which set their own. */
.theme-dark p a:not(.btn) { color: var(--red-bright); }
.theme-dark p a:not(.btn):hover { color: #e8464b; }

/* accents read washed out in the deep red on black, so lift them a shade */
.theme-dark .eyebrow { color: var(--red-bright); }
.theme-dark .eyebrow::before { background: var(--red-bright); }
.theme-dark .ticks svg,
.theme-dark .sc-ico,
.theme-dark .svc-num,
.theme-dark .branch dt,
.theme-dark .faq summary::after { color: var(--red-bright); }

/* --- Chrome -------------------------------------------------------------- */
.theme-dark .topbar { background: #0a0908; border-bottom: 1px solid #1d1a19; }
.theme-dark .site-header { background: #000; border-bottom-color: #201d1c; }
@media (min-width: 941px) {
  .theme-dark .site-header { background: rgba(0, 0, 0, .9); }
}
.theme-dark .brand { color: #fff; }
.theme-dark .nav-list a { color: #f0ebe8; }
.theme-dark .nav-toggle span { background: #fff; }

/* --- Hero ---------------------------------------------------------------- */
.theme-dark .hero { background: #000; }
.theme-dark .hero::after {
  background:
    linear-gradient(105deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .82) 45%, rgba(0, 0, 0, .45) 100%),
    radial-gradient(70% 90% at 90% 10%, rgba(196, 30, 36, .42), transparent 65%);
}
.theme-dark .page-hero { background: #000; }
.theme-dark .page-hero::after {
  background: linear-gradient(100deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .6));
}
@media (max-width: 620px) {
  .theme-dark .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .78) 45%, rgba(0, 0, 0, .94) 100%),
      radial-gradient(80% 60% at 80% 0%, rgba(196, 30, 36, .38), transparent 70%);
  }
}

/* --- Buttons ------------------------------------------------------------- */
.theme-dark .btn--dark { border-color: rgba(255, 255, 255, .5); color: #fff; }
.theme-dark .btn--dark:hover { background: #fff; color: #0a0908; border-color: #fff; }

/* --- Surfaces ------------------------------------------------------------ */
.theme-dark .section--dark { background: #0b0a0a; }
.theme-dark .card,
.theme-dark .quote,
.theme-dark .branch,
.theme-dark .form { background: var(--surface); border-color: var(--line); }
.theme-dark .card:hover { border-color: #443b3a; }
.theme-dark .quote { border-left-color: var(--red-bright); }
.theme-dark .quote p { color: #dcd6d2; }
.theme-dark .quote cite { color: #fff; }
.theme-dark .card-icon,
.theme-dark .branch-tag { background: rgba(196, 30, 36, .16); color: #ef5b60; }
.theme-dark .branch dd { color: #dcd6d2; }
.theme-dark .branch dd a { color: #ef5b60; }
.theme-dark .branch dd a:hover { color: #fff; }
.theme-dark .rating b { color: #fff; }
/* dark-mode the embedded Google map so it does not glow white in the card */
.theme-dark .branch-map { filter: invert(92%) hue-rotate(180deg) saturate(.7) contrast(1.05); }

.theme-dark .sc-car { border-inline-color: var(--line); }
.theme-dark .step::before { color: rgba(196, 30, 36, .5); }
.theme-dark .shot { background: #1a1817; }
.theme-dark .svc,
.theme-dark .faq,
.theme-dark .faq details,
.theme-dark .hours th,
.theme-dark .hours td { border-color: var(--line); }
.theme-dark .svc ul li { background: #1a1817; border-color: var(--line); color: #dcd6d2; }
.theme-dark .faq summary { color: #fff; }
.theme-dark .info-item a { color: #e8e3df; }
.theme-dark .info-item a:hover { color: var(--red-bright); }

/* --- Forms --------------------------------------------------------------- */
.theme-dark .field label { color: #fff; }
.theme-dark .field input,
.theme-dark .field select,
.theme-dark .field textarea {
  background: #100f0f;
  border-color: #332e2d;
  color: #fff;
}
.theme-dark .field input::placeholder,
.theme-dark .field textarea::placeholder { color: #6f6864; }
.theme-dark .field input:focus,
.theme-dark .field select:focus,
.theme-dark .field textarea:focus {
  background: #171514;
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(196, 30, 36, .22);
}
