/* =========================================================================
   HERITAGE PAINT & BODY — Landing Page
   Production styles. Mobile-first. Organized by section.
   ========================================================================= */

/* -------------------------------------------------------------------------
   0. Tokens, reset, base typography
   ------------------------------------------------------------------------- */
:root {
  /* Color */
  --c-black:        #0A0A0A;
  --c-off-black:    #141414;
  --c-charcoal:     #1F1F1F;
  --c-dark-border:  #2A2A2A;
  --c-red:          #E30B17;
  --c-red-dark:     #B0080F;
  --c-red-bright:   #FF1A28;
  --c-white:        #FFFFFF;
  --c-gray-50:      #FAFAFA;
  --c-gray-100:     #F4F4F5;
  --c-gray-200:     #E4E4E7;
  --c-gray-400:     #A1A1AA;
  --c-gray-500:     #71717A;
  --c-gray-700:     #3F3F46;

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', 'Impact', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Sizing */
  --max-w:        1200px;
  --max-w-narrow: 900px;
  --radius:       10px;
  --radius-lg:    18px;
  --radius-pill:  999px;

  /* Spacing */
  --section-y:    clamp(3.5rem, 7vw, 6rem);
  --section-y-lg: clamp(4.5rem, 9vw, 8rem);

  /* Effects */
  --transition:   0.24s cubic-bezier(.2,.7,.2,1);
  --shadow-card:  0 8px 30px rgba(0,0,0,.08);
  --shadow-dark:  0 12px 40px rgba(0,0,0,.55);
  --header-h:     76px;
  --topbar-h:     38px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 110px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-black);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.5rem, 6.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { margin: 0 0 1em; }
em { font-style: italic; color: var(--c-red); font-weight: 700; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Skip-to-content link — visible only on keyboard focus, accessibility win */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--c-red);
  color: var(--c-white);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 999;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--c-white);
  outline-offset: -4px;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* -------------------------------------------------------------------------
   1. Reusable building blocks (buttons, eyebrows, headings)
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--c-red); outline-offset: 2px; }

.btn--primary { background: var(--c-red); color: var(--c-white); }
.btn--primary:hover { background: var(--c-red-dark); }
.btn--outline-light { background: transparent; color: var(--c-white); border-color: var(--c-white); }
.btn--outline-light:hover { background: var(--c-white); color: var(--c-black); }
.btn--outline-dark { background: transparent; color: var(--c-black); border-color: var(--c-black); }
.btn--outline-dark:hover { background: var(--c-black); color: var(--c-white); }
.btn--ghost-light { background: transparent; color: var(--c-white); border-color: transparent; }
.btn--ghost-light:hover { color: var(--c-red); }
.btn--ghost-dark { background: transparent; color: var(--c-black); border-color: transparent; }
.btn--ghost-dark:hover { color: var(--c-red); }
.btn--phone { background: var(--c-red); color: var(--c-white); padding: 0.6rem 1rem; font-size: 0.85rem; }
.btn--phone:hover { background: var(--c-red-dark); }
.btn--lg { padding: 1.05rem 1.75rem; font-size: 1rem; }
.btn--block { width: 100%; }

.section-eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-red);
  margin: 0 0 0.75rem;
}
.section-eyebrow--center { text-align: center; }
.section-heading { margin: 0 0 1rem; }
.section-heading--center { text-align: center; }
.section-sub { color: var(--c-gray-500); font-size: 1.05rem; max-width: 56ch; }
.section-sub--center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  background: var(--c-red);
  color: var(--c-white);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   2. Top announcement bar
   ------------------------------------------------------------------------- */
.topbar {
  background: var(--c-red);
  color: var(--c-white);
  font-size: 0.85rem;
  position: relative;
  z-index: 60;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  flex-wrap: wrap;
  text-align: center;
}
.topbar__dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--c-white);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}
.topbar__cta {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.topbar__cta:hover { border-color: var(--c-white); }

/* -------------------------------------------------------------------------
   3. Site header — floating white pill on dark page (Century 1st-style)
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  background: var(--c-black);
  padding: 0.75rem 1rem 0;
  z-index: 50;
  transition: padding 0.25s ease;
}
.site-header.is-scrolled { padding: 0.5rem 1rem 0; }

.header__pill {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.6rem 1.1rem 0.6rem 0.6rem;
  background: var(--c-white);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  min-height: 68px;
}

/* LEFT — Phone button */
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: start;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--c-gray-200);
  border-radius: 10px;
  color: var(--c-black);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.header__phone:hover {
  border-color: var(--c-red);
  background: rgba(227,11,23,0.04);
}
.header__phone-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-red);
  color: var(--c-white);
  flex-shrink: 0;
  transition: var(--transition);
}
.header__phone:hover .header__phone-icon { transform: rotate(-15deg); }
.header__phone-num { font-weight: 700; }

/* CENTER — HERITAGE wordmark */
.header__brand {
  justify-self: center;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  padding: 0.15rem 0.85rem;
  position: relative;
}
.header__brand-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--c-red);
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  text-shadow: 0 1px 0 rgba(176,8,15,0.15);
  -webkit-text-stroke: 0.5px var(--c-red);
}
.header__brand-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(0.55rem, 0.85vw, 0.7rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-black);
}
.header__brand-sub em {
  color: var(--c-red);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0.05em;
}
.header__brand-line {
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--c-black);
  opacity: 0.7;
}

/* RIGHT — Request Estimate + Hamburger */
.header__right {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.header__estimate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.header__estimate:hover { background: var(--c-red-dark); transform: translateY(-1px); }
.header__estimate:active { transform: translateY(0); }

.header__menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid var(--c-gray-200);
  border-radius: 8px;
  background: var(--c-white);
  flex-shrink: 0;
  transition: var(--transition);
}
.header__menu-btn:hover { border-color: var(--c-black); }
.header__menu-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--c-black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header__menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Dropdown nav (always-on dropdown — hidden until hamburger clicked) */
.header__mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-white);
  border-radius: 12px;
  margin: 0.5rem auto 0;
  max-width: 1300px;
  padding: 0.5rem 1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.header__mobile-nav.is-open { display: flex; }
.header__mobile-nav a {
  color: var(--c-black);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 0.6rem;
  border-bottom: 1px solid var(--c-gray-200);
  transition: color var(--transition);
}
.header__mobile-nav a:last-child { border-bottom: 0; }
.header__mobile-nav a:hover { color: var(--c-red); }

/* Responsive — narrower screens */
@media (max-width: 720px) {
  .site-header { padding: 0.5rem 0.65rem 0; }
  .header__pill {
    padding: 0.5rem 0.6rem 0.5rem 0.5rem;
    gap: 0.5rem;
    min-height: 60px;
  }
  /* Phone collapses to icon only */
  .header__phone { padding: 0.4rem; border-color: transparent; }
  .header__phone-num { display: none; }
  /* Request Estimate becomes compact */
  .header__estimate { padding: 0.55rem 0.75rem; font-size: 0.72rem; letter-spacing: 0.04em; }
  /* Wordmark slightly smaller */
  .header__brand-main { font-size: 1.4rem; }
  .header__brand-sub { font-size: 0.5rem; letter-spacing: 0.22em; gap: 0.35rem; }
  .header__brand-line { width: 14px; }
}
@media (max-width: 420px) {
  .header__estimate-text { display: none; }
  .header__estimate::before {
    content: "✎";
    font-size: 1rem;
  }
  .header__estimate { padding: 0.55rem 0.7rem; }
}

/* -------------------------------------------------------------------------
   4. HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--c-black);
  color: var(--c-white);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--c-black); /* fallback while image loads */
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 55%;     /* Mercedes prominent, anchor to lower-center */
  /* Cinematic color grade — tuned for visibility + atmosphere balance:
     - brightness 0.68 → tames lights but keeps cars/details readable
     - contrast 1.12   → moderate depth, no crushed shadows
     - saturate 0.7    → mutes green floor without making image feel B&W
     - hue-rotate -8deg → shifts greens toward muted teal, warms blacks */
  filter: brightness(0.68) contrast(1.12) saturate(0.7) hue-rotate(-8deg);
  transform: scale(1.02); /* tiny over-scale to hide edge artifacts from filters */
}
/* Color-grade layer: lighter multiply tint that nudges the image into the
   brand black/red palette without flattening the shop detail. */
.hero__grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #1F060A 0%, #0E0E0E 70%, #0A0A0A 100%);
  mix-blend-mode: multiply;
  opacity: 0.45;
  pointer-events: none;
}
/* Softer vignette + ambient red glow + bottom anchor for headline legibility */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* 1. Bottom-to-top dark anchor — stronger at the very bottom for text legibility, light through the middle so the shop is visible */
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.05) 30%, rgba(10,10,10,0.3) 65%, rgba(10,10,10,0.85) 100%),
    /* 2. Red ambient glow upper-right (brand presence) */
    radial-gradient(ellipse 80% 60% at 78% 25%, rgba(227,11,23,0.18), transparent 60%),
    /* 3. Cool steel fill upper-left for cinematic two-tone depth */
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(40,60,90,0.14), transparent 55%),
    /* 4. Soft vignette — gentle corner darkening only */
    radial-gradient(ellipse 120% 100% at 50% 50%, transparent 45%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}
.hero__headline {
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin: 1rem 0 1.25rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero__headline em {
  color: var(--c-red);
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.hero__tel {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--c-white);
  padding: 0.6rem 0.85rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.hero__tel:hover { border-color: var(--c-red); color: var(--c-red); }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 0 auto;
  max-width: 700px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.hero__trust li { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.hero__trust strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--c-red);
  font-weight: 700;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  z-index: 2;
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* -------------------------------------------------------------------------
   4b. Post-hero feature cards (Century 1st's "pay later / certified / pickup")
   ------------------------------------------------------------------------- */
.features3 {
  background: var(--c-gray-50);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--c-gray-200);
}
.features3__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .features3__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.features3__card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.features3__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--c-red);
}
.features3__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-red);
  color: var(--c-white);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}
.features3__card h2,
.features3__card-h {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0 0 0.5rem;
  color: var(--c-black);
  letter-spacing: 0.01em;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}
.features3__card h2 em,
.features3__card-h em { color: var(--c-red); font-style: italic; font-weight: 700; }
.features3__card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--c-gray-500);
  line-height: 1.5;
}
.features3__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .features3__cta { flex-direction: column; align-items: stretch; }
  .features3__cta .btn { width: 100%; }
}

/* -------------------------------------------------------------------------
   5. Insurance marquee
   ------------------------------------------------------------------------- */
.insurers {
  padding: var(--section-y) 0;
  background: var(--c-white);
}
.insurers .container { margin-bottom: 2.5rem; }
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track img {
  height: 48px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: var(--transition);
}
.marquee__track img:hover { opacity: 1; filter: grayscale(0%); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* -------------------------------------------------------------------------
   6. Special coupon
   ------------------------------------------------------------------------- */
.special {
  padding: var(--section-y) 0;
  background: var(--c-gray-100);
  background-image:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(0,0,0,0.02) 12px 24px);
}
.coupon {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(227,11,23,0.35), 0 8px 25px rgba(0,0,0,0.15);
  position: relative;
  isolation: isolate;
  /* Perforated edge using radial-gradient dots */
  background-image:
    radial-gradient(circle at 0 12px, transparent 6px, var(--c-red) 6.5px),
    radial-gradient(circle at 100% 12px, transparent 6px, var(--c-red) 6.5px);
  background-size: 100% 24px;
  background-repeat: repeat-y;
  background-position: left top, right top;
}
.coupon__left {
  position: relative;
  background: var(--c-black);
  min-height: 280px;
  overflow: hidden;
}
.coupon__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.coupon__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--c-white);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  transition: var(--transition);
}
.coupon__badge:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.coupon__brand-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--c-red);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.95;
}
.coupon__brand-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.22rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.45rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-black);
}
.coupon__brand-sub em { color: var(--c-red); font-style: normal; font-weight: 700; letter-spacing: 0; margin: 0 0.05em; }
.coupon__brand-line { display: inline-block; width: 8px; height: 1px; background: var(--c-black); opacity: 0.6; }
.coupon__right {
  padding: 2.5rem 2rem;
  text-align: center;
}
.coupon__scarcity {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(0,0,0,0.25);
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  margin: 0 auto 1rem;
}
.coupon__offer {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.coupon__offer em {
  color: var(--c-white);
  font-style: italic;
  display: block;
  margin-top: 0.25rem;
}
.coupon__fine {
  font-size: 0.85rem;
  opacity: 0.9;
  max-width: 42ch;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}
.coupon__cta {
  background: var(--c-white);
  color: var(--c-red);
  font-size: 1rem;
  padding: 1.1rem 1.85rem;
}
.coupon__cta:hover {
  background: var(--c-black);
  color: var(--c-white);
}
.coupon__or {
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.9;
}
.coupon__or a {
  font-weight: 700;
  text-decoration: underline;
}

@media (min-width: 800px) {
  .coupon { grid-template-columns: 5fr 7fr; }
  .coupon__left { min-height: 380px; }
  .coupon__right { padding: 3.5rem 3rem; text-align: left; }
  .coupon__scarcity, .coupon__cta { display: inline-flex; }
  .coupon__fine { margin: 0 0 1.5rem; }
  .coupon__or { text-align: left; }
}

/* -------------------------------------------------------------------------
   7. Why us
   ------------------------------------------------------------------------- */
.why {
  padding: var(--section-y) 0;
  background: var(--c-black);
  color: var(--c-white);
}
.why__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem auto 3rem;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .why__grid { grid-template-columns: 1fr 1.1fr 1fr; gap: 3rem; }
}
.why__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.why__features li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.4rem;
  align-items: start;
}
.why__features h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  color: var(--c-white);
}
.why__features p {
  grid-column: 2 / 3;
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.55;
}
.why__icon {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.why__icon svg {
  width: 22px;
  height: 22px;
  color: var(--c-white);
}
.why__center {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  aspect-ratio: 4 / 5;
  background: var(--c-charcoal);
  isolation: isolate;
}
.why__center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 45%;     /* anchors on the BMW + frame rack as focal point */
  /* Match the hero's cinematic grade — slightly lighter so the work is visible */
  filter: brightness(0.74) contrast(1.12) saturate(0.72) hue-rotate(-5deg);
}
/* Soft tonal overlay so the image reads as part of the black/red page,
   not a pasted-in daylight photo. */
.why__center::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.0) 35%, rgba(10,10,10,0.45) 100%),
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 40%, rgba(0,0,0,0.4) 100%),
    radial-gradient(ellipse 60% 60% at 80% 25%, rgba(227,11,23,0.12), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.why__center .why__badge { z-index: 2; }
.why__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(227,11,23,0.95);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.why__badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.why__badge-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.95;
}

/* -------------------------------------------------------------------------
   8. Recent Work — Century 1st-style horizontal cards
   ------------------------------------------------------------------------- */
.work {
  padding: var(--section-y) 0;
  background: var(--c-off-black);
  color: var(--c-white);
}
/* Horizontal carousel — scroll-snap, premium scrollbar styling */
.work__stack {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin: 3rem -1.25rem 0;
  padding: 0.5rem 1.25rem 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding: 1.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.18) transparent;
}
.work__stack::-webkit-scrollbar { height: 6px; }
.work__stack::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 3px; }
.work__stack::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.22); border-radius: 3px; }
.work__stack::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.35); }

.ba-card {
  display: grid;
  grid-template-columns: 1fr;
  flex: 0 0 auto;
  width: min(740px, 88vw);
  scroll-snap-align: start;
  background: #131313;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
  isolation: isolate;
}
@media (min-width: 780px) {
  .ba-card { grid-template-columns: minmax(260px, 36%) 1fr; min-height: 360px; }
}

/* LEFT — info panel */
.ba-card__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem 1.85rem;
  background: linear-gradient(180deg, #161616 0%, #0E0E0E 100%);
  border-right: 1px solid rgba(255,255,255,0.04);
  position: relative;
  min-height: 280px;
}
.ba-card__logo {
  width: 64px;
  height: 64px;
  color: var(--c-white);
  display: grid;
  place-items: center;
  opacity: 0.95;
}
.ba-card__logo svg { width: 100%; height: 100%; }
.ba-card__model {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-white);
  margin: 1.5rem 0 0;
  text-transform: uppercase;
}
.ba-card__meta {
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ba-card__meta-row { display: flex; flex-direction: column; gap: 0.3rem; }
.ba-card__meta-row dt {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.ba-card__meta-row dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  min-height: 28px;
}
.ba-card__insurer-logo {
  height: 28px;
  width: auto;
  max-width: 110px;
  filter: brightness(0) invert(1);  /* force any insurer logo to clean white */
  object-fit: contain;
  display: block;
}

/* RIGHT — comparison slider */
.ba-card__compare {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  background: var(--c-black);
}
@media (min-width: 780px) {
  .ba-card__compare { aspect-ratio: auto; }
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: saturate(0.95) contrast(1.04); /* very subtle consistency tweak */
}
.ba-after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* AFTER image fills the area to the RIGHT of the divider (--clip is divider position from left) */
  clip-path: inset(0 0 0 var(--clip));
  -webkit-clip-path: inset(0 0 0 var(--clip));
}
.ba-after-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Vertical divider line down the seam */
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--clip, 50%);
  width: 2px;
  margin-left: -1px;
  background: var(--c-white);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  pointer-events: none;
}

/* Before / After labels — rounded pills, bottom corners */
.ba-pill {
  position: absolute;
  bottom: 1rem;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  pointer-events: none;
  letter-spacing: 0.02em;
}
.ba-pill--before { left: 1rem; }
.ba-pill--after  { right: 1rem; }

/* Circular drag handle centered on the divider */
.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--clip, 50%);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: ew-resize;
  border: 0;
  padding: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  z-index: 3;
}
.ba-handle:hover { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 6px 18px rgba(0,0,0,0.6); }
.ba-handle:active { transform: translate(-50%, -50%) scale(0.96); }
.ba-handle svg { color: var(--c-black); pointer-events: none; }

.work__cta { text-align: center; margin-top: 2.5rem; }

@media (max-width: 779px) {
  .ba-card__info {
    padding: 1.5rem 1.5rem 1.75rem;
    min-height: 0;
  }
  .ba-card__model { font-size: 1.4rem; margin-top: 1rem; }
  .ba-card__logo { width: 48px; height: 48px; }
}

/* -------------------------------------------------------------------------
   8b. Past work photo grid (Century 1st 6-image strip)
   ------------------------------------------------------------------------- */
.past-grid {
  background: var(--c-black);
  padding: 0;
}
.past-grid .container { padding: 0; max-width: none; }
.past-grid__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--c-black);
}
@media (min-width: 640px) { .past-grid__row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .past-grid__row { grid-template-columns: repeat(6, 1fr); } }
.past-grid__cell {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-charcoal);
}
.past-grid__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: grayscale(20%) brightness(0.85);
}
.past-grid__cell:hover img { transform: scale(1.08); filter: none; }
.past-grid__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85));
  opacity: 0;
  transition: opacity var(--transition);
}
.past-grid__cell:hover .past-grid__overlay { opacity: 1; }
.past-grid__overlay span {
  color: var(--c-white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

/* -------------------------------------------------------------------------
   9. Stats strip
   ------------------------------------------------------------------------- */
.stats {
  background: var(--c-black);
  padding: 3.5rem 0;
  border-top: 1px solid var(--c-dark-border);
  border-bottom: 1px solid var(--c-dark-border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  text-align: center;
}
@media (min-width: 720px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { color: var(--c-white); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-red);
  display: inline-block;
  line-height: 1;
}
.stat__plus {
  font-family: var(--font-display);
  color: var(--c-red);
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: super;
}
.stat__label {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* -------------------------------------------------------------------------
   10. Services grid
   ------------------------------------------------------------------------- */
.services {
  padding: var(--section-y) 0;
  background: var(--c-white);
}
.services__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px)  { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .services__grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--c-gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-card__img {
  aspect-ratio: 4 / 3;
  background: var(--c-charcoal);
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 1rem 1.15rem 0.4rem;
  color: var(--c-black);
}
.service-card p {
  margin: 0 1.15rem 1.15rem;
  font-size: 0.9rem;
  color: var(--c-gray-500);
  line-height: 1.5;
  flex: 1;
}
.service-card__arrow {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  background: var(--c-red);
  color: var(--c-white);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-4px);
  transition: var(--transition);
}
.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------------------
   11. Reviews / Testimonials
   ------------------------------------------------------------------------- */
.reviews {
  padding: var(--section-y) 0;
  background: var(--c-black);
  color: var(--c-white);
}
.reviews__badge {
  margin: 1.5rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  max-width: 100%;
}
.reviews__badge-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1;
}
.reviews__stars { color: #FFB400; font-size: 1.25rem; letter-spacing: 0.04em; line-height: 1; }
.reviews__badge-rating { font-weight: 500; }
.reviews__badge-sep { color: rgba(255,255,255,0.5); }
.reviews__badge-count { font-weight: 500; }
/* On very narrow phones, scale the whole badge down so it stays on one line */
@media (max-width: 420px) {
  .reviews__badge { font-size: 0.85rem; padding: 0.55rem 0.85rem; }
  .reviews__badge-line { gap: 0.4rem; }
  .reviews__stars { font-size: 1rem; letter-spacing: 0.02em; }
  .reviews__badge-arrow { margin-left: 0.35rem; }
}
@media (max-width: 360px) {
  .reviews__badge { font-size: 0.78rem; padding: 0.5rem 0.7rem; }
  .reviews__badge-line { gap: 0.3rem; }
  .reviews__stars { font-size: 0.9rem; }
}
.reviews__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px)  { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .reviews__grid { grid-template-columns: repeat(4, 1fr); } }
.review-card {
  background: var(--c-charcoal);
  border: 1px solid var(--c-dark-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem 1.5rem;  /* extra top padding makes room for quote inside the card */
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.65rem;
  left: 1.25rem;
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 3.2rem);
  line-height: 0.8;
  color: var(--c-red);
  font-weight: 700;
  pointer-events: none;
}
.review-card__stars { color: #FFB400; font-size: 1rem; letter-spacing: 0.05em; }
.review-card blockquote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.review-card figcaption {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--c-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.reviews__cta { text-align: center; margin-top: 2.5rem; }
.reviews .btn--outline-dark { color: var(--c-white); border-color: var(--c-white); }
.reviews .btn--outline-dark:hover { background: var(--c-white); color: var(--c-black); }

/* -------------------------------------------------------------------------
   12. FAQ
   ------------------------------------------------------------------------- */
.faq {
  padding: var(--section-y) 0;
  background: var(--c-gray-50);
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .faq__inner { grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start; }
  .faq__intro { position: sticky; top: calc(var(--header-h) + 1.5rem); }
}
.faq__sub { color: var(--c-gray-500); margin: 1rem 0 1.5rem; }
.faq__cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.faq__list { display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] {
  border-color: var(--c-red);
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-black);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  border-radius: 50%;
  background: var(--c-gray-100);
  transition: var(--transition);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 2.5px;
  background: var(--c-black);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), background var(--transition);
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-item__icon { background: var(--c-red); }
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after { background: var(--c-white); }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-item__body {
  padding: 0 1.25rem 1.25rem;
  color: var(--c-gray-700);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-item__body p { margin: 0 0 0.85em; }
.faq-item__body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0 0 0.85em;
}
.faq-item__body ul li { margin: 0.3rem 0; }
.faq-item__body a { color: var(--c-red); font-weight: 600; }

/* -------------------------------------------------------------------------
   13. Final CTA banner
   ------------------------------------------------------------------------- */
.final-cta {
  position: relative;
  color: var(--c-white);
  padding: var(--section-y-lg) 0;
  text-align: center;
  background: var(--c-black);
  isolation: isolate;
  overflow: hidden;
}
.final-cta::before {
  /* Same gbp5 image, slightly darker than hero for closing-section gravity */
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/gbp5.jpg') 30% 55% / cover no-repeat;
  filter: brightness(0.5) contrast(1.15) saturate(0.65) hue-rotate(-8deg);
  z-index: -2;
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55), rgba(10,10,10,0.8) 70%, rgba(0,0,0,0.92) 100%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(227,11,23,0.16), transparent 60%);
  z-index: -1;
}
.final-cta__inner { max-width: 800px; margin: 0 auto; }
.final-cta__heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 0 0 1rem;
}
.final-cta__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 2rem;
}
.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* -------------------------------------------------------------------------
   14. Contact (form + info + map)
   ------------------------------------------------------------------------- */
.contact {
  padding: var(--section-y) 0;
  background: var(--c-white);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .contact__grid { grid-template-columns: 5fr 6fr; gap: 4rem; }
}
.contact__lead {
  color: var(--c-gray-500);
  font-size: 1rem;
  margin: 0.5rem 0 1.5rem;
}
.contact__list {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
}
.contact__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1rem;
  align-items: start;
  font-size: 0.95rem;
}
.contact__list svg { width: 22px; height: 22px; color: var(--c-red); margin-top: 0.15rem; }
.contact__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-gray-500);
  margin-bottom: 0.15rem;
  font-weight: 500;
}
.contact__list a { color: var(--c-black); border-bottom: 1px solid var(--c-gray-200); transition: var(--transition); }
.contact__list a:hover { color: var(--c-red); border-color: var(--c-red); }
.contact__map {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-gray-200);
  aspect-ratio: 16 / 10;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact__form {
  background: var(--c-gray-50);
  padding: 1.85rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-gray-200);
  display: grid;
  gap: 1rem;
}
.contact__form h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.6rem;
  color: var(--c-black);
}
.contact__form-sub { margin: -0.5rem 0 0.5rem; color: var(--c-gray-500); font-size: 0.92rem; }
.contact__form label { display: grid; gap: 0.35rem; }
.contact__form span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-gray-700);
  font-weight: 500;
}
.contact__form em { color: var(--c-red); font-style: normal; }
.contact__form input,
.contact__form select,
.contact__form textarea {
  font: inherit;
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--c-white);
  color: var(--c-black);
  border: 1.5px solid var(--c-gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
  -webkit-text-fill-color: var(--c-black);
}
.contact__form input::placeholder,
.contact__form select::placeholder,
.contact__form textarea::placeholder {
  color: var(--c-gray-500);
  opacity: 1;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(227,11,23,0.12);
}
.contact__form input.is-error,
.contact__form select.is-error,
.contact__form textarea.is-error {
  border-color: var(--c-red);
  background: rgba(227,11,23,0.04);
}
.contact__form textarea { resize: vertical; min-height: 100px; }
.contact__form-consent {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
}
.contact__form-consent input { width: 18px; height: 18px; cursor: pointer; }
.contact__form-consent span {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--c-gray-700);
  font-weight: 400;
}
.contact__form-status {
  margin: 0;
  font-size: 0.92rem;
  min-height: 1.4em;
  font-weight: 500;
}
.contact__form-status.is-success { color: #1B7A3A; }
.contact__form-status.is-error { color: var(--c-red); }
.contact__form-trust {
  text-align: center;
  font-size: 0.82rem;
  color: var(--c-gray-500);
  margin: 0;
}

/* -------------------------------------------------------------------------
   15. Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-off-black);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-dark-border);
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__wordmark {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 1.15rem;
}
.footer__wordmark-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--c-red);
  text-transform: uppercase;
  line-height: 0.95;
}
.footer__wordmark-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.footer__wordmark-sub em { color: var(--c-red); font-style: normal; font-weight: 700; letter-spacing: 0; margin: 0 0.05em; }
.footer__wordmark-line { display: inline-block; width: 18px; height: 1px; background: rgba(255,255,255,0.4); }
.footer__brand p { max-width: 38ch; line-height: 1.55; }
.site-footer h4 {
  font-family: var(--font-display);
  color: var(--c-white);
  font-size: 1rem;
  margin: 0 0 1rem;
  letter-spacing: 0.06em;
}
.site-footer ul li {
  margin-bottom: 0.55rem;
  line-height: 1.5;
}
.site-footer ul a { transition: var(--transition); }
.site-footer ul a:hover { color: var(--c-red); }
.footer__contact li { color: rgba(255,255,255,0.7); }
.footer__bottom {
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.footer__legal {
  display: inline-flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  text-decoration: none;
}
.footer__legal a:hover { color: var(--c-white); }

/* -------------------------------------------------------------------------
   16. Sticky mobile CTA bar
   ------------------------------------------------------------------------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--c-dark-border);
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
  box-shadow: 0 -8px 25px rgba(0,0,0,0.3);
}
.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 0.75rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.mobile-cta__btn--call {
  background: var(--c-white);
  color: var(--c-black);
}
.mobile-cta__btn--estimate {
  background: var(--c-red);
  color: var(--c-white);
}
.mobile-cta__btn:active { transform: scale(0.97); }

@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; } /* breathing room above the bar */
}

/* -------------------------------------------------------------------------
   17. Estimate modal — multi-step Typeform-style intake
   ------------------------------------------------------------------------- */
.em {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0px, 4vw, 2.5rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  font-family: var(--font-body);
}
.em[hidden] { display: none !important; }
.em.is-open { opacity: 1; pointer-events: auto; }

.em__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,10,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

/* Panel — centered card on desktop, full-screen on phones */
.em__panel {
  position: relative;
  background: var(--c-white);
  width: 100%;
  max-width: 720px;
  height: 100%;
  max-height: min(720px, 92vh);
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.96) translateY(20px);
  transition: transform 0.32s cubic-bezier(.2,.7,.2,1);
}
.em.is-open .em__panel { transform: none; }

/* Progress bar — brand red, 5px, top of panel */
.em__progress {
  height: 5px;
  background: rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.em__progress-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--c-red) 0%, #FF3140 100%);
  transition: width 0.45s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 0 12px rgba(227,11,23,0.5);
}

/* Chrome row — wordmark left, close right */
.em__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.em__brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  padding: 0.15rem 0;
}
.em__brand-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--c-red);
  text-transform: uppercase;
}
.em__brand-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.3rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-black);
}
.em__brand-sub em {
  color: var(--c-red);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0.05em;
}
.em__brand-line {
  display: inline-block;
  width: 12px;
  height: 1.5px;
  background: var(--c-black);
  opacity: 0.6;
}

.em__close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--c-gray-100);
  color: var(--c-black);
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.em__close:hover {
  background: var(--c-red);
  color: var(--c-white);
  transform: rotate(90deg);
}

/* Form fills available space, steps area scrolls within */
.em__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
}
.em__steps {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Each step is absolutely positioned — only the active one shows */
.em-step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2.5rem;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.32s ease, transform 0.45s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  overflow-y: auto;
}
.em-step.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.em-step.is-leaving {
  opacity: 0;
  transform: translateY(-28px);
  pointer-events: none;
}
.em-step__body {
  width: 100%;
  max-width: 480px;
}
.em-step__body--center { text-align: center; }

/* Numbered step indicator (red badge + arrow) */
.em-step__num {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-red);
  margin: 0 0 0.85rem;
}
.em-step__num > span:first-child {
  display: inline-grid;
  place-items: center;
  background: var(--c-red);
  color: #fff;
  width: 24px;
  height: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 5px;
}
.em-step__num-arrow {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--c-red);
  opacity: 0.6;
}

/* Question + hint */
.em-step__q {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--c-black);
  font-weight: 600;
  text-transform: none;
  margin: 0 0 0.45rem;
}
.em-step__req {
  color: var(--c-red);
  font-style: normal;
  margin-left: 0.15rem;
}
.em-step__hint {
  color: var(--c-gray-500);
  font-size: 1rem;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}
.em-step__sublabel {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-black);
  margin: 1.15rem 0 0.4rem;
}

/* Underline-only input */
.em-step__input {
  font: inherit;
  width: 100%;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  line-height: 1.3;
  padding: 0.7rem 0;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--c-gray-200);
  color: var(--c-black);
  transition: border-color 0.2s ease;
  border-radius: 0;
}
.em-step__input::placeholder { color: rgba(0,0,0,0.22); font-weight: 400; }
.em-step__input:focus {
  outline: none;
  border-bottom-color: var(--c-red);
}
.em-step__input.is-error { border-bottom-color: var(--c-red); animation: emShake 0.4s; }
@keyframes emShake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-4px); }
  75%      { transform: translateX(4px); }
}

/* Phone input — flag pill + tel input share a single underline */
.em-step__phone {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0.65rem;
  border-bottom: 2px solid var(--c-gray-200);
  transition: border-color 0.2s ease;
}
.em-step__phone:focus-within { border-bottom-color: var(--c-red); }
.em-step__phone .em-step__input { border-bottom: 0; padding-left: 0; }
.em-step__flag {
  font-size: 1.3rem;
  padding-bottom: 0.7rem;
}

/* OK / Submit button + keyboard hint */
.em-step__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.em-step__ok {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(227,11,23,0.3);
}
.em-step__ok:hover { background: var(--c-red-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(227,11,23,0.4); }
.em-step__ok:active { transform: translateY(0); }
.em-step__ok:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.em-step__ok svg { transform: translateY(0); }

.em-step__kbd {
  font-size: 0.82rem;
  color: var(--c-gray-500);
}
.em-step__kbd kbd {
  font-family: var(--font-body);
  background: var(--c-gray-100);
  border: 1px solid var(--c-gray-200);
  border-radius: 3px;
  padding: 0.1rem 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-gray-700);
  margin: 0 0.1rem;
}

.em-step__legal {
  font-size: 0.72rem;
  color: var(--c-gray-400);
  margin: 1.75rem 0 0;
  line-height: 1.6;
}
.em-step__legal a { color: var(--c-gray-500); text-decoration: underline; }

/* Radio options (claim status) — brand-red treatment */
.em-step__options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
}
.em-step__option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem;
  background: var(--c-gray-50);
  border: 1.5px solid var(--c-gray-200);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--c-black);
}
.em-step__option:hover {
  background: rgba(227,11,23,0.04);
  border-color: rgba(227,11,23,0.4);
}
.em-step__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.em-step__option:has(input:checked) {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
  box-shadow: 0 4px 14px rgba(227,11,23,0.3);
}
.em-step__option-text {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 1;
}
.em-step__option kbd {
  font-family: var(--font-body);
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  color: var(--c-gray-700);
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 26px;
  text-align: center;
  transition: var(--transition);
}
.em-step__option:has(input:checked) kbd {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.35);
  color: var(--c-white);
}
.em-step__option-check {
  opacity: 0;
  color: var(--c-white);
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.em-step__option:has(input:checked) .em-step__option-check { opacity: 1; }

/* Thank-you step */
.em-step--thanks .em-step__check {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 30px rgba(227,11,23,0.4);
  animation: emCheckPop 0.5s cubic-bezier(.4,1.6,.5,1) both;
}
@keyframes emCheckPop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.em-step--thanks .em-step__q { text-align: center; }
.em-step--thanks .em-step__hint { text-align: center; }
.em-step__hint--phone { margin-top: 1rem; }
.em-step__ok--close {
  margin: 1.5rem auto 0;
  background: var(--c-black);
  box-shadow: none;
}
.em-step__ok--close:hover { background: var(--c-charcoal); box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
.em-step__phonelink {
  color: var(--c-red);
  font-weight: 700;
  border-bottom: 2px solid currentColor;
}

/* Footer — status (left) + up/down nav (right) — INSIDE panel */
.em__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--c-gray-50);
  flex-shrink: 0;
  min-height: 56px;
}
.em__status {
  margin: 0;
  font-size: 0.85rem;
  color: var(--c-gray-500);
  font-weight: 500;
  flex: 1;
  min-width: 0;
}
.em__status.is-error { color: var(--c-red); }
.em__nav {
  display: flex;
  gap: 0.3rem;
  flex-shrink: 0;
}
.em__nav-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(227,11,23,0.25);
}
.em__nav-btn:hover { background: var(--c-red-dark); transform: translateY(-1px); }
.em__nav-btn:active { transform: translateY(0); }
.em__nav-btn:disabled {
  background: rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.25);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Mobile — modal goes full-screen, no border-radius, tighter padding */
@media (max-width: 719px) {
  .em { padding: 0; }
  .em__backdrop { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .em__panel {
    max-width: none;
    max-height: none;
    height: 100%;
    height: 100dvh;
    border-radius: 0;
    box-shadow: none;
  }
  .em__chrome { padding: 0.85rem 1.15rem; }
  .em__brand-main { font-size: 1.25rem; }
  .em__brand-sub { font-size: 0.45rem; letter-spacing: 0.22em; }
  .em-step { padding: 1.5rem 1.25rem; align-items: flex-start; padding-top: 2rem; }
  .em__footer { padding: 0.7rem 1rem; }
  .em-step__q { font-size: 1.4rem; }
}

/* -------------------------------------------------------------------------
   17b. Hero rating cards (clickable trust badges → opens reviews drawer)
   ------------------------------------------------------------------------- */
.rating-cards {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem auto 0;
  max-width: 540px;
}
.rating-card {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  color: var(--c-white);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font: inherit;
  min-width: 180px;
}
.rating-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.rating-card__brand {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--c-white);
  border-radius: 50%;
  flex-shrink: 0;
}
.rating-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  line-height: 1.1;
}
.rating-card__num {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.rating-card__num strong { font-weight: 700; }
.rating-card__stars { color: #FFB400; font-size: 0.92rem; letter-spacing: 0.05em; }
.rating-card__count {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 3px;
}

/* -------------------------------------------------------------------------
   17c. Reviews drawer (slide-from-left, dark, matches Century 1st)
   ------------------------------------------------------------------------- */
.rd {
  position: fixed;
  inset: 0;
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.rd[hidden] { display: none !important; }
.rd.is-open { opacity: 1; pointer-events: auto; }

.rd__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  cursor: pointer;
}

.rd__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: #0F0F0F;
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  box-shadow: 12px 0 40px rgba(0,0,0,0.55);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
.rd.is-open .rd__panel { transform: translateX(0); }

.rd__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--c-white);
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  z-index: 3;
}
.rd__close:hover { background: rgba(255,255,255,0.1); color: var(--c-red); transform: rotate(90deg); }

.rd__header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.rd__title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--c-white);
}
.rd__brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.rd__brand-pill-num { font-weight: 700; color: var(--c-white); }
.rd__summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}
.rd__summary-google { flex-shrink: 0; filter: brightness(0) invert(1); }
.rd__summary-meta { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.rd__summary-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
}
.rd__summary-row strong { font-size: 1.05rem; }
.rd__summary-stars { color: #FFB400; letter-spacing: 0.04em; }
.rd__summary-count { color: rgba(255,255,255,0.6); }
.rd__summary-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition);
}
.rd__summary-link:hover { color: var(--c-white); }

.rd__list {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rd__loading { color: rgba(255,255,255,0.5); text-align: center; padding: 2rem 0; font-size: 0.95rem; }
.rd__error { color: rgba(255,180,180,0.85); text-align: center; padding: 1rem; font-size: 0.9rem; line-height: 1.5; }

.rd-review {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: var(--transition);
}
.rd-review:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.rd-review__head { display: flex; align-items: flex-start; gap: 0.75rem; }
.rd-review__avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  overflow: hidden;
}
.rd-review__avatar img { width: 100%; height: 100%; object-fit: cover; }
.rd-review__id { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.1rem; }
.rd-review__name {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-white);
}
.rd-review__verify {
  display: inline-grid;
  place-items: center;
  width: 14px; height: 14px;
  background: #4285F4;
  border-radius: 50%;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
}
.rd-review__date { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.rd-review__stars { color: #FFB400; font-size: 0.95rem; letter-spacing: 0.05em; }
.rd-review__text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  word-wrap: break-word;
}

.rd__footer {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.rd__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}
.rd__cta:hover { background: var(--c-red-dark); transform: translateY(-1px); }

/* Reviews badge in the testimonials section — now a clickable button */
.reviews__badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-white);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.reviews__badge:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.reviews__badge-arrow {
  margin-left: 0.5rem;
  font-weight: 700;
  color: var(--c-red);
  transition: transform var(--transition);
}
.reviews__badge:hover .reviews__badge-arrow { transform: translateX(3px); }

@media (max-width: 480px) {
  .rd__panel { width: 100vw; }
  .rd__header { padding: 1.25rem 1.15rem 0.85rem; }
  .rd__list { padding: 1rem 1.15rem; }
  .rating-cards { gap: 0.5rem; }
  .rating-card { min-width: 0; flex: 1; }
}

/* -------------------------------------------------------------------------
   18. Utilities + responsive tweaks
   ------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .hero { min-height: auto; padding: 4rem 0 3rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__trust { gap: 1rem; }
  .hero__trust li { width: calc(50% - 0.5rem); }
  .hero__trust strong { font-size: 1.2rem; }
}

@media print {
  .mobile-cta, .topbar, .hero__scroll, .header__menu-btn { display: none !important; }
  body { color: #000; background: #fff; }
}
