:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --gold: #ae7e3d;
  --gold-light: #f3c27f;
  --ink: #111827;
  --text: #374151;
  --cream: #fbf6ee;
  --dark: #16110b;
  --line: rgba(174, 126, 61, 0.32);
}

html { scroll-behavior: smooth; }

body {
  color: var(--text);
  background: #fffaf4;
  font-size: 16px;
  line-height: 1.7;
}

body, button, input, textarea { font-family: var(--font-body); }

h1, h2, h3, h4, .brand-text {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.1;
}

h1 { font-size: clamp(39px, 5vw, 64px); letter-spacing: -0.04em; }
h2 { font-size: clamp(31px, 3.5vw, 44px); letter-spacing: -0.03em; }
h3, h4 { font-size: 24px; }
p, li { font-size: 16px; }

@media (max-width: 767px) {
  h1 { font-size: clamp(39px, 10vw, 45px); }
  h2 { font-size: 31px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img { width: 42px; height: 42px; }
.brand-text { font-size: 24px; font-weight: 700; white-space: nowrap; }

.desktop-nav { display: none !important; }
.desktop-phone { display: none !important; }
.mobile-toggle { display: inline-flex !important; }
.mobile-menu { display: none !important; }
.mobile-menu.is-open { display: block !important; }

@media (min-width: 768px) {
  .desktop-nav { display: flex !important; }
  .desktop-phone { display: inline-flex !important; }
  .mobile-toggle, .mobile-menu { display: none !important; }
}

.nav-link {
  color: #2a2117;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.nav-link:hover { color: var(--gold); }

.btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #f3c27f, #ae7e3d);
  color: #111827 !important;
  border: 1px solid #f3c27f;
  border-radius: 0;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(174, 126, 61, 0.28);
  overflow: visible;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  opacity: 0.45;
  animation: pulseGlow 1.9s ease-in-out infinite;
}

.btn-gold:hover {
  color: #111827 !important;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(174, 126, 61, 0.38);
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.045); opacity: 0.72; }
}

.hero {
  position: relative;
  min-height: 760px;
  color: #ffffff;
  background-image: linear-gradient(90deg, rgba(22, 17, 11, 0.96) 0%, rgba(22, 17, 11, 0.82) 43%, rgba(22, 17, 11, 0.38) 100%), url('../images/hero-technician.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 25%, rgba(243, 194, 127, 0.26), transparent 34%), linear-gradient(135deg, rgba(174, 126, 61, 0.16), transparent 48%);
  pointer-events: none;
}

.hero h1, .hero h2, .hero h3 { color: #ffffff; }
.hero p { color: #f9f0e3; }
.stars { color: var(--gold-light); font-size: 28px; letter-spacing: 4px; }

.gallery-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-badges img {
  width: auto;
  height: 48px;
  max-width: 112px;
  object-fit: contain;
  border: 1px solid rgba(243, 194, 127, 0.45);
  background: rgba(255, 255, 255, 0.92);
  padding: 5px;
}

.hero-panel {
  background: rgba(255, 250, 244, 0.13);
  border: 1px solid rgba(243, 194, 127, 0.36);
  backdrop-filter: blur(16px);
  color: #ffffff;
}

.hero-panel p, .hero-panel span { color: #fff7ec; }

.section-pad { padding: 86px 0; }
.cream-gradient { background: linear-gradient(180deg, #fffaf4 0%, #fbf1e2 100%); }
.dark-section { background: linear-gradient(135deg, #16110b, #2b1d10); color: #f9f0e3; }
.dark-section h2, .dark-section h3, .dark-section h4 { color: #ffffff; }
.dark-section p, .dark-section li { color: #f9f0e3; }

.eyebrow {
  color: #7c5525;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
}

.dark-section .eyebrow { color: var(--gold-light); }

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 65%) minmax(260px, 35%);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(72, 45, 18, 0.1);
}

.split-card.reverse { grid-template-columns: minmax(260px, 35%) minmax(0, 65%); }
.split-media img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; display: block; }
.split-copy { padding: clamp(28px, 4vw, 56px); }

@media (max-width: 767px) {
  .hero { min-height: auto; padding-bottom: 44px; }
  .split-card, .split-card.reverse { grid-template-columns: 1fr; }
  .split-card.reverse .split-media { order: 2; }
  .split-card.reverse .split-copy { order: 1; }
}

.service-card, .trust-card, .review-card, .faq-card, .payment-card {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 0;
  color: var(--text);
  box-shadow: 0 18px 44px rgba(72, 45, 18, 0.08);
}

.service-card h3, .trust-card h3, .review-card h3, .faq-card h3, .payment-card h3 { color: var(--ink); }

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  background: #fffaf2;
}

.icon-box img { width: 42px; height: 42px; object-fit: contain; }

.decor-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.review-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 100%; scroll-snap-align: start; }

@media (min-width: 1024px) {
  .review-card { flex-basis: calc((100% - 48px) / 3); }
}

.slider-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 22px;
}

.zip-pill {
  display: inline-flex;
  border: 1px solid var(--line);
  background: #fffaf2;
  color: #2a2117;
  padding: 8px 14px;
  font-weight: 800;
}

.mobile-sticky-call {
  display: none !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(22, 17, 11, 0.96);
  transform: translateY(110%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-call a { width: 100%; min-height: 52px; }

@media (max-width: 767px) {
  body { padding-bottom: 84px; }
  .mobile-sticky-call.is-visible { display: block !important; transform: translateY(0); opacity: 1; }
}

@media (min-width: 768px) {
  .mobile-sticky-call, .mobile-sticky-call.is-visible { display: none !important; }
}

.footer {
  background: #100c08;
  color: #eadfce;
  font-size: 14px;
}

.footer p, .footer li, .footer a { font-size: 14px; color: #eadfce; }
.footer h2, .footer h3, .footer .brand-text { color: #ffffff; }
.footer a:hover { color: var(--gold-light); }

.mobile-menu-panel {
  border-top: 1px solid var(--line);
  background: #fffaf4;
}

.mobile-menu-panel a { color: var(--ink); text-decoration: none; font-weight: 800; }

.phone-dark { color: #ffffff !important; }
.phone-light { color: #111827 !important; }
