:root {
  --red: #b82e32;
  --red-deep: #8e2027;
  --ink: #252426;
  --muted: #666369;
  --line: #e9e4df;
  --paper: #faf5ef;
  --sand: #f1e8df;
  --radius: 1.25rem;
  --page-pad: clamp(1.25rem, 3.5vw, 4rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 10;
  top: 0.75rem;
  left: 50%;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  border-radius: 0.5rem;
  transform: translate(-50%, -180%);
}

.skip-link:focus { transform: translate(-50%, 0); }

.site-header {
  position: sticky;
  z-index: 5;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.25rem;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0.65rem var(--page-pad);
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  display: block;
  width: 9.75rem;
  height: 3.9rem;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-left: auto;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a:hover, .main-nav a:focus-visible { color: var(--red); }

.header-cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 9px 22px rgb(184 46 50 / 18%);
  font-size: 0.87rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover, .header-cta:focus-visible {
  background: var(--red-deep);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1rem;
  height: 1.5px;
  margin: 0.22rem auto;
  background: var(--ink);
}

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

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(48rem, calc(100svh - 5.25rem));
  overflow: hidden;
  align-items: center;
  padding: clamp(4.5rem, 9vw, 8rem) var(--page-pad);
  background: #57151b;
}

.hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-scale 18s ease-out both;
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 76% 14%, rgb(239 89 89 / 44%), transparent 32%),
    linear-gradient(90deg, rgb(88 18 25 / 96%) 0%, rgb(123 26 33 / 86%) 40%, rgb(99 22 28 / 45%) 67%, rgb(33 12 14 / 28%) 100%);
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

.hero-copy { max-width: 42rem; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.35rem;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0.32rem rgb(184 46 50 / 12%);
}

.hero .eyebrow { color: #ffd4cf; }
.hero .eyebrow span { background: #ffd4cf; box-shadow: 0 0 0 0.32rem rgb(255 212 207 / 14%); }

.hero h1 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 5.4vw, 5.15rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 36rem;
  margin: 1.55rem 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary { color: #fff; background: var(--red); box-shadow: 0 14px 24px rgb(184 46 50 / 18%); }
.button-primary:hover, .button-primary:focus-visible { background: var(--red-deep); }
.button-secondary { color: var(--ink); border-color: var(--line); background: rgb(255 255 255 / 75%); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: #d8cec6; background: #fff; }

.hero .button-secondary { color: #fff; border-color: rgb(255 255 255 / 32%); background: rgb(255 255 255 / 9%); }
.hero .button-secondary:hover, .hero .button-secondary:focus-visible { border-color: rgb(255 255 255 / 72%); background: rgb(255 255 255 / 18%); }

.rating-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  color: #fff;
  font-size: 0.87rem;
  text-decoration: none;
}

.rating-link small { color: rgb(255 255 255 / 72%); font-size: inherit; }
.stars { color: #dc9622; font-size: 0.84rem; letter-spacing: 0.08em; }

.hero-visual { position: relative; }

.hero-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.19 / 1;
  border-radius: clamp(1.5rem, 3vw, 2.4rem);
  background: #d9d2ca;
  box-shadow: 1.3rem 1.3rem 0 #efdeda;
}

.hero-photo-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgb(0 0 0 / 8%), transparent 43%);
  pointer-events: none;
}

.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-stamp {
  position: absolute;
  right: var(--page-pad);
  bottom: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.05rem 0.8rem 0.8rem;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgb(197 46 52 / 96%), rgb(121 25 31 / 96%));
  box-shadow: 0 16px 28px rgb(85 22 26 / 24%);
  color: #fff;
}

.hero-stamp p { margin: 0; font-size: 0.72rem; line-height: 1.45; }
.hero-stamp strong { font-size: 0.84rem; }
.stamp-mark { display: grid; width: 2.45rem; height: 2.45rem; flex: 0 0 auto; place-items: center; border: 1px solid rgb(255 255 255 / 22%); border-radius: 0.78rem; background: linear-gradient(145deg, rgb(255 255 255 / 22%), rgb(255 255 255 / 7%)); box-shadow: inset 0 1px rgb(255 255 255 / 15%); }
.stamp-mark svg { width: 1.45rem; height: 1.45rem; }

.section-space { padding: clamp(4.5rem, 9vw, 8.5rem) var(--page-pad); }

.services {
  position: relative;
  isolation: isolate;
  max-width: none;
  margin: 0;
}

.services::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 8% 86%, rgb(212 72 73 / 12%), transparent 27%), linear-gradient(115deg, #f4ece5, #f9f3ee 62%, #f5e8e6);
}

.services-intro, .services-grid { max-width: 80rem; margin-right: auto; margin-left: auto; }

.section-intro {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 2rem;
  max-width: 70rem;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-intro .eyebrow { margin-top: 0.55rem; }

.section-intro h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 3.55vw, 3.65rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-intro p:not(.eyebrow) {
  max-width: 41rem;
  margin: 1.05rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: minmax(17rem, auto) minmax(17rem, auto);
  gap: 1rem;
}

.service-card {
  display: flex;
  min-height: 17rem;
  padding: clamp(1.45rem, 3vw, 2.35rem);
  border-radius: clamp(1.35rem, 2.5vw, 2rem);
}

.service-exclusive {
  grid-row: span 2;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: radial-gradient(circle at 92% 8%, rgb(255 144 137 / 30%), transparent 31%), linear-gradient(135deg, #c93a3d 0%, #a3232b 48%, #76151d 100%);
  box-shadow: 0 20px 42px rgb(184 46 50 / 14%);
}

.service-card-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.service-symbol {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 50%;
  font-size: 1.3rem;
}

.service-exclusive .service-symbol { background: rgb(255 255 255 / 14%); }
.service-shared .service-symbol { color: var(--red); background: #fff; }

.service-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-exclusive h3, .service-shared h3, .service-vehicle h3 {
  margin: 2.5rem 0 0;
  font-size: clamp(1.6rem, 2.65vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.service-card p { margin: 0.9rem 0 0; line-height: 1.6; }
.service-exclusive p { max-width: 27rem; color: rgb(255 255 255 / 82%); }

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
}

.service-card a span { font-size: 1.12rem; transition: transform 160ms ease; }
.service-card a:hover span, .service-card a:focus-visible span { transform: translateX(0.25rem); }

.service-shared {
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: var(--sand);
}

.service-shared p { color: var(--muted); }
.service-shared a, .service-vehicle a { color: var(--red-deep); }

.service-vehicle {
  position: relative;
  overflow: hidden;
  align-items: end;
  padding: 0;
  color: #fff;
  background: #342728;
}

.service-vehicle::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgb(10 8 8 / 3%) 12%, rgb(18 12 12 / 88%) 100%);
  pointer-events: none;
}

.service-vehicle > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 44%; }

.service-vehicle-copy { position: relative; z-index: 1; padding: clamp(1.35rem, 2.8vw, 2rem); }
.service-vehicle h3 { margin-top: 0.6rem; }
.service-vehicle p { color: rgb(255 255 255 / 82%); }
.service-vehicle a { color: #fff; }

.support-note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  max-width: 46rem;
  margin: 1.35rem 0 0 auto;
  padding: 1.15rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  line-height: 1.55;
}

.support-note span { color: var(--red); font-size: 1.25rem; font-weight: 500; line-height: 1.1; }
.support-note p { margin: 0; }

.process { color: #fff; background: radial-gradient(circle at 85% 32%, rgb(204 56 63 / 23%), transparent 35%), linear-gradient(135deg, #232124, #171719); }

.process-inner { max-width: 90rem; margin: 0 auto; }

.process-heading {
  display: grid;
  grid-template-columns: 0.5fr minmax(0, 1fr);
  gap: 1.6rem 2rem;
  max-width: 73rem;
}

.eyebrow-light { color: #efaaa8; }
.eyebrow-light span { background: #efaaa8; box-shadow: 0 0 0 0.32rem rgb(239 170 168 / 14%); }

.process-heading h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.75rem);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.process-heading p:not(.eyebrow) {
  grid-column: 2;
  max-width: 38rem;
  margin: 0;
  color: rgb(255 255 255 / 62%);
  line-height: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgb(255 255 255 / 17%);
  border-bottom: 1px solid rgb(255 255 255 / 17%);
}

.process-item {
  min-height: 14.5rem;
  padding: 1.7rem clamp(1.1rem, 2.3vw, 2.35rem) 1.6rem;
  border-right: 1px solid rgb(255 255 255 / 17%);
}

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

.process-icon {
  display: inline-grid;
  min-width: 2.5rem;
  height: 2.1rem;
  place-items: center;
  padding: 0 0.55rem;
  border-radius: 0.55rem;
  background: rgb(239 89 89 / 10%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.process-icon img { display: block; width: 1.6rem; height: 1.6rem; }

.process-item h3 { margin: 1.55rem 0 0; font-size: 1.1rem; letter-spacing: -0.02em; }
.process-item p { margin: 0.65rem 0 0; color: rgb(255 255 255 / 58%); font-size: 0.9rem; line-height: 1.58; }

.process-cta {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-top: 2rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.process-cta span { color: #efaaa8; font-size: 1.15rem; }

.reviews {
  position: relative;
  isolation: isolate;
  max-width: none;
  margin: 0;
}

.reviews::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 88% 18%, rgb(201 57 62 / 16%), transparent 25%), linear-gradient(110deg, #f9efeb, #fff7f3 52%, #f6e8e5);
}

.reviews-top, .reviews-layout, .reviews-link { max-width: 80rem; margin-right: auto; margin-left: auto; }

.reviews-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.25rem, 5vw, 4.25rem);
}

.reviews-top h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 3.55vw, 3.65rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.google-summary {
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.55rem;
  min-width: 16rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.google-summary:hover, .google-summary:focus-visible { border-color: #d2c7be; transform: translateY(-2px); }
.google-stars { grid-column: 1 / -1; color: #e1a127; font-size: 0.72rem; letter-spacing: 0.12em; }
.google-summary strong { font-size: 2rem; letter-spacing: -0.06em; line-height: 1; }
.google-summary small { color: var(--muted); font-size: 0.72rem; line-height: 1.35; }
.google-arrow { margin-left: auto; color: var(--red); font-size: 1.15rem; }

.reviews-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1rem; }

.review-featured, .review-card { margin: 0; border-radius: clamp(1.35rem, 2.5vw, 2rem); }

.review-featured {
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.7rem, 4vw, 3rem);
  color: #fff;
  background: #a8272d;
}

.quote-mark { color: rgb(255 255 255 / 38%); font-family: Georgia, serif; font-size: 5.25rem; line-height: 0.65; }

.review-featured blockquote {
  max-width: 23ch;
  margin: 1.4rem 0;
  font-size: clamp(1.5rem, 2.7vw, 2.35rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.review-featured figcaption { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-avatar { display: block; width: 2.5rem; height: 2.5rem; overflow: hidden; flex: 0 0 auto; border-radius: 50%; background: #f3d1cb; }
.reviewer-avatar img, .review-card-avatar { display: block; width: 100%; height: 100%; object-fit: cover; }
.review-featured figcaption strong, .review-featured figcaption small, .review-card figcaption strong, .review-card figcaption small { display: block; }
.review-featured figcaption strong { font-size: 0.9rem; }
.review-featured figcaption small { margin-top: 0.25rem; color: rgb(255 255 255 / 65%); font-size: 0.74rem; }

.reviews-side { display: grid; gap: 1rem; }

.review-card {
  display: flex;
  min-height: 12rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem 1.75rem;
  background: var(--sand);
}

.review-card blockquote { max-width: 35ch; margin: 0; font-size: 1.1rem; font-weight: 620; letter-spacing: -0.02em; line-height: 1.4; }
.review-card figcaption { display: flex; align-items: center; gap: 0.65rem; margin-top: 1.3rem; }
.review-card-avatar { width: 2rem; height: 2rem; flex: 0 0 auto; border-radius: 50%; }
.review-card figcaption strong { font-size: 0.8rem; }
.review-card figcaption small { margin-top: 0.22rem; color: var(--muted); font-size: 0.72rem; }

.reviews-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1.8rem;
  color: var(--red-deep);
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
}

.reviews-link span { font-size: 1.12rem; }

.route-strip {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(18rem, 34vw, 30rem);
  overflow: hidden;
  align-items: end;
  padding: clamp(1.5rem, 4vw, 3.6rem) var(--page-pad);
  color: #fff;
  background: #65171e;
}

.route-strip img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 49%; }
.route-strip-overlay { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgb(84 17 23 / 92%) 0%, rgb(136 27 35 / 70%) 43%, rgb(39 10 13 / 23%) 100%); }
.route-strip-copy { width: 100%; max-width: 80rem; margin: 0 auto; }
.route-strip-copy p { margin: 0; color: #ffc5bf; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.route-strip-copy p span { margin: 0 0.35rem; font-size: 1rem; }
.route-strip-copy strong { display: block; max-width: 13ch; margin-top: 0.85rem; font-size: clamp(2rem, 4.3vw, 4.25rem); letter-spacing: -0.06em; line-height: 0.98; }

.coverage { background: var(--sand); }

.coverage-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.8fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  max-width: 80rem;
  margin: 0 auto;
}

.coverage-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.88;
  border-radius: clamp(1.5rem, 3vw, 2.3rem);
  box-shadow: -1.1rem 1.1rem 0 #fffaf6;
}

.coverage-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.coverage-copy h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.15rem, 3.8vw, 4rem);
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.coverage-copy > p:not(.eyebrow):not(.coverage-note) {
  max-width: 32rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.coverage-list { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.6rem; }

.coverage-list span {
  padding: 0.65rem 0.8rem;
  border: 1px solid #e5d8cf;
  border-radius: 999px;
  color: var(--ink);
  background: rgb(255 255 255 / 50%);
  font-size: 0.82rem;
  font-weight: 700;
}

.coverage-note { margin: 1.65rem 0 1.4rem; color: var(--ink); font-size: 0.92rem; line-height: 1.55; }

.faq {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(15rem, 0.74fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 8vw, 9rem);
  max-width: 80rem;
  margin: 0 auto;
}

.faq::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 50%;
  bottom: 0;
  width: 100vw;
  content: "";
  transform: translateX(50%);
  background: radial-gradient(circle at 80% 20%, rgb(208 66 71 / 28%), transparent 25%), linear-gradient(130deg, #242124, #191719 63%, #3c1d21);
}

.faq-heading h2 {
  max-width: 10ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.55rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.faq .eyebrow { color: #f5aaa5; }
.faq .eyebrow span { background: #f5aaa5; box-shadow: 0 0 0 0.32rem rgb(245 170 165 / 14%); }
.faq-list { border-top: 1px solid rgb(255 255 255 / 17%); }

.faq details { border-bottom: 1px solid rgb(255 255 255 / 17%); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 0;
  color: #fff;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 730;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary span { display: grid; width: 1.85rem; height: 1.85rem; place-items: center; flex: 0 0 auto; border: 1px solid rgb(255 255 255 / 24%); border-radius: 50%; color: #f4aba6; font-size: 1.18rem; font-weight: 400; transition: transform 180ms ease, background 180ms ease; }
.faq details[open] summary span { color: #fff; background: var(--red); border-color: var(--red); transform: rotate(45deg); }
.faq details p { max-width: 48rem; margin: -0.25rem 3.3rem 1.4rem 0; color: rgb(255 255 255 / 62%); font-size: 0.94rem; line-height: 1.65; }

.contact-cta { padding: 0 var(--page-pad) clamp(3rem, 6vw, 6rem); background: var(--paper); }

.contact-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: clamp(1.5rem, 3vw, 2.3rem);
  color: #fff;
  background: radial-gradient(circle at 85% 4%, rgb(255 159 151 / 33%), transparent 31%), linear-gradient(125deg, #8b1e26 0%, #bd3035 54%, #d84e4d 100%);
  box-shadow: 0 22px 45px rgb(184 46 50 / 17%);
}

.contact-cta h2 { max-width: 11ch; margin: 0; font-size: clamp(2.25rem, 4.1vw, 4rem); letter-spacing: -0.06em; line-height: 1; }
.contact-cta p:not(.eyebrow) { max-width: 32rem; margin: 1.15rem 0 0; color: rgb(255 255 255 / 78%); line-height: 1.6; }
.contact-cta .eyebrow-light { color: #ffd4cf; }
.contact-cta .eyebrow-light span { background: #ffd4cf; box-shadow: 0 0 0 0.32rem rgb(255 212 207 / 14%); }

.contact-cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; flex: 0 0 auto; }
.button-white { color: var(--red-deep); background: #fff; box-shadow: none; }
.button-white:hover, .button-white:focus-visible { background: #fff4f1; }
.phone-link { color: #fff; font-size: 0.95rem; font-weight: 740; text-decoration: none; }

.site-footer { padding: 0 var(--page-pad); color: var(--ink); background: var(--paper); }
.footer-main { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 4rem); max-width: 80rem; margin: 0 auto; padding: 3rem 0; border-top: 1px solid var(--line); }
.footer-brand { align-self: start; }
.footer-column { display: grid; align-content: start; gap: 0.55rem; }
.footer-column strong { margin-bottom: 0.25rem; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-column a, .footer-column span { color: var(--muted); font-size: 0.84rem; line-height: 1.45; text-decoration: none; overflow-wrap: anywhere; }
.footer-column a:hover, .footer-column a:focus-visible { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; max-width: 80rem; margin: 0 auto; padding: 1.25rem 0 1.7rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.76rem; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover, .footer-bottom a:focus-visible { color: var(--red); }

.cookie-banner {
  position: fixed;
  z-index: 20;
  right: max(1rem, var(--page-pad));
  bottom: max(1rem, var(--page-pad));
  display: flex;
  align-items: end;
  gap: 1.5rem;
  width: min(43rem, calc(100vw - 2rem));
  padding: 1.1rem 1.15rem;
  border: 1px solid #dfd6cf;
  border-radius: 1.1rem;
  background: rgb(255 253 251 / 98%);
  box-shadow: 0 16px 45px rgb(37 36 38 / 17%);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden] { display: none !important; }

.whatsapp-float {
  position: fixed;
  z-index: 18;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  right: max(1.25rem, var(--page-pad));
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0.7rem 1rem 0.7rem 0.78rem;
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: 999px;
  color: #fff;
  background: #20bd5a;
  box-shadow: 0 13px 30px rgb(22 117 56 / 30%);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float svg { width: 1.55rem; height: 1.55rem; flex: 0 0 auto; }
.whatsapp-float:hover, .whatsapp-float:focus-visible { background: #18a64c; box-shadow: 0 17px 34px rgb(22 117 56 / 36%); transform: translateY(-3px); }
.cookie-banner:not([hidden]) + .whatsapp-float { bottom: 8.8rem; }

.js [data-reveal] { opacity: 0; transform: translateY(1.15rem); transition: opacity 620ms ease, transform 620ms cubic-bezier(.22,.75,.25,1); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.services-grid [data-reveal]:nth-child(2) { transition-delay: 80ms; }
.services-grid [data-reveal]:nth-child(3) { transition-delay: 150ms; }

@keyframes hero-scale { from { transform: scale(1.045); } to { transform: scale(1); } }

.cookie-banner strong { display: block; font-size: 0.88rem; }
.cookie-banner p { max-width: 29rem; margin: 0.35rem 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.45; }
.cookie-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: end; gap: 0.45rem; flex: 0 0 auto; }
.cookie-actions > a { color: var(--muted); font-size: 0.72rem; text-decoration: underline; text-underline-offset: 0.2rem; }
.cookie-button { min-height: 2.3rem; padding: 0.55rem 0.7rem; border: 1px solid var(--line); border-radius: 0.6rem; background: #fff; color: var(--ink); cursor: pointer; font: inherit; font-size: 0.73rem; font-weight: 750; }
.cookie-accept { border-color: var(--red); color: #fff; background: var(--red); }
.cookie-essential:hover, .cookie-essential:focus-visible { border-color: #c9bdb3; }
.cookie-accept:hover, .cookie-accept:focus-visible { background: var(--red-deep); }

.privacy-page { padding: clamp(3.5rem, 8vw, 7rem) var(--page-pad); }
.privacy-hero, .privacy-content { max-width: 48rem; margin: 0 auto; }
.privacy-hero h1 { max-width: 12ch; margin: 0; font-size: clamp(2.6rem, 5vw, 4.7rem); letter-spacing: -0.065em; line-height: 0.98; }
.privacy-hero > p:not(.eyebrow) { max-width: 38rem; margin: 1.4rem 0 0; color: var(--muted); line-height: 1.65; }
.privacy-hero small { display: block; margin-top: 1.3rem; color: var(--muted); font-size: 0.76rem; }
.privacy-content { margin-top: clamp(3.25rem, 7vw, 5.5rem); }
.privacy-content section { padding: 1.6rem 0; border-top: 1px solid var(--line); }
.privacy-content section:last-child { border-bottom: 1px solid var(--line); }
.privacy-content h2 { margin: 0; font-size: 1.22rem; letter-spacing: -0.025em; }
.privacy-content p { margin: 0.7rem 0 0; color: var(--muted); line-height: 1.7; }
.privacy-content a { color: var(--red-deep); }

@media (max-width: 980px) {
  .header-inner { gap: 0.9rem; }
  .main-nav { gap: 1rem; }
  .header-cta { padding-inline: 0.9rem; }
}

@media (max-width: 760px) {
  .header-inner { min-height: 4.75rem; }
  .brand img { width: 7.65rem; height: 3.25rem; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .main-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: var(--page-pad);
    left: var(--page-pad);
    display: grid;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 35px rgb(37 36 38 / 12%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 0.9rem; border-radius: 0.8rem; }
  .main-nav a:hover, .main-nav a:focus-visible { background: var(--sand); }

  .hero { min-height: 43rem; padding-top: 4.5rem; padding-bottom: 8.5rem; }
  .hero h1 { max-width: 11.5ch; font-size: clamp(2.65rem, 12vw, 4rem); }
  .hero-lead { max-width: 32rem; }
  .hero-background { object-position: 58% center; }
  .hero-stamp { right: var(--page-pad); bottom: 2rem; }
  .section-intro { grid-template-columns: 1fr; gap: 0.2rem; }
  .section-intro .eyebrow { margin-top: 0; }
  .services-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .service-exclusive { min-height: 25rem; }
  .service-card { min-height: 20rem; }
  .service-vehicle { min-height: 25rem; }
  .support-note { margin-left: 0; }
  .process-heading { grid-template-columns: 1fr; gap: 0.2rem; }
  .process-heading p:not(.eyebrow) { grid-column: auto; margin-top: 1rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-item:nth-child(2) { border-right: 0; }
  .process-item:nth-child(-n+2) { border-bottom: 1px solid rgb(255 255 255 / 17%); }
  .reviews-top { align-items: flex-start; flex-direction: column; }
  .reviews-layout { grid-template-columns: 1fr; }
  .review-featured { min-height: 21rem; }
  .coverage-inner { grid-template-columns: 1fr; }
  .coverage-photo { max-width: 38rem; aspect-ratio: 1.12 / 1; }
  .faq { grid-template-columns: 1fr; gap: 2.4rem; }
  .faq-heading h2 { max-width: 16ch; }
  .contact-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .cookie-banner { align-items: flex-start; flex-direction: column; gap: 0.8rem; }
  .cookie-actions { justify-content: flex-start; }
  .cookie-banner:not([hidden]) + .whatsapp-float { bottom: 11rem; }
}

@media (max-width: 440px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-item, .process-item:nth-child(2) { min-height: auto; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 17%); }
  .process-item:last-child { border-bottom: 0; }
  .contact-cta { padding-inline: 1rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 1rem; bottom: 1rem; padding-right: 0.85rem; }
  .whatsapp-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-background { animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
