/* ============================================================
   DentKings — light showroom, softer brand orange
   ============================================================ */

:root {
  --paper: #faf8f4;
  --panel: #ffffff;
  --panel-warm: #f5f0e8;
  /* Alternating page bands (white ↔ cream) */
  --section-white: #ffffff;
  /* Warm cream bands + footer (matches paper showroom) */
  --section-alt: #faf8f4;
  --line: rgba(var(--orange-rgb), 0.18);
  --line-soft: #eae2d6;
  /* Slightly lighter / warmer than #f85000 — easier on the eyes */
  --orange: #ff6b33;
  --orange-bright: #ff8a55;
  --orange-deep: #e8541a;
  --orange-rgb: 255, 107, 51;
  --gold: #e8b923;
  --gold-bright: #f5c842;
  --ink: #191410;
  --text: #241d17;
  --muted: #6e655c;
  --slant: 12deg;              /* the signature diagonal */
  --font-display: "Poppins", sans-serif;
  --font-body: "Instrument Sans", sans-serif;

  /* Soft continuous rounding — used on every container */
  --radius-xs: 16px;
  --radius-sm: 20px;
  --radius-md: 28px;   /* primary card */
  --radius-lg: 36px;
  --radius-xl: 44px;
  --radius-2xl: 56px;
  --radius-pill: 999px;
  --border-card: 1px solid rgba(25, 20, 16, 0.08);
  --shadow-card:
    0 10px 30px rgba(25, 20, 16, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  --shadow-card-hover:
    0 18px 44px rgba(25, 20, 16, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Homepage app-shell (NOT the quote wizard / hail page — those scroll normally) */
body:not(.quote-page):not(.hail-page):not(.legal-page) {
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden; /* page does not scroll — .app-scroll does */
  display: flex;
  flex-direction: column;
}

body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* only the middle pane scrolls; header stays pinned to the top edge of the webview */
.app-scroll {
  flex: 1 1 auto;
  min-height: 0;
  container: viewport-pane / size;
  overflow-x: clip;
  overflow-y: auto;
  scrollbar-width: auto;
  scrollbar-color: rgba(var(--orange-rgb), 0.72) rgba(25, 20, 16, 0.08);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  scroll-behavior: smooth;
}
.app-scroll::-webkit-scrollbar { width: 7px; }
.app-scroll::-webkit-scrollbar-track { background: rgba(25, 20, 16, 0.06); }
.app-scroll::-webkit-scrollbar-thumb {
  background: rgba(var(--orange-rgb), 0.72);
  border-radius: 999px;
}
@supports not (overflow: clip) {
  .app-scroll { overflow-x: hidden; }
}

html.js body:not(.loaded):not(.quote-page) .app-scroll { overflow: hidden; }
html:not(.js) .preloader { display: none; }

::selection { background: var(--orange); color: #fff; }

/* subtle grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}

.accent { color: var(--orange); }

a { color: inherit; }

img { max-width: 100%; display: block; }

/* Media inherits soft shells; full-bleed hero video stays square-edge */
.video-frame img,
.video-frame iframe,
.gallery-card img,
.map-card iframe,
.hero-compare img,
.thumb img,
.lightbox-figure img {
  border-radius: inherit;
}
/* hail hero video stays square + uncropped (padding handles the card radius) */

section { position: relative; }

/* ============ preloader ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--paper);
  display: grid;
  place-items: center;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
body.loaded .preloader { opacity: 0; visibility: hidden; }

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.preloader-inner img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  animation: preloader-pop 0.9s cubic-bezier(0.2, 0.9, 0.3, 1.2) both,
             preloader-breathe 2.2s ease-in-out 0.9s infinite;
}
.preloader-bar {
  width: 150px;
  height: 4px;
  background: var(--line-soft);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--orange-bright), var(--orange));
  animation: preloader-slide 1.1s ease-in-out infinite;
}

@keyframes preloader-pop {
  from { opacity: 0; transform: scale(0.6) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes preloader-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes preloader-slide {
  from { transform: translateX(-160%); }
  to   { transform: translateX(420%); }
}

/* ============ entrance choreography ============ */
html.js .fade-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease var(--d, 0s), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) var(--d, 0s);
}
body.loaded .fade-item { opacity: 1; transform: none; }

.hline {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
html.js .hline > span {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 0.95s cubic-bezier(0.16, 0.8, 0.2, 1) var(--d, 0s);
}
body.loaded .hline > span { transform: none; }

/* ============ buttons ============ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  font-size: 1.05rem;
  padding: 0.95rem 1.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:active { transform: translateY(1px); }

/* shine sweep on hover */
.btn::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -70%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn:hover::after { left: 130%; }

.btn-orange {
  background: linear-gradient(120deg, var(--orange-bright), var(--orange) 55%, var(--orange-deep));
  color: #fff;
  box-shadow: 0 8px 24px rgba(var(--orange-rgb), 0.35);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(var(--orange-rgb), 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(25, 20, 16, 0.7);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--orange); color: var(--orange); }

.btn-blue {
  background: linear-gradient(120deg, #4f8cff, #2563eb 55%, #1d4ed8);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.32);
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.42);
}

.btn-sm { font-size: 0.9rem; padding: 0.6rem 1.2rem; }
.btn-block { width: 100%; }

/* ============ header ============
   NOT fixed/sticky. Flex child above .app-scroll — always flush to the top
   of the webview on every browser including Safari. Fixed/sticky were the
   source of the cream gap above the nav. */
.site-header {
  position: relative;
  flex: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 0.45rem clamp(1rem, 4vw, 3rem);
  background: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px rgba(25, 20, 16, 0.08);
}

/* Nav stays visible while typing — never hide the header */
body.kb-open .site-header {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Brand base */
.brand { display: inline-flex; align-items: center; text-decoration: none; gap: 0.7rem; }
.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}
.brand:hover .brand-logo { transform: scale(1.04); }
.brand-logo-lg { width: 112px; height: 112px; }

/* Header: logo only — larger + crisp on retina */
.site-header .brand {
  --brand-h: 5.1rem;
  display: inline-flex;
  align-items: center;
  height: var(--brand-h);
  gap: 0;
  flex: none;
  max-width: 100%;
}
.site-header .brand-logo {
  height: 100%;
  width: auto;
  max-height: var(--brand-h);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center center;
  flex: 0 0 auto;
  /* crisp downscale from high-res PNG — avoid GPU blur layers */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flag + USA lockup (footer) */
.brand-flag {
  --flag-w: 2.05rem;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  justify-items: center;
  height: 100%;
  width: var(--flag-w);
  max-width: var(--flag-w);
  flex: 0 0 var(--flag-w);
  gap: 0.2rem;
  min-width: 0;
  overflow: hidden;
  padding-top: 0.12rem;
  padding-bottom: 0.08rem;
  box-sizing: border-box;
}
.brand-flag img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: var(--flag-w);
  min-height: 0;
  aspect-ratio: 537 / 990;
  object-fit: contain;
  object-position: top center;
  border: 0 !important;
  outline: none;
  box-shadow: none;
  /* square flag corners — never pill/rounded */
  border-radius: 0 !important;
  background: transparent;
  align-self: stretch;
  justify-self: center;
}
.brand-flag small {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--ink);
  line-height: 1;
  margin: 0;
  padding: 0;
  text-align: center;
  align-self: end;
}

/* Footer: logo + USA flag — same visual height, center-aligned */
.footer-brand .brand {
  --brand-h: 6.75rem;
  display: inline-flex;
  align-items: center; /* same mid-line for logo + flag lockup */
  height: auto;
  min-height: var(--brand-h);
  gap: 0.75rem;
}
.footer-brand .brand-logo,
.footer-brand .brand-logo-lg {
  height: var(--brand-h);
  width: var(--brand-h);
  max-height: var(--brand-h);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center center;
  flex: none;
  /* high-res asset → crisp at 2–3× display size */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.footer-brand .brand-flag {
  --flag-w: 2.05rem;
  /* match logo art band (not full box with empty pad) */
  height: calc(var(--brand-h) * 0.9);
  width: var(--flag-w);
  max-width: var(--flag-w);
  flex: 0 0 var(--flag-w);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.28rem;
  padding: 0;
  overflow: visible;
  box-sizing: border-box;
  align-self: center;
}
.footer-brand .brand-flag img {
  width: 100%;
  height: auto;
  max-height: calc(100% - 1rem);
  min-height: 0;
  flex: 1 1 auto;
  aspect-ratio: 537 / 990;
  object-fit: contain;
  object-position: center top;
  align-self: center;
  border-radius: 0 !important;
}
.footer-brand .brand-flag small {
  flex: none;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.main-nav { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); }
.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--orange);
  transition: right 0.25s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { right: 0; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0;
  color: #fff;
  background: linear-gradient(120deg, var(--orange-bright), var(--orange) 60%, var(--orange-deep));
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(var(--orange-rgb), 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.header-cta svg { width: 16px; height: 16px; fill: currentColor; }
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(var(--orange-rgb), 0.45); }

/* Quote CTA: hidden over the hero, slides in after you leave it */
.header-quote {
  opacity: 0;
  transform: translateY(-8px) scale(0.94);
  pointer-events: none;
  max-width: 0;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  white-space: nowrap;
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    max-width 0.28s ease,
    padding 0.28s ease,
    margin 0.28s ease,
    box-shadow 0.2s ease;
}
.site-header.quote-visible .header-quote {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  max-width: 14rem;
  padding: 0.6rem 1.2rem;
  margin: 0;
}

.header-right { display: flex; align-items: center; gap: 0.7rem; }

/* skip link — keyboard-only (Tab); never a permanent on-screen button */
.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 3000;
  padding: 0.7rem 1.2rem;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  /* fully off-screen until keyboard focus */
  transform: translateY(-150%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(1rem);
  opacity: 1;
  pointer-events: auto;
  outline: 2px solid #fff;
  outline-offset: 3px;
}
/* Hide while the quote overlay is open (parent page link was bleeding through) */
body:has(.quote-overlay.open) > .skip-link,
body.quote-overlay-open > .skip-link {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--ink);
  border-radius: var(--radius-pill);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile nav panel */
.mobile-nav {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0.65rem;
  right: 0.65rem;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card-hover);
  padding: 0.75rem 1.15rem 1.25rem;
  transform: translateY(-115%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease, visibility 0.35s;
  z-index: -1;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.75rem 0.2rem;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav a:hover { color: var(--orange); padding-left: 0.6rem; }
.mobile-nav .mobile-nav-cta { color: var(--orange); }
.mobile-nav .mobile-nav-phone {
  border-bottom: none;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: var(--muted);
  padding-top: 1rem;
}

/* ============ hero ============ */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(90px, 12vh, 130px) 0 clamp(2rem, 5vh, 3.5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 60% at 74% 42%, rgba(var(--orange-rgb), 0.10), transparent 68%),
    radial-gradient(40% 40% at 12% 88%, rgba(var(--orange-rgb), 0.06), transparent 70%),
    repeating-linear-gradient(102deg, rgba(25, 20, 16, 0.022) 0 2px, transparent 2px 110px),
    var(--paper);
}

.hero-watermark {
  position: absolute;
  bottom: -0.15em;
  left: -0.03em;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(8rem, 24vw, 22rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(var(--orange-rgb), 0.09);
  pointer-events: none;
  user-select: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.hero-kicker svg { width: 26px; height: 18px; color: var(--orange); flex-shrink: 0; }

.hero h1 {
  font-size: clamp(3.2rem, 6.2vw, 6rem);
  letter-spacing: 0.005em;
}

.hero-sub {
  margin-top: 1.4rem;
  max-width: 30rem;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  color: var(--muted);
  font-weight: 500;
}

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

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-rating .stars { font-size: 1rem; }
.hero-rating strong { color: var(--ink); }

/* --- video hero: full-bleed scene, photo strip BELOW the video --- */
.hero--video {
  position: relative;
  background: var(--section-alt, #faf8f4);
  min-height: calc(100dvh - var(--header-h, 90px));
  padding-bottom: 0;
  overflow: hidden;
}

/* Desktop: video fills its row to the bottom; strip + scroll sit under it (fully visible) */
@media (min-width: 1021px) {
  #main .hero--video {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto auto;
    min-height: calc(100dvh - var(--header-h, 90px));
    height: calc(100dvh - var(--header-h, 90px));
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
  #main .hero--video .hero-media {
    position: relative;
    grid-row: 1;
    grid-column: 1;
    inset: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    min-height: 0;
    z-index: 0;
  }
  #main .hero--video .hero-grid {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    z-index: 1;
    min-height: 0;
    height: 100%;
    align-content: start;
    padding-top: clamp(1.1rem, 3.2vh, 2.2rem);
  }
  /* full scene to the bottom edge of the video pane */
  #main .hero--video .hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
  }
  #main .hero--video .hero-content { transform: none; }
  /* strip lives in its own row under the video — always fully on screen */
  #main .hero--video .hero-strip {
    position: relative;
    grid-row: 2;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 5;
    padding: 0.7rem 0 0.35rem;
    background: var(--section-alt, #faf8f4);
    pointer-events: auto;
  }
  #main .hero--video .hero-scroll {
    position: relative;
    grid-row: 3;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0.15rem auto 0.75rem;
    z-index: 3;
  }
  /* "Text a photo" is a phone-only action (opens SMS) — hide on desktop */
  #heroTextPhoto { display: none; }
}

.hero--video .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}
.hero--video .hero-media video {
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 82%;
  background: var(--section-alt, #faf8f4);
}
/* soft top wash for crisp type — no bottom cream shelf (strip is under the video) */
.hero--video .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.38) 22%,
      rgba(255, 255, 255, 0.1) 42%,
      transparent 58%
    );
}
@media (min-width: 1021px) {
  /* light floor fade so the scene reads clean to the bottom edge */
  #main .hero--video .hero-media::after {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.68) 0%,
        rgba(255, 255, 255, 0.32) 18%,
        rgba(255, 255, 255, 0.08) 36%,
        transparent 52%
      );
  }
}

/* work photos — continuous marquee, pause only on hover; click → lightbox */
.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  /* leave room under the strip for the Scroll pill (phones); desktop overrides to grid row */
  bottom: calc(2.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 5; /* above hero media / grid so taps always hit photos */
  display: block;
  overflow: hidden;
  padding: 0.35rem 0;
  pointer-events: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
}
.hero-strip-track {
  display: flex;
  gap: clamp(0.5rem, 1.4vw, 0.9rem);
  width: max-content;
  padding: 0 clamp(0.75rem, 2vw, 1.25rem);
  animation: hero-strip-scroll var(--strip-dur, 42s) linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* pause marquee only while hovering the strip (desktop) */
@media (hover: hover) and (pointer: fine) {
  .hero-strip:hover .hero-strip-track {
    animation-play-state: paused;
  }
}
@keyframes hero-strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-strip-track { animation: none; }
}
.hero-strip-item {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 18px;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .hero-strip-item:hover {
    transform: translateY(-3px) scale(1.03);
  }
}
.hero-strip-item:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.hero-strip-item img {
  display: block;
  width: clamp(74px, 11vw, 122px);
  height: clamp(74px, 11vw, 122px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(25, 20, 16, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

/* scroll hint under the hero gallery — sits BELOW the strip, never on top of photos */
.hero-scroll {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: fit-content;
  bottom: calc(0.4rem + env(safe-area-inset-bottom, 0px));
  z-index: 6;
  pointer-events: auto;
  text-decoration: none;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0.28rem 0.35rem 0.28rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 6px 18px rgba(25, 20, 16, 0.1);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.22s ease, visibility 0.28s ease;
}
.hero-scroll.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
}
.hero-scroll svg {
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  animation: hero-scroll-bob 1.6s ease-in-out infinite;
}
@keyframes hero-scroll-bob {
  0%, 100% { transform: translateY(-1px); }
  50% { transform: translateY(2px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll svg { animation: none; }
}

/* value strip under the hero */
.value-strip { background: var(--panel-warm, #f5f0e8); border-block: 1px solid var(--line-soft); }
.value-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1.15rem, 3vw, 2rem) clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 3vw, 2.5rem);
}
.value-item { display: flex; align-items: center; gap: 0.85rem; }
.value-item svg { width: 30px; height: 30px; color: var(--orange); flex: 0 0 auto; }
.value-item strong { display: block; font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); line-height: 1.2; }
.value-item span { display: block; font-size: 0.86rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 760px) {
  .value-strip-inner { grid-template-columns: 1fr; gap: 0.95rem; }
}

/* Estimate path — one-screen ensemble: compact steps left, phone video right */
.estimate-path {
  padding: clamp(2.2rem, 5.5vh, 3.6rem) 0 clamp(2.4rem, 5.5vh, 3.8rem);
  background: var(--section-white, #fff);
}
.estimate-path-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vh, 1.85rem);
}
.estimate-path .section-head {
  margin-bottom: 0;
  text-align: left;
}
.estimate-path .section-head h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.55rem);
}
.estimate-path-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: clamp(1.25rem, 3.5vh, 1.85rem) clamp(1.4rem, 4vw, 2.8rem);
  align-items: center;
}
.estimate-path-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.step3 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 0.95rem 1.1rem;
  box-shadow: 0 8px 22px rgba(25, 20, 16, 0.04);
}
.step3-num {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0.1rem 0 0;
  box-shadow: 0 6px 14px rgba(248, 80, 0, 0.26);
  flex: none;
}
.step3-body { min-width: 0; }
.step3 h3 {
  font-size: 1.08rem;
  margin: 0 0 0.25rem;
  color: var(--ink);
  line-height: 1.2;
}
.step3 p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}
.step3-price-line {
  margin: 0 0 0.3rem !important;
  font-size: 1.05rem !important;
  font-weight: 600;
  color: var(--ink) !important;
  line-height: 1.25 !important;
}
.step3-price-line .accent {
  font-weight: 800;
  font-size: 1.2em;
}
.step3--price {
  border-color: rgba(var(--orange-rgb, 248, 80, 0), 0.28);
  background: linear-gradient(135deg, rgba(var(--orange-rgb, 248, 80, 0), 0.07) 0%, #fff 55%);
  box-shadow: 0 10px 26px rgba(248, 80, 0, 0.08);
}
.estimate-path-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}
.estimate-path-side .quote-promo-media {
  width: min(280px, 100%);
  display: block;
}
.estimate-path-side .quote-promo-media video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-2xl, 28px);
  border: var(--border-card);
  box-shadow: var(--shadow-card-hover, 0 18px 44px rgba(25, 20, 16, 0.12));
  background: #fff;
}
/* CTA spans both columns — centered under steps + phone */
.estimate-path-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.15rem;
}
.estimate-path-cta .btn {
  display: inline-flex;
  width: auto;
  min-width: min(22rem, 100%);
  max-width: min(28rem, 100%);
  justify-content: center;
  text-align: center;
}

@media (max-width: 860px) {
  .estimate-path {
    padding: clamp(1.8rem, 5vh, 2.6rem) 0;
  }
  .estimate-path .section-head { text-align: center; }
  .estimate-path-body {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .estimate-path-steps { order: 1; }
  .estimate-path-side { order: 2; }
  .estimate-path-cta { order: 3; margin-top: 0.25rem; }
  .estimate-path-side .quote-promo-media {
    width: min(220px, 58vw);
  }
  .estimate-path-cta .btn {
    width: 100%;
    max-width: min(22rem, 100%);
  }
}
/* keep old class hooks harmless */
.steps3-grid { display: contents; }
.steps3-cta { text-align: center; }
.pricing-inner { max-width: 760px; margin: 0 auto; text-align: center; }

/* why PDR vs a body shop */
.whypdr { padding: clamp(3.5rem, 8vh, 6rem) 0; }
.whypdr-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3.5vw, 2rem);
  align-items: stretch;
}
.whypdr-col {
  border-radius: var(--radius-md, 28px);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.6rem, 3.2vw, 2.35rem);
  border: 1px solid var(--line-soft);
  background: var(--panel);
}
.whypdr-col--win {
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(248, 80, 0, 0.14);
}
.whypdr-col h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  margin: 0 0 1.35rem;
  line-height: 1.25;
  color: var(--ink);
}
.whypdr-col--win h3 { color: var(--orange-deep); }
.whypdr-col ul {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.whypdr-col li {
  position: relative;
  padding: 0.15rem 0 0.15rem 2.35rem;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.55;
}
.whypdr-col li::before {
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}
.whypdr-col--win li::before { content: "✓"; background: rgba(var(--orange-rgb), 0.14); color: var(--orange-deep); }
.whypdr-col--lose li { color: var(--muted); }
.whypdr-col--lose li::before { content: "✕"; background: rgba(110, 101, 92, 0.14); color: var(--muted); }
.whypdr-note {
  text-align: center;
  margin: clamp(1.6rem, 3.5vw, 2.4rem) auto 0;
  max-width: 640px;
  padding: 0 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}
.whypdr-note a { color: var(--orange-deep); font-weight: 600; white-space: nowrap; }
@media (max-width: 680px) {
  .whypdr-grid { grid-template-columns: 1fr; }
  .whypdr-col {
    padding: 1.55rem 1.35rem;
  }
  .whypdr-col ul { gap: 0.9rem; }
  .whypdr-col li {
    font-size: 0.98rem;
    padding-left: 2.2rem;
  }
}

.hero--video .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
  width: 100%;
  max-width: none;
  min-height: calc(100dvh - var(--header-h, 90px));
  /* pin copy high in the white ceiling, true horizontal center */
  align-items: start;
  justify-content: start;
  text-align: center;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) 0;
  margin: 0;
  box-sizing: border-box;
  overflow: visible;
  /* pull the whole copy block toward the top edge */
  align-content: start;
}
.hero--video .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  max-width: min(42rem, 94vw);
  width: 100%;
  margin: 0 auto;
  /* a bit higher still in the white ceiling */
  padding: 0 0.15em 0;
  transform: translateY(clamp(-2.85rem, -7vh, -1.5rem));
  text-align: center;
  overflow: visible;
}
.hero--video .hero-headline {
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 600; /* regular weight, not heavy bold */
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(2.5rem, 4.3vw, 4.1rem);
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
  max-width: min(22ch, 100%);
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}
.hero--video .hero-headline .accent { font-style: normal; font-weight: 600; }
/* Reveal animation needs overflow:hidden, but give vertical padding so type isn’t cropped */
.hero--video .hero-headline .hline {
  display: block;
  overflow: hidden;
  padding: 0.1em 0.06em;
  margin: -0.04em 0;
  text-align: center;
}
.hero--video .hero-headline .hline > span {
  display: inline-block;
  max-width: 100%;
  padding: 0 0.03em;
}
.hero--video .hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 32rem;
  margin-top: 0.85rem;
  margin-inline: auto;
  line-height: 1.5;
  text-align: center;
}
.hero--video .hero-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: auto;
  max-width: none;
  margin-inline: auto;
  justify-content: center;
  align-items: center;
}
.btn-hero {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 1.05rem 1.8rem;
  clip-path: none;
  border-radius: 999px;
  border: 1.5px solid transparent;
  justify-content: center;
}
.btn-hero svg { width: 20px; height: 20px; transition: transform 0.25s ease; }
.btn-hero:hover svg { transform: translateX(4px); }

/* pulsing highlight on the hero's primary CTA to pull the eye */
.hero--video .hero-actions .btn-hero {
  animation: cta-pulse 2.3s ease-in-out infinite;
}
.hero--video .hero-actions .btn-hero:hover { animation: none; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 12px 26px rgba(248, 80, 0, 0.34), 0 0 0 0 rgba(248, 80, 0, 0.5); }
  50%      { box-shadow: 0 14px 34px rgba(248, 80, 0, 0.52), 0 0 0 13px rgba(248, 80, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero--video .hero-actions .btn-hero { animation: none; }
}

/* the three hero actions share one shape — solid primary, two quiet twins */
.quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.05rem 1.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(25, 20, 16, 0.16);
  color: var(--ink);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.quick-btn svg { width: 19px; height: 19px; color: var(--orange); flex: none; }
.quick-btn:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.trust-item svg { width: 16px; height: 16px; color: var(--orange); flex: none; }

/* the trust line lives at the very bottom of the page now, as a bubble */
.trust-bubble-wrap {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 5vh, 3rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 6vw, 4.5rem);
  /* background from #main banding */
}
.trust-bubble {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.9rem 1.6rem;
  padding: 1.05rem 2rem;
  border-radius: 999px;
  background: var(--panel, #fff);
  border: 1px solid var(--line, #eae2d6);
  box-shadow: 0 18px 45px rgba(25, 20, 16, 0.08);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.hero-media { min-width: 0; }
.hero-media video { display: block; }

/* --- the before/after stage --- */
.hero-stage {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
}

.hero-compare {
  position: relative;
  width: 100%;
  max-width: min(700px, 100%);
  aspect-ratio: 1 / 1;
  max-height: min(74svh, 700px);
  margin-left: auto;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  cursor: ew-resize;
  touch-action: pan-y;
  box-shadow:
    0 40px 90px rgba(25, 20, 16, 0.22),
    0 12px 30px rgba(25, 20, 16, 0.12);
  /* divider position, 0–100 */
  --pos: 62%;
  --lean: 7%;               /* horizontal offset of the slant */
}
/* keep square when height-capped */
@supports (width: 1cqh) {
  .hero-compare { width: auto; height: min(74svh, 700px); max-width: 100%; aspect-ratio: 1 / 1; }
}

.hero-layer {
  position: absolute;
  inset: 0;
}
.hero-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  filter: saturate(1.07) contrast(1.05);
}

/* the AFTER layer sits on top, clipped by the slanted polygon */
.hero-after {
  clip-path: polygon(
    0 0,
    calc(var(--pos) + var(--lean)) 0,
    calc(var(--pos) - var(--lean)) 100%,
    0 100%
  );
}

.compare-divider {
  position: absolute;
  top: -6%;
  bottom: -6%;
  left: var(--pos);
  width: 0;
  pointer-events: none;
}
.divider-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 3px;
  margin-left: -1.5px;
  background: linear-gradient(var(--orange-bright), var(--orange), var(--orange-deep));
  box-shadow: 0 0 18px rgba(var(--orange-rgb), 0.8), 0 0 60px rgba(var(--orange-rgb), 0.35);
  transform: rotate(calc(var(--slant) * -1));
}
.divider-handle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--orange);
  color: var(--orange);
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px rgba(var(--orange-rgb), 0.5);
  animation: handle-pulse 2.6s ease-in-out infinite;
}
.divider-handle svg { width: 20px; height: 20px; }

@keyframes handle-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(var(--orange-rgb), 0.5); }
  50% { box-shadow: 0 0 40px rgba(var(--orange-rgb), 0.85); }
}

.compare-tag {
  position: absolute;
  top: 14px;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(25, 20, 16, 0.15);
}
.tag-after { left: 14px; color: var(--orange-deep); }
.tag-before { right: 14px; color: var(--muted); }

/* orange corner brackets around the stage */
.stage-corner {
  position: absolute;
  width: 56px; height: 56px;
  border: 3px solid var(--orange);
  pointer-events: none;
}
.corner-tl { top: -12px; left: -12px; border-right: none; border-bottom: none; }
.corner-br { bottom: 24px; right: -12px; border-left: none; border-top: none; }

.stage-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.stage-hint svg { width: 15px; height: 15px; color: var(--orange); }

/* ============ trust bar ============ */

/* ============ sections shared ============ */
.section-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.section-kicker {
  color: var(--orange-deep);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--orange);
  margin-right: 0.7rem;
  vertical-align: middle;
  transform: skewX(-30deg);
}
.section-head h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }

/* ============ services ============ */
.services { padding: clamp(4rem, 9vh, 7rem) 0; }

.services-grid {
  max-width: 1200px;
  margin: 2.8rem auto 0;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.service-card {
  position: relative;
  background: var(--panel);
  border: var(--border-card);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.8rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; right: -30px;
  width: 90px;
  height: 200%;
  background: linear-gradient(rgba(var(--orange-rgb), 0.07), transparent);
  transform: rotate(var(--slant));
  transition: background 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--orange-rgb), 0.45);
  box-shadow: 0 18px 44px rgba(var(--orange-rgb), 0.14), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.service-card:hover::before { background: linear-gradient(rgba(var(--orange-rgb), 0.14), transparent); }

.service-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--orange);
}
.service-card h3 {
  font-size: 1.7rem;
  margin: 0.5rem 0 0.7rem;
}
.service-card p { color: var(--muted); font-size: 0.95rem; }

.service-points {
  list-style: none;
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.service-card-cta {
  margin: 1.25rem 0 0;
  position: relative;
  z-index: 1;
}
.service-card--hail {
  border-top-color: #2563eb;
}
.service-card--hail .service-num { color: #2563eb; }
.service-card--hail::before {
  background: linear-gradient(rgba(37, 99, 235, 0.07), transparent);
}
.service-card--hail:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.12), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.service-card--hail:hover::before {
  background: linear-gradient(rgba(37, 99, 235, 0.14), transparent);
}
.service-points li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}
.service-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 2px;
  background: var(--orange);
  transform: skewX(-30deg);
}

/* ============ process ============ */
.process {
  padding: clamp(4rem, 9vh, 7rem) 0;
  background:
    linear-gradient(170deg, transparent 30%, rgba(var(--orange-rgb), 0.05)),
    var(--panel-warm);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.process-steps {
  list-style: none;
  max-width: 1200px;
  margin: 2.8rem auto 0;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.process-steps li {
  position: relative;
  padding: 1.8rem 1.6rem;
  background: var(--panel);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-steps li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(120deg, var(--orange-bright), var(--orange-deep));
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.process-steps h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.process-steps p { color: var(--muted); font-size: 0.94rem; }

/* ============ video ============ */
.video {
  /* extra bottom air before the gallery band */
  padding: clamp(4rem, 9vh, 7rem) 0 clamp(3.5rem, 8vh, 5.5rem);
}

.video-frame {
  position: relative;
  max-width: 960px;
  margin: 2.6rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 30px 70px rgba(25, 20, 16, 0.18);
  border: var(--border-card);
}
@media (max-width: 1040px) {
  .video-frame { margin-left: clamp(1rem, 4vw, 3rem); margin-right: clamp(1rem, 4vw, 3rem); }
}
.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-frame:hover img { transform: scale(1.03); }
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 0 rgba(var(--orange-rgb), 0.45);
  animation: play-pulse 2.2s ease-out infinite;
  transition: transform 0.25s ease;
}
.video-frame:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-play svg { width: 34px; height: 34px; fill: #fff; margin-left: 4px; }

@keyframes play-pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--orange-rgb), 0.45); }
  100% { box-shadow: 0 0 0 26px rgba(var(--orange-rgb), 0); }
}

/* ============ reviews (CarBodyLab-style carousel) ============ */
.reviews { padding: clamp(4rem, 9vh, 7rem) 0; overflow: hidden; }

.reviews-hero-stars {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
}
.reviews-hero-stars svg {
  width: 2rem;
  height: 2rem;
  fill: var(--gold);
  filter: drop-shadow(0 2px 4px rgba(212, 160, 16, 0.35));
}

/* gold star row used on cards + badge */
.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  flex: none;
}
.review-stars svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: var(--gold);
  display: block;
}
.review-stars-inline svg {
  width: 1rem;
  height: 1rem;
}

.reviews-carousel {
  --review-gap: 1.15rem;
  --review-card-w: min(420px, calc(100vw - 5.5rem));
  position: relative;
  max-width: 1100px;
  margin: 2.6rem auto 0;
  padding: 0 3.1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
}

.reviews-viewport {
  overflow: hidden;
  min-width: 0;
  /* soft fade on the peeking next card — like CarBodyLab */
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 72%, rgba(0,0,0,0.35) 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, rgba(0,0,0,0.35) 100%);
  touch-action: pan-y;
  cursor: grab;
}
.reviews-viewport.is-dragging { cursor: grabbing; }

.reviews-track {
  display: flex;
  gap: var(--review-gap);
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.reviews-track.is-instant { transition: none; }

.review-card {
  flex: 0 0 var(--review-card-w);
  width: var(--review-card-w);
  background: var(--panel);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  box-shadow: var(--shadow-card);
  opacity: 0.42;
  transform: scale(0.985);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}
.review-card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: var(--shadow-card-hover);
}

.review-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  background: var(--av, #6d28d9);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-items: center;
  flex: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--av, #6d28d9) 35%, transparent);
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.review-meta strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-meta span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.2;
}

.review-body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #3d4654;
  /* keep cards a stable height for smooth slide */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  min-height: 7.8em;
}

.reviews-nav {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 0;
  background: #4b5563;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: none;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(25, 20, 16, 0.18);
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.reviews-nav svg { width: 1.15rem; height: 1.15rem; }
.reviews-nav:hover {
  background: var(--ink);
  transform: scale(1.05);
}
.reviews-nav:active { transform: scale(0.96); }
.reviews-nav:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* legacy orange stars (hero rating etc.) */
.stars {
  color: var(--orange);
  letter-spacing: 0.2em;
  font-size: 0.95rem;
}

.reviews-badge {
  max-width: 1100px;
  width: calc(100% - clamp(2rem, 8vw, 6rem));
  margin: 2rem auto 0;
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: var(--panel);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.badge-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--orange);
  line-height: 1;
}
.reviews-badge p { color: var(--muted); font-size: 0.9rem; margin-top: 0.2rem; }

/* ============ gallery ============ */
.gallery {
  padding: clamp(4rem, 9vh, 7rem) 0;
  /* background from #main banding */
}

/* full-bleed auto-scrolling marquee */
.gallery-marquee {
  margin-top: 2.8rem;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gallery-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  padding: 0.5rem 0;
  animation: gallery-scroll 40s linear infinite;
}
.gallery-marquee:hover .gallery-track { animation-play-state: paused; }

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 0.6rem)); }  /* half the doubled track + half a gap */
}

.gallery-card {
  position: relative;
  margin: 0;
  flex: 0 0 auto;
  width: clamp(260px, 26vw, 380px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(25, 20, 16, 0.14);
  border: var(--border-card);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}
.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 26px 54px rgba(var(--orange-rgb), 0.24);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery-card:hover img { transform: scale(1.08); }

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 20, 16, 0.78), rgba(25, 20, 16, 0.05) 55%);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.gallery-card:hover::after { opacity: 0.9; }

.gallery-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1rem 1.15rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
  line-height: 1.05;
  transform: translateY(6px);
  opacity: 0.92;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-card:hover figcaption { transform: none; opacity: 1; }

/* zoom hint icon */
.gallery-card::before {
  content: "";
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(var(--orange-rgb), 0.95) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3M11 8v6M8 11h6'/%3E%3C/svg%3E") center / 17px no-repeat;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-card:hover::before { opacity: 1; transform: scale(1); }

.gallery-note {
  max-width: 1200px;
  margin: 1.8rem auto 0;
  padding: 0 clamp(1rem, 4vw, 3rem);
  color: var(--muted);
  font-size: 0.95rem;
}
.gallery-note a { color: var(--orange-deep); font-weight: 600; text-decoration: none; }
.gallery-note a:hover { text-decoration: underline; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 12, 9, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: lb-fade 0.25s ease both;
  pointer-events: auto;
}
.lightbox[hidden],
.lightbox:not(.is-open)[hidden] { display: none !important; }
.lightbox.is-open { display: flex !important; }
body.lightbox-open { overflow: hidden; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }

.lightbox-figure {
  margin: 0;
  max-width: min(90vw, 800px);
  text-align: center;
  animation: lb-pop 0.3s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}
@keyframes lb-pop { from { transform: scale(0.94); opacity: 0; } to { transform: none; opacity: 1; } }
.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-figure figcaption {
  margin-top: 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--orange); border-color: var(--orange); }

.lightbox-close {
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  font-size: 2.2rem;
  line-height: 1;
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============ FAQ ============ */
.faq {
  padding: clamp(4rem, 9vh, 7rem) 0;
  /* background from #main banding */
  border-top: 1px solid var(--line-soft);
}

.faq-list {
  max-width: 860px;
  margin: 2.6rem auto 0;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--panel);
  border: var(--border-card);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item[open] { box-shadow: 0 14px 36px rgba(var(--orange-rgb), 0.12), 0 1px 0 rgba(255,255,255,0.9) inset; }

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 2.5px;
  background: var(--orange);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-body {
  padding: 0 1.4rem 1.2rem;
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 46rem;
  animation: faq-in 0.35s ease both;
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ============ homepage section banding ============ */
#main > section:nth-child(even) {
  background: var(--section-alt);
}
#main > section:nth-child(odd):not(.hero) {
  background: var(--section-white);
}
#main > section.hero,
#main > section.hero--video {
  background: var(--section-alt);
}
/* unified estimate block is always white so steps + pricing + phone feel like one piece */
#main > section.estimate-path {
  background: var(--section-white, #fff);
}

/* ============ areas / marquee ============ */
.areas {
  padding: clamp(4rem, 9vh, 6rem) 0 clamp(3rem, 7vh, 5rem);
  /* same gray as hero floor — no hard edge under the video */
  border-top: none;
  overflow: hidden;
}

.marquee {
  margin-top: 2.4rem;
  transform: rotate(-2deg) scale(1.02);
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  background: var(--orange);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 2.2rem;
  padding: 1rem 0;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track a {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.5rem;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
}
.marquee-track a:hover {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}
.marquee-track > span {
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.1rem;
  align-self: center;
  white-space: nowrap;
}
.marquee-track span.city-name {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.areas-note {
  margin: 2.2rem auto 0;
  max-width: 1200px;
  padding: 0 clamp(1rem, 4vw, 3rem);
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============ estimate ============ */
.estimate {
  padding: clamp(4.5rem, 10vh, 8rem) 0;
  background:
    radial-gradient(90% 70% at 85% 20%, rgba(var(--orange-rgb), 0.08), transparent 60%),
    var(--paper);
}

.estimate-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.estimate-copy h2 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
.estimate-sub { margin-top: 1.2rem; color: var(--muted); }

.estimate-perks {
  list-style: none;
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.estimate-perks li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.96rem;
  font-weight: 500;
}
.estimate-perks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.42em;
  width: 12px; height: 3px;
  background: var(--orange);
  transform: skewX(-30deg);
}

.estimate-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.estimate-contact a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--orange);
  text-decoration: none;
}
.estimate-contact span { color: var(--muted); font-size: 0.9rem; }

/* map */
.map-card {
  position: relative;
  margin-top: 1.6rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border-card);
  box-shadow: var(--shadow-card-hover);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}
.map-directions {
  position: absolute;
  right: 12px;
  bottom: 12px;
  text-decoration: none;
}
.map-directions svg { width: 16px; height: 16px; }
/* Google Maps chip, floating on the map corner (right edge) */
.map-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem 0.4rem 0.5rem;
  border-radius: 999px;
  background: #fff;
  color: #202124;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(25, 20, 16, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.map-badge:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(25, 20, 16, 0.26); }
.map-badge svg { width: 20px; height: 20px; }

/* Honeypot — never visible to humans */
.hp-wrap,
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* form */
.estimate-form {
  position: relative;
  background: var(--panel);
  border: var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: var(--shadow-card-hover);
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
.estimate-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-bright), var(--orange-deep));
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.85rem;
  min-width: 0;
  width: 100%;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0; /* critical: allow grid children to shrink so inputs stay inside panel */
  max-width: 100%;
}
.field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  /* 16px minimum: iOS zooms the page when focused inputs are smaller,
     which creates the mid-screen sticky + cream gap mess */
  font-size: 16px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line-soft);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 999px;
  appearance: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.field textarea { border-radius: var(--radius-md); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ff5b00' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}
.field textarea { resize: vertical; min-height: 76px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(110, 101, 92, 0.5); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(var(--orange-rgb), 0.18);
  background: #fff;
}
.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #d92f21;
  box-shadow: 0 0 0 3px rgba(217, 47, 33, 0.12);
}
.field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: #d92f21;
}
.field-error[hidden] { display: none !important; }
@media (max-width: 860px) {
  .field-error { text-align: center; }
}

/* dropzone */
.dropzone {
  border: 1.5px dashed rgba(var(--orange-rgb), 0.45);
  border-radius: var(--radius-md);
  background: rgba(var(--orange-rgb), 0.04);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.dropzone:hover, .dropzone:focus-visible, .dropzone.dragover {
  border-color: var(--orange);
  background: rgba(var(--orange-rgb), 0.09);
  outline: none;
}
.dropzone svg { width: 30px; height: 30px; color: var(--orange); margin: 0 auto 0.5rem; }
.dropzone p { font-size: 0.95rem; color: var(--text); }
.dropzone p strong { color: var(--orange-deep); }
.dropzone span { font-size: 0.78rem; color: var(--muted); }

.thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}
.thumb {
  position: relative;
  width: 68px; height: 68px;
  border: var(--border-card);
  border-radius: var(--radius-xs);
  overflow: hidden;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb button {
  position: absolute;
  top: 2px; right: 2px;
  width: 20px; height: 20px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--orange-deep);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(25, 20, 16, 0.25);
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* success state */
.form-success {
  position: absolute;
  inset: 0;
  background: var(--panel);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  padding: 2rem;
  z-index: 5;
  animation: success-in 0.45s ease both;
}
.form-success[hidden] { display: none; }
.form-success svg { width: 64px; height: 64px; color: var(--orange); }
.form-success h3 { font-size: 2rem; }
.form-success p { color: var(--muted); max-width: 26rem; }
.form-success a { color: var(--orange-deep); font-weight: 600; }
.form-success .wiz-success-restart {
  margin-top: 0.65rem;
  min-width: min(16rem, 100%);
  justify-content: center;
}

@keyframes success-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ============ quote overlay (SPA-style estimate) ============ */
.quote-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: 300;
  /* transparent — quote page draws its own hero video bg */
  background: transparent;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.45s;
  /* let the iframe document scroll under the keyboard — no white dead panel */
  overflow: hidden;
}
.quote-overlay.open {
  visibility: visible;
  transform: none;
}
.quote-overlay iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: transparent;
  /* critical: allow the wizard page to scroll inside when the keyboard is up */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  color-scheme: only light;
}
.quote-overlay.frame-ready iframe { opacity: 1; }

/* spinner while the wizard frame is still loading */
.quote-overlay::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  border-radius: 50%;
  border: 3px solid var(--line-soft);
  border-top-color: var(--orange);
  animation: overlay-spin 0.8s linear infinite;
}
.quote-overlay.frame-ready::before { display: none; }
@keyframes overlay-spin { to { transform: rotate(360deg); } }
.quote-overlay-close {
  position: absolute;
  top: 0.45rem;
  right: 0.6rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: #fff;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(25, 20, 16, 0.1);
  transition: color 0.2s ease, transform 0.2s ease;
}
.quote-overlay-close:hover { color: var(--orange); transform: scale(1.06); }
/* hide host close while camera is fullscreen inside the quote iframe */
.quote-overlay.cam-active .quote-overlay-close {
  display: none !important;
}

/* ============ instant quote promo (phone video) ============ */
.quote-promo {
  /* background from #main banding (alt gray after white areas) */
  padding: clamp(4rem, 9vh, 7rem) 0;
}
.quote-promo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.quote-promo-media {
  display: block;
  width: min(370px, 82vw);
  cursor: pointer;
  transition: transform 0.25s ease;
}
.quote-promo-media:hover { transform: translateY(-5px) scale(1.01); }
.quote-promo-media video {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  border-radius: var(--radius-2xl);
  border: var(--border-card);
  box-shadow: var(--shadow-card-hover);
}

/* desktop: conversational copy on the left, phone on the right */
@media (min-width: 701px) {
  .quote-promo-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "copy media"
      "btn  media";
    align-items: center;
    column-gap: clamp(2.5rem, 6vw, 5.5rem);
    row-gap: 1.8rem;
    max-width: 1020px;
    margin: 2.6rem auto 0;
  }
  .quote-promo-copy { grid-area: copy; align-self: end; }
  .quote-promo-media { grid-area: media; }
  .quote-promo-inner > .btn { grid-area: btn; justify-self: start; align-self: start; }
}

.quote-promo-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 34rem;
}
.quote-promo-copy p {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--text);
}
.quote-promo-copy .quote-promo-note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 700px) {
  /* heading + phone + button must share one phone screen */
  .quote-promo { padding: clamp(2.2rem, 5vh, 3.5rem) 0; }
  .quote-promo-inner { gap: 1rem; margin-top: 1.2rem; }
  .quote-promo-media { width: min(215px, 52vw); }
  .quote-promo-copy { display: none; }
}

/* ============ location ============ */
.location {
  /* space below map/info so it isn’t flush against footer */
  padding: clamp(4rem, 9vh, 7rem) 0 clamp(3.5rem, 8vh, 5.5rem);
}

.location-grid {
  max-width: 1200px;
  margin: 2.6rem auto 0;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  /* map + info card share one row height */
  align-items: stretch;
}
.location .map-card {
  margin-top: 0;
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
}
.location .map-card iframe {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  height: 100%;
  min-height: 340px;
  padding: 1.4rem 1.5rem;
  background: var(--panel);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  box-sizing: border-box;
}
.location-info h3 { font-size: 1.5rem; }
.location-info address {
  font-style: normal;
  font-size: 1.05rem;
  color: var(--text);
}
.location-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--orange-deep);
  text-decoration: none;
}
.location-phone:hover { color: var(--orange); }
.location-note { color: var(--muted); font-size: 0.92rem; }
.location-points {
  list-style: none;
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
}
.location-points li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--orange);
  margin-right: 0.6rem;
  transform: skewX(-12deg);
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .location .map-card,
  .location .map-card iframe,
  .location-info {
    min-height: 260px;
    height: auto;
  }
  .location .map-card iframe { min-height: 260px; height: 260px; }
}

/* ============ footer ============ */
.site-footer {
  border-top: 1px solid rgba(25, 20, 16, 0.08);
  background: var(--section-alt, #faf8f4);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem clamp(1rem, 4vw, 3rem) 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 1rem; max-width: 22rem; }

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
  max-width: 22rem;
}
/* Real app-style icons (squircle + brand colors), not outline bubbles */
.socials a {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 22%;
  border: 0;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 2px 8px rgba(25, 20, 16, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.socials a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 8px 18px rgba(25, 20, 16, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.22) inset;
  filter: saturate(1.05) brightness(1.04);
}
.socials svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  display: block;
}
.socials a.social-facebook { background: #1877F2; }
.socials a.social-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.socials a.social-youtube { background: #FF0000; }
.socials a.social-tiktok { background: #010101; }
.socials a.social-x { background: #000000; }
.socials a.social-linkedin { background: #0A66C2; }
.socials a.social-linktree { background: #43E55E; color: #1a1a1a; }
.footer-col h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  color: var(--orange-deep);
  margin-bottom: 0.8rem;
}
.footer-col p, .footer-col address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.9;
}
.footer-col a { color: var(--text); text-decoration: none; }
.footer-col a:hover { color: var(--orange); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  line-height: 1.45;
}
.footer-links a {
  color: var(--text);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem clamp(1rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-demo-note { opacity: 0.7; }

/* ============ scroll reveal (hidden state only when JS runs) ============ */
html.js .reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal-up.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal-up, .fade-item { opacity: 1; transform: none; transition: none; }
  .hline > span { transform: none; transition: none; }
  .marquee-track { animation: none; }
  .gallery-track { animation: none; flex-wrap: wrap; justify-content: center; }
  .divider-handle { animation: none; }
  .preloader-inner img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ responsive ============ */
@media (max-width: 1020px) {
  .hero { align-items: start; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-stage { order: -1; margin: 0 auto; }
  .hero-compare { margin: 0 auto; max-height: min(52svh, 560px); }
  @supports (width: 1cqh) {
    .hero-compare { height: min(52svh, 560px); }
  }
  .stage-hint { justify-content: center; }
  .hero-content { text-align: left; }
  .hero-watermark { font-size: 30vw; }

  /* Video hero on phones — full-bleed portrait video; copy sits in the
     baked-in white ceiling. JS frames it from the actual usable pane. */
  .hero--video {
    display: block;
    position: relative;
    /* Exactly fill the usable pane. Height-based container queries below
       scale the composition so the gallery always remains on-screen. */
    height: var(--hero-h, 100%);
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: var(--section-alt, #faf8f4);
  }
  .hero--video .hero-media {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    display: block;
    overflow: hidden;
    z-index: 0;
    background: var(--section-alt, #faf8f4);
  }
  .hero--video .hero-media video {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: var(--hero-obj-x, 50%) var(--hero-obj-y, 48%);
    transform: none;
  }
  /* soft fade so type stays crisp while the scene still bleeds through */
  .hero--video .hero-media::after {
    display: block;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.22) 22%,
      rgba(255, 255, 255, 0.06) 36%,
      transparent 52%
    );
  }
  .hero--video .hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0 1.15rem;
    margin: 0;
    background: transparent;
    pointer-events: none; /* CTAs re-enable below */
  }
  .hero--video .hero-content {
    position: absolute;
    top: var(--hero-copy-top, 10%);
    left: 50%;
    transform: translateX(-50%);
    width: min(22.5rem, 94vw);
    max-width: min(22.5rem, 94vw);
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: auto;
  }
  .hero--video .hero-headline {
    font-size: clamp(2.05rem, 1.45rem + 3.6svh, 2.7rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
    text-align: center;
    max-width: min(18ch, 100%);
  }
  /* keep strip + Scroll stacked cleanly (never overlapping photos) */
  .hero--video .hero-strip {
    bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
    padding-block: 0.35rem;
  }
  .hero--video .hero-strip-item img {
    width: clamp(68px, 17.5vw, 96px);
    height: clamp(68px, 17.5vw, 96px);
    border-radius: 14px;
  }
  .hero--video .hero-scroll {
    /* Sit fully ABOVE the photo rail. Derive the offset from the actual
       thumbnail size so it stays clear on narrow and wide phones alike. */
    bottom: calc(
      0.55rem
      + clamp(68px, 17.5vw, 96px)
      + 1rem
      + env(safe-area-inset-bottom, 0px)
    );
    min-height: 2.35rem;
    padding: 0.24rem 0.28rem 0.24rem 0.8rem;
    font-size: 0.68rem;
    box-shadow: 0 5px 16px rgba(25, 20, 16, 0.12);
  }
  .hero--video .hero-sub {
    margin-top: clamp(0.25rem, 0.8svh, 0.45rem);
    font-size: clamp(0.88rem, 0.78rem + 0.4svh, 1rem);
    line-height: 1.4;
    max-width: min(20rem, 92vw);
    margin-inline: auto;
    text-align: center;
    color: #5c6570;
  }
  .hero--video .hero-actions {
    margin-top: clamp(0.75rem, 1.8svh, 1.1rem);
    gap: clamp(0.45rem, 1svh, 0.65rem);
    max-width: min(20.5rem, 92vw);
    width: 100%;
    margin-inline: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .hero--video .btn-hero {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: clamp(0.9rem, 1.7svh, 1.1rem) 1.25rem;
    font-size: clamp(1.02rem, 0.92rem + 0.4svh, 1.14rem);
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(var(--orange-rgb), 0.32);
  }
  .hero--video .btn-hero svg { width: 22px; height: 22px; }
  .hero--video .quick-btn {
    flex: none;
    width: auto;
    max-width: 100%;
    min-width: 0;
    padding: clamp(0.68rem, 1.2svh, 0.82rem) 1.35rem;
    font-size: clamp(0.95rem, 0.86rem + 0.3svh, 1.05rem);
    border-radius: 999px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.94);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 14px rgba(25, 20, 16, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .hero--video .quick-btn svg { width: 17px; height: 17px; }
  .trust-bubble { border-radius: var(--radius-md); padding: 1rem 1.4rem; font-size: 0.88rem; gap: 0.7rem 1.2rem; }
}

/* Short real scroll panes (SE/mini, Safari chrome open, split-screen).
   Container height is the actual usable pane below the header. Scale the
   composition instead of pushing the gallery below the fold. */
@container viewport-pane (max-height: 700px) {
  .hero--video {
    height: var(--hero-h, 100%);
    min-height: 0;
  }
  .hero--video .hero-media {
    position: absolute;
    inset: 0;
  }
  .hero--video .hero-media video {
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-obj-x, 50%) var(--hero-obj-y, 46%);
    transform: none;
  }
  .hero--video .hero-content {
    top: 4%;
  }
  .hero--video .hero-headline {
    font-size: clamp(1.65rem, 6.2vw, 2rem);
    line-height: 1.02;
  }
  .hero--video .hero-actions { margin-top: 0.5rem; gap: 0.38rem; }
  .hero--video .btn-hero {
    padding: 0.66rem 1rem;
    font-size: 0.94rem;
  }
  .hero--video .quick-btn {
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
  }
  .hero--video .hero-strip {
    bottom: calc(0.4rem + env(safe-area-inset-bottom, 0px));
  }
  .hero--video .hero-strip-item img {
    width: clamp(54px, 15vw, 70px);
    height: clamp(54px, 15vw, 70px);
    border-radius: 12px;
  }
  .hero--video .hero-scroll {
    bottom: calc(
      0.4rem
      + clamp(54px, 15vw, 70px)
      + 0.65rem
      + env(safe-area-inset-bottom, 0px)
    );
    min-height: 2rem;
    padding-block: 0.16rem;
  }
  .hero--video .hero-scroll svg {
    width: 23px;
    height: 23px;
  }
}

/* Very short panes: older SE landscape, embedded previews and browsers with
   both toolbars expanded. Keep every action and the complete photo rail. */
@container viewport-pane (max-height: 560px) {
  .hero--video .hero-content { top: 2.5%; }
  .hero--video .hero-headline {
    font-size: clamp(1.35rem, 5.6vw, 1.72rem);
  }
  .hero--video .hero-actions {
    margin-top: 0.3rem;
    gap: 0.25rem;
  }
  .hero--video .btn-hero {
    padding: 0.52rem 0.9rem;
    font-size: 0.86rem;
  }
  .hero--video .quick-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
  }
  .hero--video .hero-strip-item img {
    width: clamp(48px, 13vw, 58px);
    height: clamp(48px, 13vw, 58px);
  }
  .hero--video .hero-scroll {
    bottom: calc(
      0.35rem
      + clamp(48px, 13vw, 58px)
      + 0.45rem
      + env(safe-area-inset-bottom, 0px)
    );
  }
}

/* Fallback for browsers without size container queries. */
@supports not (container-type: size) {
  @media (max-width: 1020px) and (max-height: 700px) {
    .hero--video { height: var(--hero-h, 100%); }
    .hero--video .hero-content { top: 4%; }
    .hero--video .hero-headline { font-size: clamp(1.7rem, 6.4vw, 2.05rem); }
    .hero--video .btn-hero { padding: 0.72rem 1.05rem; font-size: 0.98rem; }
    .hero--video .quick-btn { padding: 0.58rem 1.1rem; font-size: 0.92rem; }
  }
}

/* Phones rotated sideways need vertical room too; let the page scroll instead
   of placing the gallery on top of the heading and actions. */
@media (max-width: 1020px) and (orientation: landscape) {
  .hero--video { height: var(--hero-h, 100%); }
  .hero--video .hero-content {
    top: 4%;
    width: min(31rem, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
  }
  .hero--video .hero-headline {
    font-size: clamp(1.7rem, 4.8vw, 2.2rem);
    max-width: 22ch;
  }
  .hero--video .hero-actions {
    margin-top: 0.55rem;
    flex-direction: row;
    width: auto;
    max-width: calc(100vw - 2rem);
  }
  .hero--video .btn-hero,
  .hero--video .quick-btn {
    width: auto;
    padding-block: 0.65rem;
  }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .reviews-carousel {
    --review-card-w: min(360px, calc(100vw - 4.5rem));
    padding: 0 2.6rem;
  }
  .estimate-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-compare { --lean: 5%; }
  .site-header { padding: 0.4rem 0.85rem; gap: 0.8rem; }
  .site-header .brand { --brand-h: 4.55rem; height: var(--brand-h); }
  .site-header .brand-logo { max-height: var(--brand-h); }
  .footer-brand .brand { --brand-h: 5.5rem; }
  .footer-brand .brand-flag { --flag-w: 1.85rem; }
  .footer-brand .brand-flag small { font-size: 0.55rem; }
  .faq-item summary { font-size: 1.02rem; }
}

@media (max-width: 560px) {
  .header-cta:not(.header-quote) span { display: none; }
  .header-cta:not(.header-quote) { padding: 0.55rem 0.8rem; }
  .site-header.quote-visible .header-quote {
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
  }
  .header-cta svg { width: 18px; height: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-carousel {
    --review-card-w: min(22rem, calc(100vw - 3.2rem));
    padding: 0 0.35rem;
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    background: rgba(55, 65, 81, 0.92);
  }
  .reviews-nav:hover { transform: translateY(-50%) scale(1.05); }
  .reviews-prev { left: 0.15rem; }
  .reviews-next { right: 0.15rem; }
  .stage-corner { display: none; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  /* phone: larger type — sits lower in the white ceiling (see --hero-copy-top) */
  .hero--video .hero-headline { font-size: clamp(2.05rem, 7.6vw, 2.55rem); }
  .hero--video .btn-hero { width: 100%; flex: none; }
  .hero--video .hero-content {
    width: min(22rem, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
  }
  .hero--video .hero-actions {
    width: min(20.5rem, calc(100vw - 2rem));
  }
  .hero--video .hero-strip {
    bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
  }
  .hero--video .hero-strip-item img {
    width: clamp(66px, 18vw, 86px);
    height: clamp(66px, 18vw, 86px);
  }
  .hero--video .hero-scroll {
    bottom: calc(
      0.55rem
      + clamp(66px, 18vw, 86px)
      + 1rem
      + env(safe-area-inset-bottom, 0px)
    );
  }
  .gallery-card { width: min(78vw, 20rem); }
  .lightbox-nav { width: 44px; height: 44px; font-size: 1.8rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* Phone: denser layout — less vertical air so the page doesn’t feel “super long” */
@media (max-width: 860px) {
  /* Section bands: cut padding ~40–50% on phone */
  .services,
  .reviews,
  .gallery,
  .faq,
  .quote-promo {
    padding: clamp(2.1rem, 5vh, 3.25rem) 0;
  }
  .areas {
    padding: clamp(2rem, 4.5vh, 3rem) 0 clamp(1.6rem, 3.5vh, 2.4rem);
  }
  .video {
    padding: clamp(2.1rem, 5vh, 3.25rem) 0 clamp(1.8rem, 4vh, 2.6rem);
  }
  .location {
    padding: clamp(2.1rem, 5vh, 3.25rem) 0 clamp(2rem, 4.5vh, 3rem);
  }
  .estimate {
    padding: clamp(2.25rem, 5.5vh, 3.5rem) 0;
  }

  .section-head h2 {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
    line-height: 1.12;
  }
  .section-kicker { margin-bottom: 0.55rem; }

  /* Grids sit closer under headings */
  .services-grid,
  .process-steps,
  .reviews-carousel,
  .faq-list,
  .location-grid {
    margin-top: 1.35rem;
  }
  .gallery-marquee { margin-top: 1.35rem; }
  .areas .marquee { margin-top: 1.2rem; }
  .areas-note { margin-top: 1.15rem; }
  .video-frame { margin-top: 1.35rem; }
  .reviews-badge { margin-top: 1.15rem; }

  /* Cards: less padding + slightly tighter radius so they don’t feel “stretched” */
  .service-card {
    padding: 1.25rem 1.15rem 1.2rem;
    border-radius: var(--radius-md);
  }
  .process-steps li {
    padding: 1.2rem 1.1rem;
    border-radius: var(--radius-md);
  }
  .process-steps h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
  .service-card h3 { font-size: 1.35rem; }
  .faq-item {
    border-radius: var(--radius-md);
  }
  .faq-item summary {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
  .faq-body { padding: 0 1rem 1rem; font-size: 0.9rem; }
  .location-info {
    padding: 1.1rem 1.15rem;
    border-radius: var(--radius-md);
  }
  .estimate-form {
    padding: 1.15rem 1.05rem;
    border-radius: var(--radius-lg);
  }
  .gallery-card {
    border-radius: var(--radius-md);
  }
  .map-card {
    border-radius: var(--radius-md);
    margin-top: 1.1rem;
  }
  .location .map-card iframe { height: 220px; }

  .review-card {
    padding: 1.05rem 1rem 1.15rem;
    border-radius: var(--radius-md);
    gap: 0.7rem;
  }
  .review-body {
    -webkit-line-clamp: 5;
    min-height: 0; /* don’t force empty tall cards */
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .reviews-badge {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
  }
  .badge-score { font-size: 2.4rem; }

  .quote-promo-inner { margin-top: 1.1rem; gap: 0.9rem; }

  .site-footer .footer-grid {
    padding-top: 1.6rem;
    padding-bottom: 1.2rem;
    gap: 1.25rem;
  }
  .footer-bottom {
    padding-top: 0.9rem;
    padding-bottom: 1rem;
  }

  /* Phone: center section copy, cards, forms, location, footer */
  .section-head,
  .section-head h2,
  .section-kicker,
  .areas-note,
  .gallery-note,
  .estimate-copy,
  .estimate-copy h2,
  .estimate-sub,
  .estimate-contact,
  .location-info,
  .location-info h3,
  .location-info address,
  .location-note,
  .quote-promo-copy,
  .footer-brand,
  .footer-brand p,
  .footer-col,
  .footer-col h4,
  .footer-col p,
  .footer-col address,
  .footer-bottom,
  .faq-item summary,
  .faq-item p,
  .service-card,
  .process-steps li,
  .process-steps h3,
  .process-steps p,
  .review-card,
  .reviews-badge {
    text-align: center;
  }

  .section-kicker::before { display: none; }

  .section-head,
  .areas-note,
  .gallery-note,
  .estimate-sub,
  .estimate-contact,
  .location-info,
  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .estimate-perks {
    align-items: center;
  }
  .estimate-perks li {
    text-align: center;
    padding-left: 0;
  }
  .estimate-perks li::before {
    position: static;
    display: inline-block;
    margin-right: 0.45rem;
    vertical-align: middle;
  }

  .estimate-inner {
    justify-items: center;
  }
  .estimate-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .estimate-form {
    width: 100%;
  }
  .estimate-form .field,
  .estimate-form .field label {
    text-align: center;
  }
  .estimate-form .field input,
  .estimate-form .field select,
  .estimate-form .field textarea {
    text-align: center;
  }
  .estimate-form .dropzone,
  .estimate-form .thumbs,
  .estimate-form .form-note,
  .estimate-form .sms-consent {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .estimate-form .thumbs {
    justify-content: center;
  }

  .location-info {
    align-items: center;
  }
  .location-points {
    align-items: center;
  }
  .location-points li {
    text-align: center;
  }
  .location-points li::before {
    display: none;
  }

  .service-card,
  .process-steps li {
    text-align: center;
  }

  /* Reviews: center card content + badge like the rest of mobile */
  .reviews-carousel {
    --review-card-w: min(22rem, calc(100vw - 3.5rem));
    padding: 0 0.5rem;
    max-width: 100%;
  }
  .reviews-viewport {
    /* equal fade both sides so the centered card reads as the hero */
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%
    );
  }
  .review-card {
    text-align: center;
    align-items: center;
    padding: 1.35rem 1.2rem 1.5rem;
  }
  .review-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    text-align: center;
    width: 100%;
  }
  .review-meta {
    align-items: center;
    text-align: center;
  }
  .review-meta strong {
    white-space: normal;
  }
  .review-stars {
    justify-content: center;
  }
  .review-body {
    text-align: center;
    width: 100%;
  }
  .reviews-badge {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.35rem 1rem;
  }
  .reviews-badge > div {
    text-align: center;
  }
  .reviews-badge .review-stars {
    justify-content: center;
  }

  .faq-item summary {
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
  }
  .faq-item p {
    text-align: center;
  }

  .footer-grid {
    justify-items: center;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    text-align: center;
  }

  /* hail page: full phone center */
  .hail-hero-copy,
  .hail-process .section-head,
  .hail-claims-how-inner,
  .hail-insurance-inner,
  .hail-step,
  .hail-step h3,
  .hail-step p,
  .hail-step ul {
    text-align: center;
  }
  .hail-step ul {
    padding-left: 0;
  }
  .hail-step ul li {
    text-align: center;
    padding-left: 0;
  }
  .hail-step ul li::before {
    position: static;
    display: inline-block;
    margin-right: 0.4rem;
    vertical-align: middle;
  }
  .hail-insurers {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }
}

/* ============ hail damage page ============ */
.hail-page {
  height: auto !important;
  max-height: none !important;
  overflow-x: hidden;
  overflow-y: auto !important;
  display: block !important;
  background: var(--paper);
}
.hail-page .site-header {
  position: sticky;
  top: 0;
  background: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  z-index: 50;
}
.hail-main { padding-bottom: 0; }

/* —— Hero —— */
.hail-hero {
  position: relative;
  padding: clamp(1.8rem, 5vh, 3.2rem) 0 0;
  background:
    radial-gradient(80% 60% at 90% 10%, rgba(var(--orange-rgb), 0.1), transparent 55%),
    radial-gradient(50% 40% at 10% 80%, rgba(var(--orange-rgb), 0.05), transparent 50%),
    var(--paper);
}
.hail-hero-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
}
.hail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin: 0 0 0.85rem;
}
.hail-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(var(--orange-rgb), 0.18);
}
.hail-hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.2vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1rem;
}
.hail-hero-sub {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  max-width: 34rem;
  line-height: 1.6;
  margin: 0;
}
.hail-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.hail-hero-actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hail-stats {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 36rem;
}
.hail-stats li {
  background: var(--panel);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.65rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hail-stats strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--orange-deep);
  line-height: 1.15;
}
.hail-stats span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.25;
}

/* Media card — full 1:1 clip, no tire crop from rounded overflow */
.hail-hero-media {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
}
.hail-hero-media-frame {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #fff;
  border: var(--border-card);
  box-shadow:
    0 24px 50px rgba(25, 20, 16, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  /* soft brand ring */
  outline: 3px solid rgba(var(--orange-rgb), 0.12);
  outline-offset: 4px;
  /* match the square video exactly */
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  /* inset so rounded corners never clip the car wheels */
  padding: 0.55rem 0.55rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hail-hero-media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* never cover/crop the graphic */
  object-position: center center;
  background: #fff;
  /* keep square; no extra radius that double-clips tires */
  border-radius: 0 !important;
}
.hail-hero-media-cap {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Insurer strip */
.hail-insurers {
  max-width: 1120px;
  margin: clamp(2rem, 5vh, 2.8rem) auto 0;
  padding: 1.15rem clamp(1.1rem, 4vw, 2.5rem) 1.4rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.hail-insurers > p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  flex: none;
}
.hail-insurers ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  flex: 1;
}
.hail-insurers li {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--panel);
  border: var(--border-card);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.75rem;
  box-shadow: var(--shadow-card);
}

/* Process steps polish */
.hail-process {
  padding: clamp(3rem, 8vh, 5rem) 0;
  background:
    linear-gradient(180deg, var(--panel-warm) 0%, var(--paper) 100%);
  border-top: 1px solid var(--line-soft);
}
.hail-process .section-head { padding: 0 clamp(1rem, 4vw, 3rem); }
.hail-process-note {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.hail-steps {
  list-style: none;
  max-width: 1120px;
  margin: 2.2rem auto 0;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.hail-step {
  position: relative;
  background: var(--panel);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.35rem 0.95rem 1rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hail-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.hail-step-num {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange-bright), var(--orange-deep));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(var(--orange-rgb), 0.35);
}
.hail-step h3 {
  margin-top: 0.45rem;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.hail-step-visual {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: linear-gradient(165deg, #fff 0%, var(--panel-warm) 100%);
  border: 1.5px solid rgba(var(--orange-rgb), 0.22);
  display: grid;
  place-items: center;
  color: var(--orange-deep);
}
.hail-step-visual svg { width: 44%; height: 44%; }
.hail-step ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  flex: 1;
}
.hail-step ul li {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
  padding-left: 0.85rem;
  position: relative;
}
.hail-step ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.hail-step ul li strong { color: var(--ink); }
.hail-step-time {
  margin-top: auto;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--orange-deep);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  justify-content: center;
  padding-top: 0.45rem;
  border-top: 1px solid var(--line-soft);
}
.hail-step-time small { font-weight: 500; color: var(--muted); }

/* Claim form band — centered card over shop video, one-screen app layout */
.hail-claim {
  position: relative;
  isolation: isolate;
  padding: clamp(1rem, 2.5vh, 1.6rem) 0;
  background: #e8ecef;
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
  /* Match viewport under sticky header so anchor CTAs can frame the form fully */
  min-height: calc(100dvh - var(--header-h, 5.5rem));
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* Leave room for sticky header when using native #hail-form fallback */
  scroll-margin-top: calc(var(--header-h, 5.5rem) + 0.35rem);
}
.hail-claim-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #e8ecef;
}
.hail-claim-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.hail-claim-bg-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 248, 244, 0.8) 0%, rgba(250, 248, 244, 0.62) 45%, rgba(250, 248, 244, 0.84) 100%),
    radial-gradient(70% 55% at 50% 28%, rgba(255, 255, 255, 0.4), transparent 70%);
}
.hail-claim-stage {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 1.75rem));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  max-height: calc(100dvh - var(--header-h, 5.5rem) - 1.2rem);
  scroll-margin-top: calc(var(--header-h, 5.5rem) + 0.5rem);
  scroll-margin-bottom: 0.75rem;
}
.hail-claim-intro {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto;
  flex: none;
}
.hail-claim-intro .section-kicker {
  margin-bottom: 0.2rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}
.hail-claim-intro h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin: 0 0 0.25rem;
  line-height: 1.12;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}
.hail-claim-lead {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.35;
  opacity: 0.78;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
/* legacy selectors */
.hail-claim-grid { display: contents; }
.hail-claim-copy { display: none; }
.hail-claim-points { display: none; }

/* Phone line INSIDE the card, under submit — never an orange pill */
.hail-page .estimate-form .hail-claim-phone {
  margin: 0.15rem 0 0;
  padding: 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--muted);
  text-align: center;
  opacity: 1;
  text-shadow: none;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: block;
  width: 100%;
}
.hail-page .estimate-form .hail-claim-phone a {
  color: var(--orange-deep);
  font-weight: 800;
  text-decoration: none;
}
.hail-page .estimate-form .hail-claim-phone a:hover { color: var(--orange); }
.hail-claim-phone-sep {
  margin: 0 0.3rem;
  opacity: 0.45;
}
.hail-form-head {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0;
}
.hail-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  margin: 0;
  line-height: 1.15;
}
.hail-form-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Wider card: fields left · photos right */
.hail-page .estimate-form {
  border-radius: var(--radius-xl);
  min-width: 0;
  width: 100%;
  max-width: 920px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: clip;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  gap: 0.65rem;
  padding: 1.05rem 1.25rem 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 22px 50px rgba(25, 20, 16, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.hail-form-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem 1.25rem;
  align-items: stretch;
  min-width: 0;
}
.hail-form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
/* Fills empty space under fields (balances the photos column) */
.hail-form-aside-notes {
  margin-top: auto;
  padding: 0.75rem 0.85rem;
  border-radius: calc(var(--radius-md) + 2px);
  background: linear-gradient(165deg, rgba(var(--orange-rgb), 0.07) 0%, rgba(250, 248, 244, 0.95) 48%, #fff 100%);
  border: 1px solid rgba(var(--orange-rgb), 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hail-form-aside-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.hail-form-aside-title + .hail-form-aside-title {
  margin-top: 0.35rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(25, 20, 16, 0.06);
}
.hail-form-aside-list,
.hail-form-aside-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}
.hail-form-aside-list li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 500;
}
.hail-form-aside-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 2.5px;
  background: var(--orange);
  transform: skewX(-18deg);
  border-radius: 1px;
}
.hail-form-aside-list li strong {
  font-weight: 700;
  color: var(--ink);
}
.hail-form-aside-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 500;
}
.hail-form-aside-steps li span {
  flex: none;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  margin-top: 0.05rem;
}
.hail-form-foot {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
  padding-top: 0.15rem;
  border-top: 1px solid var(--line-soft);
}
.hail-page .estimate-form #hailSubmit {
  flex: none;
  position: relative;
  z-index: 1;
  margin-top: 0;
}
.hail-page .estimate-form .form-row,
.hail-page .estimate-form .field {
  min-width: 0;
}
.hail-page .estimate-form .form-row {
  gap: 0.5rem;
}
.hail-page .estimate-form .field {
  gap: 0.22rem;
}
.hail-page .estimate-form .field label {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}
.hail-page .estimate-form .field label em {
  font-style: normal;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  opacity: 0.75;
}
.hail-page .estimate-form input,
.hail-page .estimate-form select,
.hail-page .estimate-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  /* keep ≥16px to avoid iOS zoom; tighten vertical padding only */
  padding: 0.5rem 0.85rem;
  min-height: 2.45rem;
}
.hail-page .estimate-form .btn {
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 0;
  min-height: 2.65rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  font-size: 0.95rem;
}
.hail-page .estimate-form .sms-consent {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.35;
  text-align: center;
}

.hail-faq {
  padding: clamp(2.8rem, 7vh, 4.5rem) 0 clamp(3.5rem, 8vh, 5.5rem);
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 1000px) {
  .hail-steps { grid-template-columns: repeat(3, 1fr); }
  .hail-stats { grid-template-columns: repeat(2, 1fr); max-width: 22rem; }
}
@media (max-width: 800px) {
  .hail-hero-layout { grid-template-columns: 1fr; gap: 1.1rem; }
  .hail-hero-media { order: -1; }
  .hail-hero-media-frame { max-width: 300px; }
  .hail-steps { grid-template-columns: 1fr 1fr; margin-top: 1.3rem; gap: 0.55rem; }
  .hail-hero { padding: clamp(1.2rem, 3.5vh, 2rem) 0 0; }
  .hail-process,
  .hail-claims-how,
  .hail-insurance {
    padding: clamp(1.8rem, 4.5vh, 2.8rem) 0;
  }
  .hail-step { padding: 1rem 0.75rem 0.85rem; }
  .hail-hero-copy h1 {
    text-align: center;
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
  }
  .hail-hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hail-eyebrow { justify-content: center; width: 100%; }
  .hail-hero-actions { justify-content: center; }
  .hail-stats { margin-left: auto; margin-right: auto; margin-top: 1.1rem; }
}
@media (max-width: 520px) {
  .hail-steps { grid-template-columns: 1fr; }
  .hail-hero-actions .btn { width: 100%; justify-content: center; }
  .hail-stats { grid-template-columns: 1fr 1fr; }
  .hail-insurers { flex-direction: column; align-items: center; }
}

/* Hail: how claims work + insurance assistance */
.hail-claims-how,
.hail-insurance {
  padding: clamp(3rem, 7vh, 5rem) 0;
}
.hail-claims-how {
  background: var(--panel-warm);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.hail-insurance {
  background: var(--paper);
}
.hail-claims-how-inner,
.hail-insurance-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.hail-prose {
  margin: 1.2rem auto 0;
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: center;
}
.hail-claim-flow {
  list-style: none;
  margin: 2rem auto 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}
.hail-claim-flow li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--panel);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-card);
}
.hail-claim-flow-num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(145deg, var(--orange-bright), var(--orange-deep));
  flex: none;
}
.hail-claim-flow h3 {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}
.hail-claim-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hail-insure-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hail-insure-grid li {
  background: var(--panel);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow-card);
}
.hail-insure-grid h3 {
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
  color: var(--ink);
}
.hail-insure-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.hail-insure-note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 700px) {
  .hail-insure-grid { grid-template-columns: 1fr; }
}

/* ============ legal pages (privacy, etc.) ============ */
.legal-page {
  height: auto !important;
  max-height: none !important;
  overflow-x: hidden;
  overflow-y: auto !important;
  display: block !important;
}
.legal-page .site-header {
  position: sticky;
  top: 0;
  background: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 5vh, 3.5rem) clamp(1.1rem, 4vw, 2rem) 3.5rem;
}
.legal-main h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  color: var(--ink);
  line-height: 1.1;
  margin: 0.25rem 0 0.5rem;
}
.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.6rem;
}
.legal-main h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 1.85rem 0 0.55rem;
  letter-spacing: 0.01em;
}
.legal-main p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 0.85rem;
}
.legal-main p strong,
.legal-main li strong { color: var(--text); font-weight: 600; }
.legal-main ul {
  margin: 0.35rem 0 1rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}
.legal-main a {
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration: none;
}
.legal-main a:hover { color: var(--orange); text-decoration: underline; }
.legal-back {
  margin-top: 2.2rem !important;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.92rem !important;
}
.footer-bottom a {
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--orange); }

/* Photos column (right on desktop) — tip clip not squashed */
.hail-photos {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--line-soft);
  border-radius: calc(var(--radius-lg) - 4px);
  background: linear-gradient(180deg, #faf8f4 0%, #fff 55%);
  min-width: 0;
  max-width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.hail-photos-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
  text-align: center;
}
.hail-photos-opt {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--muted);
}
.hail-photos-sub {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}
.hail-photos-demo {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: transparent;
  border: 0;
  /* no fixed aspect box — video keeps its own ratio, no cream letterbox */
  aspect-ratio: auto;
  max-height: none;
  flex: 0 0 auto;
  min-height: 0;
}
.hail-photos-demo-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  vertical-align: middle;
}
.panel-photo-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.4rem;
  min-width: 0;
}
.panel-photo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  border: 1.5px solid var(--line-soft);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 2.45rem;
}
.panel-photo-btn svg { width: 20px; height: 20px; flex: none; }
.panel-photo-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.panel-photo-btn:not(:disabled):active { transform: scale(0.98); }
.panel-photo-btn-cam {
  background: linear-gradient(120deg, var(--orange-bright), var(--orange) 55%, var(--orange-deep));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(var(--orange-rgb), 0.28);
}
.panel-photo-btn-lib {
  background: #fff;
  color: var(--ink);
  border-color: rgba(25, 20, 16, 0.14);
}
.panel-photo-btn-lib:not(:disabled):hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}
.panel-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.45rem 0.75rem;
  border: 1.5px dashed rgba(var(--orange-rgb), 0.45);
  border-radius: var(--radius-md);
  background: rgba(var(--orange-rgb), 0.04);
  color: var(--orange-deep);
  cursor: pointer;
  text-align: center;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.panel-dropzone:hover,
.panel-dropzone.dragover {
  border-color: var(--orange);
  background: rgba(var(--orange-rgb), 0.09);
}
.panel-dropzone.is-full { opacity: 0.5; pointer-events: none; }
.panel-dropzone-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--orange-deep);
}
.panel-dropzone-hint {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.panel-thumbs,
.thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-width: 0;
}
.thumb {
  position: relative;
  width: 68px;
  height: 68px;
  border: var(--border-card);
  border-radius: var(--radius-xs);
  overflow: hidden;
  flex: none;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb button {
  position: absolute;
  top: 2px; right: 2px;
  width: 20px; height: 20px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--orange-deep);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(25, 20, 16, 0.25);
}

/* Camera overlay */
body.cam-open { overflow: hidden !important; }
.cam-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
}
.cam-overlay[hidden] { display: none !important; }
.cam-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  background: #000;
}
.cam-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.cam-error {
  position: absolute;
  left: 1rem; right: 1rem; top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 16, 12, 0.88);
  color: #fff;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.45;
  z-index: 2;
}
.cam-chrome {
  position: absolute;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  padding-top: calc(0.75rem + env(safe-area-inset-top, 0px));
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}
.cam-chrome-top {
  top: 0;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent);
}
.cam-chrome-bottom {
  bottom: 0;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}
.cam-chrome-top {
  justify-content: flex-end;
  gap: 0.75rem;
}
.cam-chrome-top .cam-hint {
  margin-right: auto;
  text-align: left;
}
.cam-hint {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  flex: 1;
}
.cam-btn-spacer {
  width: 44px;
  height: 44px;
  flex: none;
  visibility: hidden;
}
.cam-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.16);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex: none;
}
.cam-btn:active { transform: scale(0.94); }
.cam-close { font-size: 1.25rem; line-height: 1; }
.cam-shutter {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 4px solid #fff;
  background: transparent;
  padding: 5px;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.25);
}
.cam-shutter span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.12s ease, background 0.12s ease;
}
.cam-shutter:active span {
  transform: scale(0.88);
  background: var(--orange, #ff6b33);
}

/* Hail form: never let two-col inputs overflow the card */
.hail-page .hail-form.estimate-form,
.hail-page form.estimate-form {
  overflow-x: clip;
  overflow-y: visible;
}
.hail-page .estimate-form .form-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.55rem;
}
@media (max-width: 520px) {
  .hail-page .estimate-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Short viewports: slightly tighter, keep tip clip readable */
@media (max-height: 820px) {
  .hail-claim-lead { display: none; }
  .hail-claim-intro h2 { font-size: 1.35rem; }
  .hail-page .estimate-form {
    gap: 0.5rem;
    padding: 0.85rem 1rem 0.9rem;
  }
  .hail-photos-demo { min-height: 0; }
  .panel-dropzone { padding: 0.35rem 0.65rem; }
  .hail-page .estimate-form .sms-consent { font-size: 0.66rem; }
}

/* Phone: Instant Quote style — left labels/inputs, vertical stack, no centered app look */
@media (max-width: 860px) {
  .hail-claim {
    min-height: 0;
    padding: 0.55rem 0 1.15rem;
    align-items: flex-start;
  }
  .hail-claim-stage {
    width: min(100%, calc(100% - 1rem));
    gap: 0.4rem;
    max-height: none;
  }
  .hail-claim-intro {
    text-align: left;
    width: 100%;
    padding: 0 0.15rem;
  }
  .hail-claim-intro .section-kicker {
    font-size: 0.64rem;
    margin-bottom: 0.15rem;
    text-align: left;
  }
  .hail-claim-intro h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.55rem);
    margin-bottom: 0.2rem;
    text-align: left;
  }
  .hail-claim-lead {
    display: none;
  }
  .hail-form-body {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .hail-form-fields {
    gap: 0.55rem;
  }
  /* Trust box under fields is desktop-only filler — hide on phone */
  .hail-form-aside-notes {
    display: none !important;
  }
  .hail-form-head {
    text-align: left;
    gap: 0.15rem;
    margin-bottom: 0.15rem;
  }
  /* Match quote wizard: labels above fields, left-aligned, NOT centered */
  .hail-page .estimate-form .hail-form-title,
  .hail-page .estimate-form .hail-form-sub {
    text-align: left;
  }
  .hail-page .estimate-form .field,
  .hail-page .estimate-form .field label,
  .hail-page .estimate-form .field input,
  .hail-page .estimate-form .field select,
  .hail-page .estimate-form .field textarea,
  .hail-page .estimate-form .field-error {
    text-align: left !important;
  }
  .hail-page .estimate-form .form-row {
    grid-template-columns: 1fr !important;
    gap: 0.55rem;
  }
  .hail-page .estimate-form .field label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  .hail-page .estimate-form input,
  .hail-page .estimate-form select,
  .hail-page .estimate-form textarea {
    min-height: 2.85rem;
    font-size: 16px;
    padding: 0.7rem 0.95rem;
  }
  .hail-page .hail-photos {
    align-items: stretch;
    text-align: left;
    height: auto;
    padding: 0.7rem 0.75rem;
  }
  .hail-page .hail-photos-title,
  .hail-page .hail-photos-sub {
    text-align: left;
  }
  .hail-photos-demo {
    display: none !important;
  }
  .hail-photos-sub {
    font-size: 0.78rem;
  }
  .hail-insurers {
    align-items: center !important;
  }
  .hail-page .estimate-form {
    gap: 0.65rem;
    padding: 1rem 0.95rem 1.05rem;
    border-radius: 22px;
    flex: none;
    overflow: visible;
    max-width: 100%;
  }
  .hail-form-foot {
    gap: 0.45rem;
    padding-top: 0.2rem;
  }
  .hail-page .estimate-form .sms-consent {
    font-size: 0.72rem;
    line-height: 1.35;
    text-align: left;
  }
  .hail-page .estimate-form .btn {
    min-height: 2.9rem;
    width: 100%;
  }
  .panel-photo-actions {
    grid-template-columns: 1fr 1fr;
  }
  .panel-photo-btn {
    min-height: 2.7rem;
    font-size: 0.84rem;
  }
  .panel-dropzone {
    padding: 0.65rem 0.75rem;
    text-align: center;
  }
  .hail-claim-phone-sep { display: inline; margin: 0 0.25rem; }
  .hail-page .estimate-form .hail-claim-phone {
    display: block;
    text-align: left;
    font-size: 0.8rem;
  }
  .hail-page .estimate-form .form-note {
    text-align: left;
  }
}
