:root {
  --font-heading: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }
body { min-width: 320px; }
a { text-decoration: none; }
h1, h2, h3, h4 { letter-spacing: -0.035em; }
h1 { font-size: clamp(39px, 8.4vw, 72px); line-height: 0.95; }
h2 { font-size: clamp(31px, 6.2vw, 52px); line-height: 1; }
h3, h4 { font-size: clamp(22px, 4vw, 28px); line-height: 1.15; }
p, li, a, button, input, textarea { font-size: 16px; }

.site-header { background: rgba(255,255,255,0.94); backdrop-filter: blur(18px); }
.logo-text { font-family: var(--font-heading); font-size: 24px; letter-spacing: -0.04em; color: #111827; }
.nav-link { color: #29212a; transition: color .25s ease; }
.nav-link:hover { color: #570433; }
.desktop-only-phone { display: none !important; }
.mobile-menu-panel { display: none; }
.mobile-menu-panel.is-open { display: block; }
.mobile-only-toggle { display: flex !important; }
@media (min-width: 768px) {
  .desktop-only-phone { display: inline-flex !important; }
  .mobile-only-toggle, .mobile-menu-panel { display: none !important; }
}

.hero-section {
  min-height: 760px;
  background-image: linear-gradient(90deg, rgba(22,0,13,.92) 0%, rgba(87,4,51,.76) 48%, rgba(87,4,51,.16) 100%), url('../images/hero-technician.jpg');
  background-size: cover;
  background-position: center;
}
.star-row { color: #F6C35D; letter-spacing: .12em; text-shadow: 0 8px 26px rgba(0,0,0,.45); }
.gallery-badge img { width: auto; height: 48px; object-fit: contain; display: block; }
.gallery-badge { border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.12); padding: 9px 12px; display: inline-flex; align-items: center; justify-content: center; min-width: 74px; height: 68px; }

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 56px;
  padding: 0 1.35rem;
  background: #570433;
  color: #fff !important;
  border: 1px solid #570433;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  box-shadow: 0 22px 48px rgba(87,4,51,.28);
}
.cta-button::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255,255,255,.72);
  opacity: .38;
  animation: pulseGlow 2.2s ease-in-out infinite;
  pointer-events: none;
}
.cta-button:hover { transform: translateY(-2px); background: #35011e; border-color: #35011e; }
.hero-section .cta-button { background: #C26298; border-color: #C26298; color: #16000d !important; }
.hero-section .cta-button:hover { background: #fff; border-color: #fff; }
@keyframes pulseGlow { 0%,100% { transform: scale(.98); opacity: .25; } 50% { transform: scale(1.035); opacity: .72; } }

.section-pad { padding: 72px 0; }
.eyebrow { color: #570433; font-size: 13px; text-transform: uppercase; letter-spacing: .22em; font-weight: 900; }
.heading-accent { width: 74px; height: 4px; background: #C26298; margin-top: 18px; }
.dark-card { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.light-card { background: #fff; color: #29212a; border: 1px solid #ead7e4; box-shadow: 0 26px 70px rgba(87,4,51,.08); }
.split-card { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.split-card .split-image { order: -1; }
@media (min-width: 900px) {
  .split-card { grid-template-columns: 65% 35%; gap: 40px; }
  .split-card.reverse { grid-template-columns: 35% 65%; }
  .split-card.reverse .split-image { order: 0; }
  .split-card.reverse .split-text { order: 1; }
}
.split-image img, .premium-img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; }
.service-icon { width: 46px; height: 46px; flex: 0 0 auto; color: #570433; }
.service-tile { transition: transform .25s ease, box-shadow .25s ease; }
.service-tile:hover { transform: translateY(-4px); box-shadow: 0 28px 60px rgba(87,4,51,.13); }
.issue-marker { width: 10px; height: 10px; background: #C26298; margin-top: 9px; flex: 0 0 auto; }
.review-track { transition: transform .45s ease; }
.review-card { min-width: 100%; }
@media (min-width: 768px) { .review-card { min-width: calc(100% / 3); } }
.faq-item[open] summary { color: #570433; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none !important;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(22,0,13,.96);
}
.mobile-sticky-call.is-visible { display: block !important; transform: translateY(0); opacity: 1; }
.mobile-sticky-call a { width: 100%; white-space: nowrap; color: #fff !important; }
@media (min-width: 768px) { .mobile-sticky-call, .mobile-sticky-call.is-visible { display: none !important; } }
.footer-area { font-size: 14px; }
.footer-area p, .footer-area a, .footer-area li { font-size: 14px; }
@media (max-width: 767px) {
  h1 { font-size: 39px; }
  h2 { font-size: 31px; }
  .hero-section { min-height: 790px; background-position: 63% center; }
  .section-pad { padding: 54px 0; }
  .gallery-badge img { height: 42px; }
  .gallery-badge { height: 62px; min-width: 66px; }
  body { padding-bottom: 76px; }
}
