/* Top-Notch Detailing — mobile-first, colors from topnotchdetailingllc.com */

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

:root {
  /* Astra / Elementor brand palette (scraped) */
  --brand-blue: #0170b9;
  --brand-blue-hover: #015a94;
  --brand-navy: #24318d;
  --brand-gold: #df8940;
  --brand-accent: #5ec8ff;
  --brand-accent-glow: rgba(94, 200, 255, 0.45);
  --hero-bg: #060608;
  --brand-purple: #444cae;
  --text-heading: #3a3a3a;
  --text-body: #4b4f58;
  --text-muted: #4d4d4d;
  --bg-page: #ffffff;
  --bg-section: #f5f5f5;
  --bg-section-alt: #ecedef;
  --bg-header: rgba(0, 0, 0, 0.92);
  --bg-footer: #eeeeee;
  --border: #e5e5e5;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  --font-display: "Cinzel", "Times New Roman", Georgia, serif;
  --font-elegant: "Cormorant Garamond", Georgia, serif;
  --font-hero: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font: var(--font-ui);
  --max-w: 75rem;
  --header-h: 3.75rem;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --sticky-h: 3.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-page);
  min-height: 100vh;
  padding-bottom: calc(var(--sticky-h) + var(--safe-bottom) + 0.5rem);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--brand-blue-hover);
}

h1, h2, h3, h4 {
  font-family: var(--font-hero);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }

p { margin: 0 0 1rem; }

ul { margin: 0 0 1rem; padding-left: 1.25rem; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* Dual-color title (matches live site) */
.title-dual {
  text-align: center;
  margin-bottom: 1.5rem;
}

.title-dual .lead {
  display: block;
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.title-dual .accent {
  display: block;
  color: var(--brand-accent);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.title-dual .sub {
  font-family: var(--font-elegant);
  color: var(--text-muted);
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 1rem;
  max-width: 36rem;
  margin-inline: auto;
  line-height: 1.65;
}

/* Header — mobile first */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  border-bottom: 1px solid #2a2a2a;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 0.5rem;
}

.logo img {
  height: 3.25rem;
  width: auto;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
}

.nav-main {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #000;
  flex-direction: column;
  overflow-y: auto;
  z-index: 99;
  -webkit-overflow-scrolling: touch;
}

.nav-main.is-open {
  display: flex;
}

.nav-main li {
  border-bottom: 1px solid #222;
}

.nav-main a {
  display: block;
  padding: 1rem 1.25rem;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  min-height: 3rem;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  background: #1a1a1a;
  color: var(--white);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.header-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
}

.header-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.header-cta {
  display: none;
  gap: 0.35rem;
  align-items: center;
}

/* Buttons — touch friendly */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--white) !important;
}

.btn-primary:hover {
  background: var(--brand-blue-hover);
  color: var(--white) !important;
}

.btn-secondary {
  background: var(--white);
  color: var(--brand-blue) !important;
  border: 2px solid var(--brand-blue);
}

.btn-secondary:hover {
  background: var(--bg-section);
}

.btn-lg {
  min-height: 3.25rem;
  font-size: 1.0625rem;
  width: 100%;
}

.btn-block {
  width: 100%;
}

/* Hero — car photo + hex lights + copy */
.hero {
  position: relative;
  min-height: min(88vh, 40rem);
  background: var(--hero-bg);
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-bg);
  pointer-events: none;
}

.hero-car {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: auto;
  height: min(72vh, 36rem);
  max-width: 100%;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(92deg, rgba(6, 6, 8, 0.92) 0%, rgba(6, 6, 8, 0.55) 34%, transparent 52%),
    linear-gradient(to bottom, rgba(6, 6, 8, 0.85) 0%, transparent 40%);
}

.hero-hex-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 72%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 72%);
}

.hero-hex-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 22% 12%, var(--brand-accent-glow) 0%, transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(1, 112, 185, 0.35) 0%, transparent 24%),
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(94, 200, 255, 0.28) 0%, transparent 58%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 38%, transparent 68%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 38%, transparent 68%);
  animation: hero-glow-pulse 5s ease-in-out infinite;
}

.hero-hex-spark {
  position: absolute;
  top: 8%;
  left: 50%;
  z-index: 3;
  width: min(90%, 36rem);
  height: 42%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 20% 30%, rgba(94, 200, 255, 0.55) 0%, transparent 8%),
    radial-gradient(circle at 55% 20%, rgba(94, 200, 255, 0.4) 0%, transparent 6%),
    radial-gradient(circle at 80% 35%, rgba(1, 112, 185, 0.45) 0%, transparent 7%);
  filter: blur(1px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
  animation: hero-spark-shift 8s ease-in-out infinite;
  opacity: 0.85;
}

@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 1; }
}

@keyframes hero-spark-shift {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.75; }
  50% { transform: translateX(-48%) translateY(6px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-hex-glow,
  .hero-hex-spark {
    animation: none;
  }
}

.hero-badge {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
}

.hero-intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  min-height: min(88vh, 40rem);
  padding: 2rem 1rem 5rem;
  background: transparent;
}

.hero-service-area {
  position: absolute;
  right: 1rem;
  bottom: 1.25rem;
  left: 1rem;
  z-index: 2;
  margin: 0;
  padding: 0;
  font-family: var(--font-hero);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand-accent);
  text-align: right;
  text-shadow: 0 0 20px var(--brand-accent-glow);
}

.hero-intro h1 {
  font-family: var(--font-hero);
  font-size: clamp(1.65rem, 5.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-inline: 0;
  max-width: 18rem;
  color: var(--white);
  text-wrap: balance;
}

.hero-highlight {
  color: var(--brand-accent);
  display: block;
  margin-top: 0.15em;
  text-shadow: 0 0 28px var(--brand-accent-glow);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  margin-inline: 0;
  max-width: 26rem;
  line-height: 1.55;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.hero-trust::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: var(--brand-accent);
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.25rem;
  width: 100%;
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section-alt {
  background: var(--bg-section);
}

.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-header p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Promo banner */
.promo-banner {
  background: var(--brand-blue);
  border-radius: 10px;
  padding: 1.25rem;
  color: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.promo-banner h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.promo-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
  margin: 0.5rem 0;
  letter-spacing: 0.06em;
}

.promo-value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-gold);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-banner .btn-primary {
  background: var(--brand-gold);
  color: var(--text-heading) !important;
}

.promo-banner .btn-primary:hover {
  background: #e89a4f;
}

.promo-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.promo-banner .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white) !important;
}

/* Service image cards (like live site) */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 14rem;
  padding: 1.25rem;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white) !important;
  box-shadow: var(--shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-image) center / cover no-repeat;
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-overlay);
  z-index: 1;
  transition: opacity 0.2s;
}

.service-card:hover::after {
  opacity: 0.92;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.service-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  opacity: 0.95;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--white);
  color: var(--brand-blue) !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  width: fit-content;
}

.service-card--detail {
  --card-image: url("../images/service-auto-detail.png");
  --card-overlay: rgba(58, 58, 58, 0.55);
}

.service-card--ceramic {
  --card-image: url("../images/service-ceramic.jpeg");
  --card-overlay: rgba(68, 76, 174, 0.55);
}

.service-card--paint {
  --card-image: url("../images/service-paint-correction.png");
  --card-overlay: rgba(58, 58, 58, 0.55);
}

/* Content blocks */
.split {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.split img {
  border-radius: 8px;
  width: 100%;
  box-shadow: var(--shadow);
}

.split img.about-photo {
  width: auto;
  max-width: 220px;
  max-height: 280px;
  justify-self: center;
  margin-inline: auto;
  image-rendering: auto;
}

.split .btn {
  width: 100%;
}

/* Cards / pricing */
.grid-3,
.price-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card,
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card > ul {
  flex: 1 0 auto;
}

.price-card > .btn {
  margin-top: auto;
  width: 100%;
}

.grid-3--compact {
  gap: 0.75rem;
}

.grid-3--compact .card {
  padding: 0.875rem 1rem;
}

.grid-3--compact .card h3 {
  font-family: var(--font-hero);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.35rem;
}

.grid-3--compact .card p {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.45;
}

.section-cta {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.price-card.featured {
  border-color: var(--brand-blue);
  border-width: 2px;
}

.price-tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.price-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--bg-section);
  padding: 1.75rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 1.5rem;
}

.page-hero p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.page-hero .hero-badge {
  color: var(--white);
}

.page-hero .btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

.img-cutout {
  background: transparent;
  width: 100%;
  height: auto;
  max-height: 22rem;
  object-fit: contain;
}

/* Contact */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  min-height: 3rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--brand-blue);
  outline-offset: 1px;
}

.map-embed iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 8px;
}

/* Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag-list li {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.4rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.875rem;
}

/* Gallery */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery figcaption {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  background: var(--bg-section);
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 2rem 0 1.5rem;
  margin-top: 1rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-grid h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.35rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

/* Fixed mobile call bar */
.site-version {
  position: fixed;
  right: 0.625rem;
  bottom: calc(var(--sticky-h, 3.5rem) + var(--safe-bottom, 0px) + 0.375rem);
  z-index: 5;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  color: rgba(20, 24, 32, 0.4);
  background: rgba(255, 255, 255, 0.7);
  padding: 1px 6px;
  border-radius: 999px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
@media (min-width: 900px) {
  .site-version {
    bottom: 0.5rem;
  }
}

.call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 85;
  display: flex;
  gap: 0;
  padding-bottom: var(--safe-bottom);
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--sticky-h);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9375rem;
}

.call-bar-call {
  flex: 1;
  background: var(--brand-blue);
  color: var(--white) !important;
  font-size: 0.875rem;
  padding: 0 0.5rem;
}

.call-bar-promo {
  flex: 0 0 auto;
  min-width: 4.5rem;
  background: var(--brand-gold);
  color: var(--text-heading) !important;
  border: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0 1rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem 1.25rem 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--bg-section);
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-heading);
}

.modal h2 {
  font-size: 1.25rem;
  padding-right: 2rem;
}

.modal-includes {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.modal-includes li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}

.modal-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 700;
}

.modal-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.modal-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-gold);
  letter-spacing: 0.05em;
}

.modal-compare.promo-value {
  font-size: 0.95rem;
}

.modal-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.modal-actions .btn {
  width: 100%;
}

/* Promo sticky removed — single bottom call bar only */

/* Tablet+ */
@media (min-width: 640px) {
  .grid-3--compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  h1 { font-size: 2rem; }
  .hero-actions .btn-lg {
    width: auto;
  }
  .promo-banner-actions {
    flex-direction: row;
  }
  .promo-banner-actions .btn {
    width: auto;
  }
  .service-card {
    min-height: 16rem;
  }
  .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .modal-overlay {
    align-items: center;
    padding: 1rem;
  }
  .modal {
    border-radius: 12px;
    transform: scale(0.95);
  }
  .modal-overlay.is-open .modal {
    transform: scale(1);
  }
}

/* Desktop enhancements */
@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .call-bar,
  .promo-sticky {
    display: none !important;
  }

  .nav-toggle {
    display: none;
  }

  .site-header nav {
    display: flex;
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .nav-main {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    overflow: visible;
    gap: 0.25rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-main li {
    border: none;
  }

  .nav-main a {
    padding: 0.5rem 0.65rem;
    font-size: 0.875rem;
    min-height: auto;
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-main a:hover,
  .nav-main a[aria-current="page"] {
    background: transparent;
    color: var(--white);
  }

  .site-header {
    --header-h: 5.25rem;
  }

  .logo img {
    height: 5rem;
  }

  .header-cta {
    display: flex;
    gap: 0.5rem;
  }

  .header-cta .btn {
    min-height: 2.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
  }

  .header-tools {
    display: none;
  }

  .hero {
    min-height: min(88vh, 42rem);
  }

  .hero-car {
    height: min(88vh, 42rem);
    max-width: 78%;
  }

  .hero .hero-intro.container {
    margin: 0;
    max-width: none;
    width: 100%;
  }

  .hero-intro {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 3rem 3.5rem 5rem;
    max-width: 42rem;
    background: transparent;
    pointer-events: none;
  }

  .hero-intro > * {
    pointer-events: auto;
  }

  .hero-service-area {
    left: auto;
    right: 3.5rem;
    bottom: 2.5rem;
    max-width: 20rem;
    font-size: 0.75rem;
  }

  .hero-intro h1 {
    font-size: clamp(2.25rem, 3.8vw, 3.25rem);
    max-width: 11em;
    margin-top: 0;
  }

  .hero-intro .hero-lead {
    max-width: 34ch;
    margin-top: 1rem;
    font-size: 1.0625rem;
  }

  .hero-actions {
    margin-inline: 0;
    margin-top: 1.5rem;
    justify-content: flex-start;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 14rem;
  }

  .service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .service-card {
    min-height: 18rem;
  }

  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .split .btn {
    width: auto;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: start;
  }

  .grid-3--compact {
    gap: 0.75rem;
  }

  .price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
  }

  .page-hero .btn {
    width: auto;
    margin-right: 0.5rem;
  }

  .promo-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .title-dual .lead,
  .title-dual .accent {
    font-size: 2rem;
  }
}
