:root {
  --ink: #0b1f33;
  --ink-2: #173958;
  --muted: #5c7287;
  --blue: #0878d9;
  --blue-2: #16a8ff;
  --blue-3: #dff2ff;
  --ice: #f6fbff;
  --panel: #ffffff;
  --panel-blue: #eef8ff;
  --line: rgba(8, 81, 137, 0.16);
  --line-strong: rgba(8, 120, 217, 0.34);
  --shadow: 0 18px 42px rgba(13, 49, 82, 0.12);
  --shadow-tight: 0 10px 24px rgba(13, 49, 82, 0.1);
  --radius-xl: 18px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(8, 120, 217, 0.09), transparent 26%),
    repeating-linear-gradient(135deg, rgba(8, 120, 217, 0.045) 0 2px, transparent 2px 20px),
    linear-gradient(180deg, #ffffff 0%, #eff8ff 46%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 82% 10%, rgba(22, 168, 255, 0.16), transparent 28%);
  pointer-events: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.hero,
.section,
.site-footer {
  padding-left: 24px;
  padding-right: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 118px;
  right: max(24px, calc((100vw - var(--max-width)) / 2));
  width: min(42vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 120, 217, 0.42));
  pointer-events: none;
}

.topbar,
.hero-grid,
.page-hero-content,
.section > *,
.site-footer > * {
  max-width: var(--max-width);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(18px);
}

.topbar::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 7px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2), transparent 82%);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
  padding: 10px 14px 13px 10px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 120, 217, 0.08), transparent 58%),
    #ffffff;
}

.brand-mark {
  width: 76px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(8, 120, 217, 0.18);
  border-radius: 10px 4px 10px 4px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 12px 20px rgba(8, 120, 217, 0.14);
}

.brand-mark img {
  display: block;
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-wrap {
  display: flex;
  align-items: stretch;
  gap: 4px;
}

.nav-wrap a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 0 10px;
  border-radius: 7px;
  color: var(--ink-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nav-wrap a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.nav-wrap a:hover,
.nav-wrap a:focus-visible,
.nav-wrap a.active {
  color: var(--blue);
  background: rgba(8, 120, 217, 0.07);
  transform: translateY(-1px);
}

.nav-wrap a:hover::after,
.nav-wrap a:focus-visible::after,
.nav-wrap a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  min-width: 104px;
  margin-left: 6px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 10px 18px rgba(8, 120, 217, 0.18);
}

.nav-cta::after {
  background: rgba(255, 255, 255, 0.86) !important;
}

.menu-toggle {
  display: none;
  width: 52px;
  min-width: 52px;
  border: 1px solid rgba(8, 120, 217, 0.24);
  background: #ffffff;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero-home {
  padding-bottom: 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
  gap: 34px;
  align-items: start;
  padding-top: 82px;
}

.hero-page {
  padding-bottom: 30px;
}

.page-hero-content {
  padding-top: 82px;
  padding-bottom: 20px;
}

.hero-copy,
.hero-panel,
.service-card,
.about-card,
.about-highlights article,
.testimonial-card,
.contact-panel,
.gallery-card,
.panel-card,
.preview-card,
.callout-card {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--blue);
  font-family: "Oswald", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  transform: skewX(-24deg);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.015em;
}

h1 {
  max-width: 18ch;
  font-size: clamp(3.05rem, 5.35vw, 5.2rem);
}

h2 {
  font-size: clamp(2.1rem, 4.1vw, 3.7rem);
}

h3 {
  font-size: 1.58rem;
}

.hero-text,
.page-intro,
.section-heading p,
.service-card p,
.about-card p,
.about-highlights p,
.testimonial-card p,
.contact-copy p,
.form-note,
.panel-card p,
.preview-card p,
.callout-card p,
.footer-grid p,
.footer-grid span,
.gallery-overlay span {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text,
.page-intro {
  max-width: 62ch;
  margin: 20px 0 0;
  font-size: 1.03rem;
}

.hero-actions,
.callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled {
  opacity: 0.82;
  cursor: wait;
}

.button-primary {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 40%),
    linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 28px rgba(8, 120, 217, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line-strong);
}

.hero-stats {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.compact-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stats article,
.about-highlights article,
.service-card,
.testimonial-card,
.contact-form,
.about-card,
.preview-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-tight);
}

.hero-stats article {
  padding: 20px;
  border-left: 4px solid var(--blue);
}

.hero-stats strong,
.about-highlights strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.96rem;
}

.hero-panel {
  display: grid;
  gap: 16px;
}

@media (min-width: 1101px) {
  .hero-panel {
    align-self: stretch;
  }

  .hero-panel .panel-card {
    position: sticky;
    top: 116px;
  }
}

.panel-card {
  min-height: 410px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(9, 30, 49, 0.14), rgba(9, 30, 49, 0.62)),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.panel-card h2,
.panel-card p {
  position: relative;
  z-index: 1;
}

.panel-card h2 {
  max-width: 11ch;
  margin: 18px 0;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.panel-card p:not(.panel-label) {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.88);
}

.shine-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: 36px;
  width: 280px;
  height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-24deg);
}

.panel-label,
.preview-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 7px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-weight: 850;
}

.home-car-pass {
  --car-pass-y: 64vh;
  --car-pass-duration: 900ms;
  position: fixed;
  inset: 0;
  z-index: 18;
  overflow: hidden;
  pointer-events: none;
}

.home-car-pass.has-run {
  display: none;
}

.home-car-sprite {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(430px, 62vw, 980px);
  z-index: 2;
  opacity: 0;
  transform: translate3d(-120%, var(--car-pass-y), 0);
  will-change: transform, opacity;
}

.home-car-pass.is-running .home-car-sprite {
  animation: homeCarAutoSwipe var(--car-pass-duration) cubic-bezier(0.12, 0.78, 0.28, 1) forwards;
}

.home-car-sprite::before,
.home-car-sprite::after {
  position: absolute;
  content: "";
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}

.home-car-sprite::before {
  inset: 12% 12% 30% 10%;
  background:
    linear-gradient(106deg, transparent 31%, rgba(255, 255, 255, 0.82) 43%, rgba(204, 244, 255, 0.38) 47%, transparent 62%),
    linear-gradient(8deg, transparent 38%, rgba(255, 255, 255, 0.46) 45%, transparent 55%),
    linear-gradient(-5deg, transparent 54%, rgba(255, 255, 255, 0.38) 60%, transparent 70%);
  filter: blur(5px) drop-shadow(0 0 10px rgba(255, 255, 255, 0.54));
  mask-image: radial-gradient(ellipse at 50% 52%, #000 0 38%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 52%, #000 0 38%, transparent 74%);
  mix-blend-mode: screen;
  transform: translateX(-34%) skewX(-12deg);
}

.home-car-sprite::after {
  top: 29%;
  left: 58%;
  width: clamp(34px, 4vw, 64px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 1) 0 8%, rgba(255, 255, 255, 0.45) 13% 22%, transparent 44%),
    conic-gradient(from 45deg, transparent 0 18%, rgba(255, 255, 255, 0.96) 22% 28%, transparent 34% 68%, rgba(255, 255, 255, 0.9) 72% 78%, transparent 84% 100%);
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 18px rgba(157, 231, 255, 0.72));
  transform: rotate(18deg) scale(0.78);
  mix-blend-mode: screen;
}

.home-car-pass.is-running .home-car-sprite::before {
  animation: homeCarGleamSweep var(--car-pass-duration) ease-out forwards;
}

.home-car-pass.is-running .home-car-sprite::after {
  animation: homeCarGlistenPop var(--car-pass-duration) ease-out forwards;
}

.home-car-sprite img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 18px 24px rgba(9, 30, 49, 0.24));
}

.home-car-shine {
  position: absolute;
  top: 23%;
  left: 49%;
  width: clamp(30px, 4.5vw, 64px);
  aspect-ratio: 1;
  opacity: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 7%, rgba(255, 255, 255, 0.42) 9% 18%, transparent 42%),
    conic-gradient(from 45deg, transparent 0 18%, rgba(255, 255, 255, 0.94) 22% 28%, transparent 34% 68%, rgba(255, 255, 255, 0.86) 72% 78%, transparent 84% 100%);
  filter:
    blur(0.2px)
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.94))
    drop-shadow(0 0 18px rgba(157, 231, 255, 0.56));
  mix-blend-mode: screen;
  transform: rotate(18deg) scale(0.98);
}

.home-car-pass.is-running .home-car-shine {
  animation: homeCarShineFlash var(--car-pass-duration) ease-out forwards;
}

.home-car-shine::before,
.home-car-shine::after {
  position: absolute;
  content: "";
  inset: 22%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent 44%, #ffffff 48% 52%, transparent 56%),
    linear-gradient(0deg, transparent 44%, #ffffff 48% 52%, transparent 56%);
}

.home-car-shine::after {
  inset: 35%;
  transform: rotate(45deg);
  opacity: 0.74;
}

.home-car-spark {
  position: absolute;
  display: block;
  width: 34px;
  height: 34px;
  opacity: 0;
  background: #ffffff;
  clip-path: polygon(50% 0, 60% 38%, 100% 50%, 60% 62%, 50% 100%, 40% 62%, 0 50%, 40% 38%);
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 16px rgba(0, 144, 255, 0.72));
  transform: rotate(18deg) scale(1);
}

.home-car-pass.is-running .home-car-spark {
  animation: homeCarSparkFlash var(--car-pass-duration) ease-out forwards;
}

.spark-one {
  top: 18%;
  left: 64%;
}

.spark-two {
  top: 42%;
  left: 34%;
  width: 22px;
  height: 22px;
}

.home-car-smoke {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: clamp(190px, 21vw, 350px);
  height: clamp(120px, 14vw, 210px);
  opacity: 0;
  transform: translate3d(-112%, calc(var(--car-pass-y) + 8vh), 0);
  will-change: transform, opacity;
}

.home-car-pass.is-running .home-car-smoke {
  animation: homeCarSmokeTrail var(--car-pass-duration) cubic-bezier(0.12, 0.78, 0.28, 1) forwards;
}

.home-car-smoke::before,
.home-car-smoke::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  filter: blur(11px);
}

.home-car-smoke::before {
  left: 3%;
  bottom: 18%;
  width: 82%;
  height: 56%;
  background:
    radial-gradient(circle at 18% 62%, rgba(255, 255, 255, 0.95) 0 22%, transparent 45%),
    radial-gradient(circle at 45% 38%, rgba(202, 208, 214, 0.92) 0 26%, transparent 54%),
    radial-gradient(circle at 72% 58%, rgba(246, 248, 250, 0.88) 0 20%, transparent 47%);
  box-shadow: -20px -10px 30px rgba(118, 128, 137, 0.18);
}

.home-car-smoke::after {
  left: 10%;
  bottom: 10%;
  width: 46%;
  height: 24%;
  background: rgba(104, 112, 121, 0.3);
}

.home-car-smoke span {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(10px);
}

.home-car-smoke span:nth-child(1) {
  left: 2%;
  bottom: 34%;
  width: 28%;
  height: 26%;
  background: rgba(255, 255, 255, 0.9);
}

.home-car-smoke span:nth-child(2) {
  left: 22%;
  bottom: 48%;
  width: 34%;
  height: 30%;
  background: rgba(196, 204, 211, 0.86);
}

.home-car-smoke span:nth-child(3) {
  left: 52%;
  bottom: 27%;
  width: 27%;
  height: 23%;
  background: rgba(255, 255, 255, 0.78);
}

.home-car-smoke span:nth-child(4) {
  left: 16%;
  bottom: 8%;
  width: 38%;
  height: 17%;
  background: rgba(79, 88, 96, 0.28);
}

@keyframes homeCarAutoSwipe {
  0% {
    opacity: 0;
    transform: translate3d(-120%, var(--car-pass-y), 0) scale(0.98);
  }

  8% {
    opacity: 0.98;
  }

  48% {
    opacity: 0.98;
    transform: translate3d(24vw, var(--car-pass-y), 0) scale(1);
  }

  82% {
    opacity: 0.96;
  }

  100% {
    opacity: 0;
    transform: translate3d(114vw, var(--car-pass-y), 0) scale(0.99);
  }
}

@keyframes homeCarSmokeTrail {
  0% {
    opacity: 0;
    transform: translate3d(-96%, calc(var(--car-pass-y) + 8vh), 0) scale(0.58);
  }

  14% {
    opacity: 0.94;
  }

  38% {
    opacity: 0.76;
    transform: translate3d(28vw, calc(var(--car-pass-y) + 8vh), 0) scale(1.02);
  }

  64% {
    opacity: 0.34;
    transform: translate3d(54vw, calc(var(--car-pass-y) + 8vh), 0) scale(1.32);
  }

  100% {
    opacity: 0;
    transform: translate3d(74vw, calc(var(--car-pass-y) + 8vh), 0) scale(1.52);
  }
}

@keyframes homeCarShineFlash {
  0%,
  12%,
  70%,
  100% {
    opacity: 0;
    transform: rotate(18deg) scale(0.72);
  }

  30%,
  46% {
    opacity: 0.92;
    transform: rotate(18deg) scale(1);
  }
}

@keyframes homeCarSparkFlash {
  0%,
  20%,
  72%,
  100% {
    opacity: 0;
    transform: rotate(18deg) scale(0.7);
  }

  38%,
  52% {
    opacity: 0.95;
    transform: rotate(18deg) scale(1);
  }
}

@keyframes homeCarGleamSweep {
  0%,
  18%,
  74%,
  100% {
    opacity: 0;
    transform: translateX(-34%) skewX(-12deg);
  }

  34% {
    opacity: 0.58;
  }

  58% {
    opacity: 0.16;
    transform: translateX(42%) skewX(-12deg);
  }
}

@keyframes homeCarGlistenPop {
  0%,
  28%,
  72%,
  100% {
    opacity: 0;
    transform: rotate(18deg) scale(0.72);
  }

  42%,
  54% {
    opacity: 0.96;
    transform: rotate(18deg) scale(1);
  }
}

.section {
  position: relative;
  padding-top: 62px;
  padding-bottom: 34px;
}

.hero-home + main .section:first-child {
  padding-top: 42px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 0;
}

.preview-grid,
.service-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
}

.preview-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.preview-card {
  grid-column: span 2;
}

.preview-card:nth-child(4),
.preview-card:nth-child(5) {
  grid-column: span 3;
}

.preview-card,
.service-card,
.testimonial-card {
  padding: 26px;
}

.preview-card,
.service-card,
.testimonial-card,
.about-card,
.about-highlights article {
  overflow: hidden;
}

.preview-card::before,
.service-card::before,
.testimonial-card::before,
.about-card::before,
.about-highlights article::before,
.contact-form::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2), transparent 72%);
}

.preview-card h3 {
  margin: 18px 0 12px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-icon {
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 6px;
}

.service-card h3 {
  margin-bottom: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: stretch;
}

.about-card,
.about-highlights article {
  padding: 30px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-points span {
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--ink);
  background: var(--panel-blue);
  font-weight: 750;
}

.about-highlights {
  display: grid;
  gap: 16px;
}

.gallery-book {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(8, 120, 217, 0.09), transparent 20%, transparent 80%, rgba(8, 120, 217, 0.09)),
    #ffffff;
  box-shadow: var(--shadow);
}

.gallery-spread {
  position: relative;
  min-height: clamp(500px, 64vw, 820px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(90deg, rgba(9, 30, 49, 0.08), transparent 50%, rgba(9, 30, 49, 0.08)),
    #f8fbff;
}

.gallery-spread::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(8, 120, 217, 0.26), transparent);
  box-shadow: 0 0 24px rgba(9, 30, 49, 0.18);
}

.gallery-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  transform: translateX(18px) scale(0.985);
}

.gallery-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.gallery-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 48%, rgba(7, 25, 42, 0.8) 100%),
    linear-gradient(135deg, rgba(8, 120, 217, 0.12), transparent 44%);
  pointer-events: none;
}

.gallery-overlay {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2;
  max-width: 660px;
}

.gallery-overlay p,
.gallery-overlay span {
  margin: 0;
}

.gallery-overlay p {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.gallery-overlay span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.5;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.gallery-arrow,
.gallery-pages button {
  border: 1px solid var(--line-strong);
  color: var(--blue);
  background: #ffffff;
  box-shadow: var(--shadow-tight);
  cursor: pointer;
}

.gallery-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.gallery-arrow span {
  display: block;
  margin-top: -2px;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.gallery-pages {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.92);
}

.gallery-pages button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: #d7ebff;
  box-shadow: none;
}

.gallery-pages button.active {
  width: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card strong {
  display: block;
  margin-top: 20px;
}

.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.stars {
  color: #f6b21a;
  font-size: 1.08rem;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 0 rgba(9, 30, 49, 0.12);
}

.google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(9, 30, 49, 0.08);
}

.google-review-link:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #ffffff;
  background:
    conic-gradient(
      from -45deg,
      #4285f4 0 25%,
      #34a853 0 50%,
      #fbbc05 0 75%,
      #ea4335 0 100%
    );
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(8, 120, 217, 0.12), transparent 48%),
    linear-gradient(180deg, #ffffff, #f3faff);
  box-shadow: var(--shadow);
}

.contact-copy {
  padding: 8px 4px;
}

.callout-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(8, 120, 217, 0.1), transparent 52%),
    linear-gradient(180deg, #ffffff, #f5fbff);
  box-shadow: var(--shadow-tight);
}

.callout-card .eyebrow {
  margin-bottom: 10px;
}

.callout-card h2 {
  max-width: 12ch;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.callout-card .callout-actions {
  justify-content: flex-end;
  margin-top: 0;
  min-width: 430px;
}

.callout-card .button {
  min-width: 190px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-methods a,
.contact-methods div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.contact-methods span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.legal-card {
  display: grid;
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-tight);
}

.legal-card article {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.legal-card article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
}

.legal-card p {
  max-width: 78ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.legal-card a {
  color: var(--blue);
  font-weight: 800;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: #f8fcff;
  border: 1px solid rgba(8, 81, 137, 0.18);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(8, 120, 217, 0.62);
  box-shadow: 0 0 0 4px rgba(8, 120, 217, 0.12);
  background: #ffffff;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.form-group {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--ink);
}

.service-select-wrap {
  position: relative;
}

.service-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  color: var(--ink);
  background: #f8fcff;
  border: 1px solid rgba(8, 81, 137, 0.18);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.service-select-trigger:focus,
.service-select-wrap[data-open] .service-select-trigger {
  border-color: rgba(8, 120, 217, 0.62);
  box-shadow: 0 0 0 4px rgba(8, 120, 217, 0.12);
  background: #ffffff;
  outline: none;
}

.service-select-value {
  flex: 1;
  color: var(--muted);
}

.service-select-value.has-selection {
  color: var(--ink);
}

.service-select-chevron {
  font-size: 0.68rem;
  color: var(--muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.service-select-wrap[data-open] .service-select-chevron {
  transform: rotate(180deg);
}

.service-select-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 50;
  max-height: 340px;
  overflow-y: auto;
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(8, 120, 217, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
  scrollbar-width: thin;
  scrollbar-color: var(--blue) transparent;
}

.service-select-wrap[data-open] .service-select-panel {
  display: block;
}

.service-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 8px;
}

.service-tab {
  padding: 9px 12px;
  border: 1px solid rgba(8, 81, 137, 0.18);
  border-radius: 7px;
  background: #f8fcff;
  color: var(--ink-2);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.service-tab:hover {
  border-color: rgba(8, 120, 217, 0.4);
  background: rgba(8, 120, 217, 0.04);
}

.service-tab.active {
  border-color: var(--blue);
  background: rgba(8, 120, 217, 0.1);
  color: var(--blue);
}

.service-options {
  display: grid;
  gap: 4px;
}

.service-options[hidden] {
  display: none;
}

.vehicle-type-step {
  padding: 4px 0 8px;
}

.vehicle-step-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.vehicle-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.vehicle-type-btn {
  padding: 14px 8px;
  border: 1px solid rgba(8, 81, 137, 0.18);
  border-radius: 7px;
  background: #f8fcff;
  color: var(--ink-2);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-align: center;
}

.vehicle-type-btn:hover {
  border-color: rgba(8, 120, 217, 0.5);
  background: rgba(8, 120, 217, 0.05);
  color: var(--blue);
}

.auto-service-list[hidden] {
  display: none;
}

.vehicle-type-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.vehicle-type-back {
  padding: 4px 8px;
  border: 1px solid rgba(8, 81, 137, 0.18);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.vehicle-type-back:hover {
  border-color: rgba(8, 120, 217, 0.4);
  color: var(--blue);
}

.vehicle-type-chosen {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.03em;
}

.service-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  user-select: none;
}

.service-check:has(input:checked) {
  border-color: var(--blue);
  background: rgba(8, 120, 217, 0.06);
}

.service-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.check-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(8, 81, 137, 0.3);
  border-radius: 4px;
  display: grid;
  place-items: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.service-check:has(input:checked) .check-box {
  border-color: var(--blue);
  background: var(--blue);
}

.check-box::after {
  content: "";
  width: 4px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0;
  transition: opacity 0.12s ease;
}

.service-check:has(input:checked) .check-box::after {
  opacity: 1;
}

.check-name {
  flex: 1;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}

.check-tag {
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--panel-blue);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.check-price {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-footer {
  padding-top: 50px;
  padding-bottom: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 24px 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-tight);
}

.footer-item {
  min-height: 104px;
  padding: 4px 22px;
  border-right: 1px solid var(--line);
}

.footer-item:first-child {
  padding-left: 0;
}

.footer-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.footer-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.55;
}

.footer-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-legal a {
  color: var(--blue);
  font-weight: 850;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max-width);
  margin: 16px auto 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal nav,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-legal nav a {
  font-size: 0.9rem;
}

.footer-socials {
  gap: 8px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(8, 120, 217, 0.16);
}

.footer-socials a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(8, 120, 217, 0.2);
}

.facebook-icon {
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.instagram-icon {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 5px;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffffff;
}

/* ── Nav Dropdown ───────────────────────── */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: stretch;
}

.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 76px;
  padding: 0 10px;
  border: none;
  border-radius: 7px;
  background: none;
  color: var(--ink-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.dropdown-arrow {
  font-size: 0.68rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown-trigger.active {
  color: var(--blue);
  background: rgba(8, 120, 217, 0.07);
  transform: translateY(-1px);
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after,
.nav-dropdown-trigger.active::after {
  transform: scaleX(1);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 40;
  min-width: 170px;
  padding: 10px 6px 6px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 7px;
  color: var(--ink-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--blue);
  background: rgba(8, 120, 217, 0.07);
  transform: none;
}

.nav-dropdown-menu a::after {
  display: none;
}

/* ─── Auto services hero (full-width background) ─────────────────── */
.hero-auto {
  background-image: url('assets/auto-services-hero.webp');
  background-size: cover;
  background-position: center 40%;
  padding-bottom: 42px;
}

.hero-auto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 14, 30, 0.82) 0%,
    rgba(6, 14, 30, 0.60) 100%
  );
  pointer-events: none;
}

.hero-auto .page-hero-content {
  position: relative;
  z-index: 1;
}

.hero-auto h1 {
  color: #ffffff;
}

.hero-auto .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.hero-auto .button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-auto .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.hero-auto .page-intro {
  color: rgba(255, 255, 255, 0.75);
}

/* ─── Service area section ──────────────────────────────────────── */
.area-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-tight);
  display: grid;
  grid-template-columns: auto 1px 1fr;
  overflow: hidden;
}

.area-primary {
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-2) 100%);
}

.area-primary-label {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 4px;
}

.area-primary-name {
  font-family: "Oswald", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.area-primary-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 6px 0 0;
}

.area-divider-v {
  background: var(--line);
}

.area-surrounding {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.area-surrounding-label {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--panel-blue);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.84rem;
  font-weight: 600;
}

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

/* ─── Service card grid (auto & home service pages) ─────────── */
.svc-section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.svc-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-tight);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.svc-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.svc-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
}

.svc-photo-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel-blue);
}

.svc-photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-photo-slot.svc-photo-empty {
  background: linear-gradient(135deg, var(--panel-blue) 0%, #ddeeff 100%);
}

.svc-photo-slot.svc-photo-empty::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(8, 120, 217, 0.22);
}

.svc-photo-label {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(11, 31, 51, 0.5);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.svc-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.svc-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.svc-name-row h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.svc-price {
  flex-shrink: 0;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.svc-vehicle-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.svc-vehicle-chip {
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--panel-blue);
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
}

.svc-vehicle-chip strong {
  color: var(--blue);
  font-weight: 800;
}

.svc-desc {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.svc-book {
  margin-top: 2px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-section,
  .contact-panel,
  .callout-card {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-card,
  .preview-card:nth-child(4),
  .preview-card:nth-child(5) {
    grid-column: span 3;
  }

  .compact-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .topbar {
    align-items: center;
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-wrap {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-wrap.open {
    display: flex;
  }

  .nav-wrap a {
    justify-content: flex-start;
    min-height: 46px;
    min-width: 0;
    padding: 0 14px;
  }

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

  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
    position: static;
  }

  .nav-dropdown-trigger {
    justify-content: flex-start;
    min-height: 46px;
    min-width: 0;
    padding: 0 14px;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    background: transparent;
    border: none;
    border-left: 2px solid rgba(8, 120, 217, 0.28);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 2px 0 4px 8px;
    margin: 0 0 4px 22px;
    transition: none;
  }

  .nav-dropdown-menu a {
    min-height: 38px;
    padding: 0 10px;
  }

  .dropdown-arrow {
    display: none;
  }

  .hero-grid,
  .preview-grid,
  .service-grid,
  .split-section,
  .contact-panel,
  .callout-card,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-item,
  .footer-item:first-child,
  .footer-item:last-child {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-item:last-child {
    border-bottom: 0;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal nav {
    justify-content: flex-start;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .callout-card .callout-actions {
    justify-content: flex-start;
    min-width: 0;
  }

  .home-car-sprite {
    width: min(96vw, 720px);
  }

  .home-car-smoke {
    width: min(72vw, 430px);
    height: 180px;
  }

  .preview-card,
  .preview-card:nth-child(4),
  .preview-card:nth-child(5) {
    grid-column: auto;
  }

  .gallery-book {
    padding: 12px;
  }

  .gallery-spread {
    min-height: 560px;
  }
}

/* ─── Package cards (auto-services page) ────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.pkg-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pkg-card.pkg-deluxe {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.pkg-head {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--line);
}

.pkg-card.pkg-deluxe .pkg-head {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-bottom: none;
}

.pkg-tier {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.pkg-card.pkg-deluxe .pkg-tier {
  color: rgba(255, 255, 255, 0.8);
}

.pkg-price {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.pkg-card.pkg-deluxe .pkg-price {
  color: #fff;
}

.pkg-tagline {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.pkg-card.pkg-deluxe .pkg-tagline {
  color: rgba(255, 255, 255, 0.78);
}

.pkg-includes {
  list-style: none;
  padding: 20px 24px;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-includes li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pkg-includes li::before {
  content: "✓";
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--blue);
  flex-shrink: 0;
}

.pkg-cta {
  padding: 0 24px 24px;
}

.pkg-cta .button {
  display: block;
  text-align: center;
}

/* ─── Booking form: service list section dividers & pkg tag ──── */
.service-list-section {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 0 4px;
  margin: 0;
  border-top: 1px solid var(--line);
}

.check-tag-pkg {
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  color: #fff;
}

/* ─── Home Services: two-column wash layout ─────────────────── */
.wash-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.wash-col {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.wash-col-head {
  background: var(--blue);
  padding: 20px 24px;
}

.wash-col-head h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0 0 6px;
}

.wash-col-head p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.wash-item-list {
  display: flex;
  flex-direction: column;
}

.wash-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.wash-item:last-child {
  border-bottom: none;
}

.wash-item-info h3 {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 4px;
}

.wash-item-info p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .wash-cols {
    grid-template-columns: 1fr;
  }

  .wash-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .area-card {
    grid-template-columns: 1fr;
  }

  .area-divider-v {
    width: auto;
    height: 1px;
  }

  .area-primary {
    padding: 28px 24px;
  }

  .area-surrounding {
    padding: 24px;
  }

  .hero,
  .section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    padding: 8px;
  }

  .brand {
    gap: 10px;
    padding-right: 8px;
  }

  .brand-mark {
    width: 64px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 1.02rem;
  }

  .brand-copy span {
    font-size: 0.75rem;
  }

  .hero-home,
  .hero-auto {
    padding-bottom: 44px;
  }

  .hero-grid,
  .page-hero-content {
    padding-top: 54px;
  }

  .hero::before {
    top: 108px;
    width: 96px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .hero-actions,
  .callout-actions,
  .about-points {
    flex-direction: column;
  }

  .gallery-spread {
    min-height: 470px;
  }

  .gallery-controls {
    gap: 10px;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .home-car-sprite {
    width: min(88vw, 430px);
  }

  .home-car-smoke {
    width: min(78vw, 340px);
    height: 150px;
  }

  .button {
    width: 100%;
  }

  .panel-card {
    min-height: 360px;
  }

  .panel-card,
  .about-card,
  .about-highlights article,
  .service-card,
  .testimonial-card,
  .contact-panel,
  .contact-form,
  .callout-card,
  .preview-card,
  .footer-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ─── Home services hero ─────────────────────────────────────────── */
.hero-home-svc {
  background-image: url('assets/home-services-hero.jpg');
  background-size: cover;
  background-position: center 55%;
  padding-bottom: 42px;
}

.hero-home-svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 14, 30, 0.78) 0%,
    rgba(6, 14, 30, 0.55) 100%
  );
  pointer-events: none;
}

.hero-home-svc .page-hero-content {
  position: relative;
  z-index: 1;
}

.hero-home-svc h1 {
  color: #ffffff;
}

.hero-home-svc .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.hero-home-svc .page-intro {
  color: rgba(255, 255, 255, 0.75);
}

/* ─── Flatpickr calendar overrides ──────────────────────────────── */
.flatpickr-calendar {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  font-family: "Inter", sans-serif;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.flatpickr-day:hover {
  background: var(--panel-blue);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(8, 81, 137, 0.2);
  cursor: not-allowed;
  text-decoration: line-through;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--blue);
}

/* ─── Field optional label ───────────────────────────────────────── */
.field-optional {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
  text-transform: none;
  letter-spacing: 0;
}

/* ─── Time slot picker ───────────────────────────────────────────── */
.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.time-slot {
  position: relative;
}

.time-slot input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.time-slot span {
  display: block;
  padding: 11px 6px;
  text-align: center;
  border: 1px solid rgba(8, 81, 137, 0.18);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--panel);
  color: var(--ink-2);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  user-select: none;
}

.time-slot input:checked + span {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.time-slot span:hover {
  border-color: rgba(8, 120, 217, 0.5);
  background: rgba(8, 120, 217, 0.06);
}

.time-slot input:checked + span:hover {
  background: var(--blue);
}

.time-slot.time-slot-booked span {
  opacity: 0.38;
  cursor: not-allowed;
  text-decoration: line-through;
  color: var(--muted);
}

.time-slot.time-slot-booked input:checked + span {
  background: var(--panel);
  border-color: rgba(8, 81, 137, 0.18);
  color: var(--muted);
}

/* ─── Slot availability notes ────────────────────────────────────── */
.slot-note {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 6px 0 0;
  min-height: 1.1em;
}

.slot-note.slot-error {
  color: #c0392b;
}

/* ─── Live price calculator ──────────────────────────────────────── */
.booking-total {
  background: linear-gradient(135deg, var(--panel-blue) 0%, rgba(8, 120, 217, 0.04) 100%);
  border: 1px solid rgba(8, 120, 217, 0.22);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin-top: 20px;
}

.booking-total-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.booking-total-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-total-amount {
  font-family: "Oswald", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
}

.booking-total-note {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 8px 0 0;
}

@media (max-width: 600px) {
  .time-slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-home-svc,
  .hero-auto {
    padding-bottom: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-car-sprite,
  .home-car-smoke,
  .home-car-shine,
  .home-car-spark {
    transition: none;
  }

  .home-car-sprite,
  .home-car-smoke,
  .home-car-shine,
  .home-car-spark {
    display: none;
  }
}
