:root {
  --red: #b31317;
  --red-deep: #8c0c10;
  --black: #090909;
  --charcoal: #151515;
  --white: #ffffff;
  --gray-50: #f6f7f9;
  --gray-100: #eceef1;
  --gray-200: #d7dce2;
  --gray-500: #667085;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.16);
  --shadow-md: 0 16px 32px rgba(0, 0, 0, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #141414;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skipLink {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skipLink:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.navWrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand__eyebrow {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
}
.brand__name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.primaryNav {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-weight: 700;
  font-size: 14px;
}
.primaryNav a {
  position: relative;
}
.primaryNav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.primaryNav a:hover::after,
.primaryNav a:focus-visible::after { transform: scaleX(1); }

.headerCtas {
  display: flex;
  gap: 10px;
}
.menuToggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
  background: var(--white);
  align-items: center;
  justify-content: center;
}
.menuToggle span {
  width: 18px;
  height: 2px;
  background: var(--black);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--small { min-height: 42px; padding-inline: 14px; }
.btn--primary {
  background: linear-gradient(135deg, var(--red), #d81e23);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(179, 19, 23, 0.28);
}
.btn--dark { background: var(--black); color: var(--white); }
.btn--ghost {
  background: rgba(0,0,0,.03);
  border-color: rgba(0,0,0,.08);
}

.ticker {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker__track {
  display: flex;
  gap: 28px;
  padding: 12px 0;
  width: max-content;
  animation: ticker 26s linear infinite;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
}
.ticker__track span::before {
  content: "•";
  color: var(--red);
  margin-right: 28px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(179,19,23,.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.03) 100%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  padding: 44px 0 56px;
  align-items: center;
}
.hero__content,
.hero__media { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(179,19,23,.08);
  border: 1px solid rgba(179,19,23,.12);
  color: var(--red);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
  font-size: 13px;
}
.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: .97;
  letter-spacing: -0.05em;
  max-width: 10ch;
}
.hero__lead {
  max-width: 58ch;
  margin: 0;
  color: #3a3f47;
  font-size: 1.06rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.contactStrip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.contactStrip a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-md);
  font-weight: 700;
}
.trustRow {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.trustCard {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-md);
}
.trustCard strong {
  display: block;
  margin-bottom: 6px;
}
.trustCard span { color: var(--gray-500); font-size: .95rem; line-height: 1.55; }

.hero__media {
  display: grid;
  gap: 18px;
}
.heroCard {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,.06);
  background: var(--white);
}
.heroCard--van img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.ownerCard {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px;
  padding: 26px;
  background: linear-gradient(135deg, var(--black), #202020 72%);
  color: var(--white);
}
.ownerCard__eyebrow {
  color: #ff8b8e;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
}
.ownerCard h2 {
  margin: 8px 0 10px;
  font-size: 1.55rem;
  line-height: 1.1;
}
.ownerCard p { margin: 0; color: rgba(255,255,255,.82); line-height: 1.65; }
.ownerCard__placeholder {
  min-height: 190px;
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255,255,255,.74);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  padding: 20px;
  font-weight: 700;
}

.section { padding: 88px 0; }
.section--light { background: var(--white); }
.section--dark { background: var(--black); color: var(--white); }
.section--gallery { background: linear-gradient(180deg, #fafafa 0%, #f0f2f5 100%); }
.section--accent { background: linear-gradient(180deg, #121212 0%, #1f1f1f 100%); color: var(--white); }
.section--contact { background: var(--gray-50); }
.section--subtle { background: #fbfbfc; }
.sectionIntro { max-width: 760px; margin-bottom: 34px; }
.sectionIntro--center { text-align: center; margin-inline: auto auto; }
.sectionIntro__eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}
.sectionIntro h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.sectionIntro p { margin: 0; color: inherit; opacity: .78; line-height: 1.7; }
.section--dark .sectionIntro p,
.section--accent .sectionIntro p { opacity: .82; }

.flipGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.flipCard {
  perspective: 1200px;
  min-height: 270px;
  cursor: pointer;
}
.flipCard__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 270px;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.flipCard:hover .flipCard__inner,
.flipCard.is-flipped .flipCard__inner,
.flipCard:focus-visible .flipCard__inner { transform: rotateY(180deg); }
.flipCard__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.06);
}
.flipCard__face--front {
  background: linear-gradient(165deg, #d82525 0%, #f3f4f6 100%);
}
.flipCard__face--back {
  transform: rotateY(180deg);
  background: linear-gradient(150deg, var(--black), #252525);
  color: linear-gradient(150deg, var(--black), #252525);
}
.flipCard__face h3 { margin: 18px 0 10px; font-size: 1.45rem; }
.flipCard__face p { margin: 0; line-height: 1.65; color: inherit; opacity: .84; }
.flipCard__tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(179,19,23,.08);
  color: var(--red);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.flipCard__price {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ff9a9d;
  margin-bottom: 10px !important;
}

.featureBand {
  margin-top: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(179,19,23,.1), rgba(0,0,0,.03));
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-md);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.featureBand h3 { margin: 0 0 10px; font-size: 1.8rem; }
.featureBand p { margin: 0; color: var(--gray-500); line-height: 1.65; }
.featureBand__cta { display: grid; gap: 14px; justify-items: end; }
.featureBand__price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
}
.featureBand__price span { font-size: .95rem; color: var(--gray-500); font-weight: 700; }

.stepsGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.stepCard {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
}
.stepCard span {
  display: inline-flex;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 18px;
  color: #b31317;
}
.stepCard h3 { margin: 0 0 8px; font-size: 1.35rem; color: white; }
.stepCard p { margin: 0; color: rgba(255,255,255,.76); line-height: 1.65; }

.splitSection {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: start;
}
.countyGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.countyGrid span {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  color: #1b1f27;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}
.infoPanel {
  border-radius: 30px;
  padding: 28px;
  background: linear-gradient(135deg, var(--red), #d81e23);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.infoPanel h3 { margin-top: 0; margin-bottom: 14px; font-size: 1.6rem; }
.infoPanel ul { margin: 0; padding-left: 18px; line-height: 1.85; }

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.galleryItem {
  border-radius: 24px;
  overflow: hidden;
  min-height: 240px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-md);
}
.galleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galleryItem--wide {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 500px;
}
.galleryItem--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffffff, #eceff3);
  color: var(--gray-500);
  font-weight: 800;
  text-align: center;
}

.reviewGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.reviewCard {
  padding: 26px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-md);
}
.reviewCard p { color: var(--gray-500); line-height: 1.75; }
.reviewCard strong { display: block; margin-top: 16px; }
.stars {
  color: var(--red);
  font-size: 1.1rem;
  letter-spacing: .18em;
  margin-bottom: 14px;
}

.bookingPanel {
  display: grid;
  gap: 24px;
}
.squareShell {
  background: rgba(255,255,255,.98);
  color: #111;
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.squareShell__intro {
  margin-top: 0;
  margin-bottom: 18px;
  color: #31353b;
}

.faqList {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faqList details {
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-md);
  padding: 0 20px;
}
.faqList summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  padding: 22px 4px;
}
.faqList summary::-webkit-details-marker { display: none; }
.faqList details p {
  margin: 0 0 20px;
  color: var(--gray-500);
  line-height: 1.75;
}

.contactGrid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: start;
}
.contactActions {
  display: grid;
  gap: 14px;
}
.contactAction {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.contactAction span {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}
.contactAction strong { text-align: right; }
.contactAside {
  border-radius: 30px;
  background: linear-gradient(180deg, var(--black), #232323);
  color: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.contactAside img {
  width: min(240px, 100%);
  border-radius: 18px;
  margin-bottom: 16px;
}
.contactAside p {
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin: 0 0 10px;
}

.policyGrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.policyGrid a {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  padding: 18px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.siteFooter {
  background: var(--black);
  color: var(--white);
  padding: 28px 0 96px;
}
.footerWrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footerWrap p,
.footerFineprint { color: rgba(255,255,255,.7); }
.footerLinks {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 700;
}
.footerFineprint {
  margin-top: 16px;
  font-size: 14px;
}

.mobileBar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0,0,0,.16);
  border: 1px solid rgba(0,0,0,.08);
}
.mobileBar a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 800;
  background: #f4f5f7;
}
.mobileBar__book { background: var(--red) !important; color: var(--white); }

@media (max-width: 1080px) {
  .primaryNav { gap: 14px; font-size: 13px; }
  .hero__grid,
  .splitSection,
  .contactGrid { grid-template-columns: 1fr; }
  .flipGrid,
  .reviewGrid,
  .galleryGrid,
  .stepsGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .policyGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .navWrap {
    grid-template-columns: auto 1fr auto;
  }
  .menuToggle { display: inline-flex; }
  .primaryNav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,.08);
  }
  .primaryNav.is-open { display: flex; }
  .headerCtas { display: none; }
  .hero__grid { padding: 32px 0 40px; }
  .ownerCard { grid-template-columns: 1fr; }
  .featureBand { flex-direction: column; align-items: flex-start; }
  .featureBand__cta { justify-items: start; }
  .galleryItem--wide { grid-column: auto; grid-row: auto; min-height: 260px; }
  .mobileBar { display: grid; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 68px 0; }
  .hero h1 { max-width: none; }
  .trustRow,
  .flipGrid,
  .reviewGrid,
  .galleryGrid,
  .stepsGrid,
  .policyGrid { grid-template-columns: 1fr; }
  .contactStrip { gap: 8px; }
  .contactStrip a { flex: 1 1 calc(50% - 8px); justify-content: center; text-align: center; }
  .contactAction { flex-direction: column; align-items: flex-start; }
  .contactAction strong { text-align: left; }
  .siteFooter { padding-bottom: 110px; }
}


/* 2026-03 refresh */
:root {
  --page-gray: #d9d9d9;
  --section-gray: #d8d8d8;
  --section-gray-2: #cdcdcd;
  --card-gray: rgba(255, 255, 255, 0.72);
}

body {
  background: var(--page-gray);
}

.siteHeader {
  background: rgba(217, 217, 217, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ticker {
  background: linear-gradient(90deg, #111 0%, #1a1a1a 45%, #111 100%);
}

.ticker__track {
  padding: 22px 0;
  gap: 34px;
  font-size: 18px;
}

.ticker__track span::before {
  margin-right: 34px;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(179,19,23,.16), transparent 32%),
    linear-gradient(180deg, #dcdcdc 0%, #cfcfcf 100%);
}

.contactStrip a,
.trustCard,
.heroCard,
.stepCard,
.infoPanel,
.reviewCard,
.contactAction,
.contactAside,
.squareShell,
.faqList details,
.policyGrid,
.countyGrid span,
.galleryItem,
.serviceGuide,
.flipCard__face {
  background: var(--card-gray);
}

.section--light {
  background: linear-gradient(180deg, var(--section-gray) 0%, #d4d4d4 100%);
}

.section--gallery,
.section--subtle,
.section--contact {
  background: linear-gradient(180deg, var(--section-gray-2) 0%, #c6c6c6 100%);
}

.section--dark {
  background: linear-gradient(135deg, #121212 0%, #232323 100%);
}

.section--accent {
  background: linear-gradient(135deg, #8c0c10 0%, #b31317 100%);
}

.serviceGuide {
  display: grid;
  gap: 18px;
  margin: 24px 0 28px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-md);
}

.serviceGuide__intro h3 {
  margin: 6px 0 8px;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.serviceGuide__intro p:last-child {
  margin: 0;
  color: #373737;
  line-height: 1.65;
}

.serviceGuide__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.serviceGuide__chip {
  border: 1px solid rgba(0,0,0,.1);
  background: rgba(255,255,255,.82);
  color: #161616;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.serviceGuide__chip:hover,
.serviceGuide__chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(179,19,23,.4);
}

.serviceGuide__chip.is-active {
  background: linear-gradient(135deg, var(--red), #d81e23);
  color: #fff;
  border-color: transparent;
}

.flipCard__hint {
  color: #4a4f58;
  font-size: .94rem;
  line-height: 1.55;
}

.flipCard.is-muted {
  opacity: .42;
  transform: scale(.985);
  filter: grayscale(.12);
}

.flipCard.is-recommended .flipCard__face--front {
  border: 1px solid rgba(179,19,23,.26);
  box-shadow: 0 18px 34px rgba(179,19,23,.14);
}

.contactAction--social {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.socialIcon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(179,19,23,.12), rgba(0,0,0,.06));
  border: 1px solid rgba(0,0,0,.08);
  flex: 0 0 auto;
}

.socialIcon svg {
  width: 22px;
  height: 22px;
  fill: var(--red);
}

.socialLabel {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.contactAction--social strong {
  font-size: 1rem;
}

@media (max-width: 900px) {
  .ticker__track {
    padding: 14px 0;
    font-size: 14px;
  }

  .serviceGuide {
    padding: 20px;
  }
}


:root {
  --page-gray: #dde1e6;
  --page-gray-alt: #cfd5dc;
  --card-text: #1b1f27;
}

body {
  background: var(--page-gray);
  color: var(--card-text);
}

.siteHeader {
  background: rgba(221, 225, 230, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(179,19,23,.16), transparent 34%),
    linear-gradient(180deg, #e5e8ec 0%, #d8dde3 100%);
}

.section--light {
  background: var(--page-gray);
}

.section--gallery,
.section--contact {
  background: var(--page-gray-alt);
}

.serviceGuide,
.vehicleLookup,
.reviewCard,
.contactAction,
.contactAside,
.faqList details,
.galleryItem,
.heroCard,
.trustCard,
.squareShell,
.infoPanel,
.stepCard,
.featureBand {
  color: var(--card-text);
}

.vehicleLookup {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(248,250,252,.94));
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-md);
  margin-bottom: 26px;
}

.vehicleLookup__intro h3 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}

.vehicleLookup__intro p:last-child,
.vehicleLookup__status {
  margin: 0;
  color: #4a5160;
  line-height: 1.65;
}

.vehicleLookup__form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fieldGroup {
  display: grid;
  gap: 8px;
}

.fieldGroup span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}

.fieldGroup select {
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  color: var(--card-text);
  padding: 0 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.fieldGroup select:disabled {
  cursor: not-allowed;
  opacity: .7;
  background: #eef1f4;
}

.vehicleLookup__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.vehicleLookup__status {
  min-height: 24px;
  font-weight: 600;
}

.vehicleLookup__status.is-error {
  color: #8c0c10;
}

.vehicleLookup__status.is-success {
  color: #1f4d2f;
}

.vehicleResult {
  border-radius: 26px;
  background: linear-gradient(155deg, #141414, #22252b);
  color: #fff;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.vehicleResult__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.vehicleResult__eyebrow {
  margin: 0 0 6px;
  color: #d81e23;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vehicleResult__head h4 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.vehicleResult__badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #ffd4d5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vehicleResult__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vehicleMetric {
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  padding: 18px;
}

.vehicleMetric span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.vehicleMetric strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.35;
}

.vehicleResult__disclaimer {
  margin: 18px 0 0;
  color: rgba(255,255,255,.74);
  line-height: 1.7;
}

.flipCard__face--front {
  background: linear-gradient(165deg, #ffffff 0%, #eef2f6 100%);
  color: var(--card-text);
}

.flipCard__face--back {
  background: linear-gradient(150deg, #171717, #2a2d33);
  color: #ffffff;
}

.flipCard__face--back p,
.flipCard__face--back li {
  color: rgba(255,255,255,.84);
}

.reviewCard,
.faqList details,
.contactAction,
.galleryItem,
.squareShell,
.trustCard,
.heroCard {
  background: rgba(255,255,255,.95);
}

.stepCard {
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
}

#service-area .sectionIntro p,
#gallery .sectionIntro p,
#reviews .sectionIntro p,
#contact .sectionIntro p,
.contactAside p,
.reviewCard p,
.faqList details p,
.featureBand p,
.trustCard span {
  opacity: 1;
  color: #4d5564;
}

@media (max-width: 980px) {
  .vehicleLookup__form,
  .vehicleResult__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .vehicleLookup {
    padding: 22px;
  }

  .vehicleLookup__form,
  .vehicleResult__grid {
    grid-template-columns: 1fr;
  }

  .vehicleResult__head {
    flex-direction: column;
  }
}
