:root {
  --black: #070707;
  --black-2: #0d0d0f;
  --charcoal: #151518;
  --gray-900: #202024;
  --gray-700: #555862;
  --gray-500: #9b9da5;
  --gray-200: #e9e9ec;
  --white: #ffffff;
  --red: #e21d2b;
  --red-dark: #a91019;
  --red-soft: rgba(226, 29, 43, 0.14);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1120px, calc(100vw - 32px));
  --header-height: 76px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 9999;
  background: var(--red);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { width: var(--container); margin-inline: auto; }
.section { padding: 84px 0; }
.section-dark { color: var(--white); background: var(--black); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(7, 7, 7, 0.8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: contain;
  background: #0b0b0b;
}
.brand span { font-size: 0.92rem; }
.brand strong { color: var(--red); }

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}
.site-nav {
  position: fixed;
  inset: var(--header-height) 16px auto 16px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  background: rgba(13, 13, 15, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: flex; }
.site-nav a {
  color: var(--gray-200);
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.94rem;
}
.site-nav a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.site-nav .nav-cta {
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: 58px 0 54px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 24%, rgba(226, 29, 43, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(7,7,7,0.72), rgba(7,7,7,0.96)),
    url('../images/hero-corvette.jpg') center/cover no-repeat;
  filter: saturate(1.08);
  transform: scale(1.02);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(7,7,7,0.96));
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 34px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.hero h1,
.section-heading h2,
.area-copy h2,
.about-copy h2,
.quote-copy h2,
.faq-intro h2 {
  margin: 0;
  font-size: clamp(2.25rem, 9vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}
.hero h1 { max-width: 920px; }
.hero-lede {
  max-width: 650px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.04rem, 2.4vw, 1.28rem);
  margin: 20px 0 0;
}
.hero-actions,
.about-actions,
.quote-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 16px 36px rgba(226,29,43,.28); }
.btn-primary:hover { background: #f12c39; }
.btn-secondary { background: var(--white); color: var(--black); }
.btn-outline { background: transparent; color: var(--black); border-color: rgba(7,7,7,.18); }
.section-dark .btn-outline { color: var(--white); border-color: var(--line); }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.trust-list li {
  color: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 800;
}
.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: var(--black-2);
}
.hero-card img {
  width: 100%;
  height: 100%;
  max-height: 690px;
  object-fit: cover;
  object-position: center 48%;
}
.hero-card-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7,7,7,0.78);
  backdrop-filter: blur(14px);
}
.hero-card-badge span { color: var(--gray-500); display: block; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.hero-card-badge strong { color: var(--white); font-size: 1.05rem; }

.quick-contact {
  background: var(--red);
  color: var(--white);
}
.quick-contact-grid {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.18);
}
.quick-contact a {
  background: var(--red);
  padding: 18px 0;
}
.quick-contact span { display: block; opacity: .8; font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.quick-contact strong { display: block; font-size: 1rem; }

.section-heading {
  max-width: 750px;
  margin-bottom: 32px;
}
.section-heading h2 { font-size: clamp(2rem, 7vw, 4.25rem); color: inherit; }
.section-heading p {
  margin: 16px 0 0;
  color: var(--gray-700);
  font-size: 1.06rem;
}
.section-dark .section-heading p { color: rgba(255,255,255,0.7); }

.services-grid,
.why-grid {
  display: grid;
  gap: 14px;
}
.service-card,
.why-card,
.area-card,
.before-card,
.quote-form {
  background: var(--white);
  border: 1px solid rgba(7,7,7,0.08);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,.06);
}
.service-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.service-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  font-size: .8rem;
  margin-bottom: 22px;
}
.service-card h3,
.why-card h3,
.before-card h3,
.area-card h3,
.site-footer h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.service-card p,
.why-card p,
.before-card p,
.area-card p { margin: 0; color: var(--gray-700); }

.gallery-section { position: relative; overflow: hidden; }
.gallery-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -160px;
  top: 120px;
  border-radius: 50%;
  background: var(--red-soft);
  filter: blur(10px);
}
.gallery-grid {
  position: relative;
  display: grid;
  gap: 14px;
}
.gallery-item {
  position: relative;
  min-height: 280px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-2);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: var(--white);
  background: rgba(7,7,7,.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
  text-align: left;
}

.before-section { background: #f0f0f2; }
.before-grid { display: grid; gap: 18px; }
.before-card { padding: 14px; }
.compare-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.compare-pair figure {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--black);
}
.compare-pair img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.compare-pair figcaption {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(7,7,7,.76);
  color: var(--white);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.compare-pair figure:nth-child(2) figcaption { background: var(--red); }
.before-card h3,
.before-card p { padding-inline: 6px; }

.service-area-section,
.faq-section { background: linear-gradient(135deg, #070707, #151518); }
.area-grid,
.about-grid,
.quote-grid,
.faq-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.area-copy h2,
.faq-intro h2,
.quote-copy h2,
.about-copy h2 { font-size: clamp(2rem, 7vw, 4rem); }
.area-copy p,
.faq-intro p,
.quote-copy p,
.about-copy p {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 1.04rem;
}
.about-copy p,
.quote-copy p { color: var(--gray-700); }
.area-card {
  background: rgba(255,255,255,0.06);
  border-color: var(--line);
  color: var(--white);
  box-shadow: none;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.area-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-weight: 800;
}

.about-section { background: var(--white); }
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,.16);
}
.about-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.why-section { background: #f7f7f8; }
.why-card { border-left: 4px solid var(--red); }

.faq-grid { align-items: start; }
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
summary {
  padding: 18px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
}
details p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(255,255,255,0.72);
}

.quote-section { background: var(--white); }
.quote-form {
  display: grid;
  gap: 14px;
  background: #f7f7f8;
}
.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(7,7,7,0.12);
  background: var(--white);
  color: var(--black);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}
.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}
.form-note,
.tax-note {
  margin: 14px 0 0;
  color: var(--gray-700);
  font-size: .92rem;
}
.form-note a { color: var(--red-dark); font-weight: 900; }

.site-footer {
  padding: 52px 0 20px;
  background: #050505;
}
.footer-grid { display: grid; gap: 30px; }
.footer-brand { margin-bottom: 14px; }
.site-footer p { color: rgba(255,255,255,0.68); margin: 8px 0 0; }
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 18px;
}
.footer-bottom p { font-size: .9rem; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.88);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-height: 88svh;
  max-width: min(1100px, 96vw);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 640px) {
  .quick-contact-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-contact a { padding: 20px 18px; }
  .services-grid,
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item.wide { grid-column: span 2; }
  .before-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.25fr .8fr 1fr; }
}

@media (min-width: 900px) {
  :root { --header-height: 84px; }
  .section { padding: 112px 0; }
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-nav a { padding: 9px 11px; font-size: .88rem; }
  .site-nav .nav-cta { padding-inline: 15px; }
  .hero { padding: 72px 0 72px; }
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(360px, .7fr); }
  .hero-card { min-height: 620px; }
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gallery-item.wide { grid-column: span 2; grid-row: span 2; }
  .before-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .area-grid,
  .about-grid,
  .quote-grid,
  .faq-grid { grid-template-columns: .9fr 1.1fr; gap: 56px; }
  .about-grid { grid-template-columns: .95fr 1.05fr; }
  .quote-grid { align-items: start; }
}

@media (min-width: 1120px) {
  .site-nav a { padding: 10px 14px; font-size: .94rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


.pricing-note {
  display: grid;
  gap: 18px;
  align-items: center;
  margin: 0 0 22px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 54px rgba(0,0,0,.12);
}
.pricing-note h3 {
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: -.04em;
}
.pricing-note p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
}
@media (min-width: 780px) {
  .pricing-note { grid-template-columns: 1fr auto; padding: 26px; }
}

/* Updates: pricing cards, Instagram CTA, owner headshot */
.btn-instagram {
  margin-top: 22px;
  background: var(--white);
  color: var(--black);
  border-color: rgba(255,255,255,.22);
}
.btn-instagram:hover { background: var(--gray-200); }

.pricing-note {
  grid-template-columns: 1fr !important;
  gap: 20px;
  align-items: stretch;
}
.pricing-header p:not(.eyebrow) {
  max-width: 680px;
}
.pricing-cards {
  display: grid;
  gap: 12px;
}
.price-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}
.price-card span {
  display: block;
  color: rgba(255,255,255,.68);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .74rem;
}
.price-card strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(1.3rem, 4.5vw, 2rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.pricing-tax-note {
  margin: 0 !important;
  padding: 14px 16px;
  border-left: 3px solid var(--red);
  border-radius: 14px;
  background: rgba(226,29,43,.1);
  color: rgba(255,255,255,.78) !important;
}
.about-image.owner-headshot {
  max-width: 430px;
  margin-inline: auto;
  background: linear-gradient(135deg, rgba(226,29,43,.2), rgba(0,0,0,.1));
}
.about-image.owner-headshot img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 640px) {
  .quick-contact-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .quick-contact-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Expansion updates: LinkedIn, honest reviews, trust badges, service visual, mobile text CTA */
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.social-actions .btn { margin-top: 0; }
.social-linkedin {
  color: var(--white);
  border-color: var(--line);
}
.local-seo-line {
  font-size: .95rem !important;
  color: rgba(255,255,255,.62) !important;
}
.service-map-visual {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at center, rgba(226,29,43,.18), transparent 45%),
    rgba(255,255,255,.04);
}
.service-map-visual p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
}
.map-rings {
  position: relative;
  min-height: 250px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 20%, rgba(255,255,255,.1) 20.5% 21%, transparent 21.5% 38%, rgba(255,255,255,.08) 38.5% 39%, transparent 39.5% 58%, rgba(255,255,255,.06) 58.5% 59%, transparent 59.5%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.map-rings::before,
.map-rings::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 50%;
}
.map-rings::after { inset: 58px; border-color: rgba(226,29,43,.36); }
.map-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7,7,7,.82);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0,0,0,.32);
  white-space: nowrap;
}
.map-dot::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--red);
}
.map-dot-home { left: 50%; top: 50%; background: var(--red); }
.map-dot-home::before { background: var(--white); }
.map-dot-north { left: 50%; top: 18%; }
.map-dot-east { left: 78%; top: 48%; }
.map-dot-south { left: 58%; top: 78%; }
.map-dot-west { left: 25%; top: 52%; }
.owner-linkedin {
  display: block;
  padding: 15px 16px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.12);
}
.owner-linkedin:hover { color: var(--white); background: var(--red); }
.trust-badges {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.trust-badges div {
  padding: 13px 14px;
  border-radius: 999px;
  border: 1px solid rgba(7,7,7,.1);
  background: #f7f7f8;
  color: var(--black);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
}
.reviews-section { background: #f0f0f2; }
.reviews-card {
  max-width: 860px;
  padding: clamp(24px, 5vw, 44px);
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(7,7,7,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.reviews-card h2 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: .94;
  letter-spacing: -.07em;
}
.reviews-card p:not(.eyebrow) {
  margin: 16px 0 0;
  max-width: 680px;
  color: var(--gray-700);
  font-size: 1.05rem;
}
.reviews-card .btn { margin-top: 24px; }
.floating-text {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1600;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(226,29,43,.42);
}
.floating-text:hover { background: #f12c39; }

@media (max-width: 767px) {
  .floating-text { display: inline-flex; }
  body { padding-bottom: 72px; }
}

@media (min-width: 640px) {
  .trust-badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .quick-contact-grid { grid-template-columns: repeat(5, 1fr); }
  .trust-badges { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Final updates: real Google map embed and expanded wheel gloss caption */
.map-embed-card {
  margin-top: 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.map-embed {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 18px;
  background: var(--black-2);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.map-open-button {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}
.gallery-item span strong {
  display: block;
}
.gallery-item span small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  line-height: 1.25;
  font-weight: 750;
  letter-spacing: -.01em;
}
@media (min-width: 768px) {
  .map-embed { height: 420px; }
  .map-open-button { width: auto; }
}

/* Deployment-ready Netlify form helpers */
.form-honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 96px 18px 42px;
  background:
    radial-gradient(circle at 80% 10%, rgba(226,29,43,.22), transparent 32%),
    linear-gradient(135deg, #070707, #151519 60%, #070707);
}
.thank-you-card {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  text-align: center;
}
.thank-you-card h1 {
  margin: 22px 0 12px;
  color: var(--white);
  font-size: clamp(2.2rem, 9vw, 5rem);
  line-height: .9;
  letter-spacing: -.07em;
}
.thank-you-card p {
  margin: 0 auto;
  max-width: 590px;
  color: rgba(255,255,255,.74);
  font-size: 1.05rem;
}
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.trust-statement {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 11px 13px;
  border: 1px solid rgba(226,29,43,.2);
  border-radius: 999px;
  background: rgba(226,29,43,.07);
  color: var(--black);
  font-size: .92rem;
  font-weight: 900;
}
.trust-statement::before {
  content: "✓";
  color: var(--red);
}
