:root {
  --gold: #9e7f49;
  --cream: #f9f4ea;
  --ink: #111827;
  --charcoal: #1f1a14;
  --muted: #4b5563;
  --line: rgba(158, 127, 73, 0.28);
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: #374151;
  background: #fffaf2;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.08;
  margin: 0;
  font-weight: 700;
}

h1 { font-size: clamp(39px, 9vw, 68px); letter-spacing: -0.04em; }
h2 { font-size: clamp(31px, 7vw, 48px); letter-spacing: -0.03em; }
h3, h4 { font-size: 22px; }
p { font-size: 16px; margin: 0; }

.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 72px 0; position: relative; overflow: hidden; }
.section-soft { background: var(--cream); }
.section-dark { background: #111827; color: #f9fafb; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-kitchen { background: linear-gradient(135deg, #fff 0%, #f9f4ea 56%, #efe4ce 100%); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(31, 26, 20, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #1f1a14;
  color: #fff;
  border: 1px solid var(--gold);
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-text { font-family: var(--font-heading); font-size: 24px; line-height: 1; color: var(--ink); font-weight: 700; letter-spacing: -0.02em; }

.desktop-nav { display: none; align-items: center; gap: 24px; font-size: 16px; color: #1f2937; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--gold); }
.header-actions { display: none; }
.phone-btn, .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: var(--charcoal);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255,255,255,.45);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  animation: softPulse 2.3s infinite;
}
.phone-btn:hover, .cta-btn:hover { transform: translateY(-2px); background: #0f0d0a; border-color: #c6a86c; color: #fff; }
.phone-btn svg, .cta-btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.hamburger { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; justify-content: center; align-items: center; border: 1px solid rgba(31,26,20,.18); background: #fff; }
.hamburger span { width: 20px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.mobile-phone-row { display: flex; justify-content: center; padding: 0 16px 14px; }
.mobile-phone-row .phone-btn { min-height: 44px; font-size: 14px; width: min(100%, 360px); }
.mobile-menu { display: none; border-top: 1px solid rgba(31,26,20,.08); background: #fffaf2; padding: 12px 16px 20px; }
.mobile-menu.is-open { display: grid; gap: 10px; }
.mobile-menu a { display: block; padding: 12px 8px; font-size: 16px; color: var(--ink); border-bottom: 1px solid rgba(31,26,20,.07); }

.hero {
  min-height: 760px;
  background-image: linear-gradient(90deg, rgba(17,24,39,.92) 0%, rgba(17,24,39,.76) 48%, rgba(17,24,39,.32) 100%), url('../images/hero-technician.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 76px 0;
}
.hero-grid { display: grid; gap: 34px; align-items: center; }
.hero h1 { color: #fff; max-width: 780px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
.eyebrow::before, .section-heading::after { content: ""; width: 42px; height: 3px; background: var(--gold); display: inline-block; }
.hero-copy { max-width: 770px; color: #f3f4f6; margin-top: 20px; font-size: 17px; }
.stars { color: var(--gold); font-size: 27px; letter-spacing: 3px; margin-top: 18px; }
.trust-badges { display: flex; gap: 12px; align-items: center; margin-top: 18px; flex-wrap: wrap; }
.trust-badges img { height: 48px; width: auto; object-fit: contain; background: rgba(255,255,255,.94); border: 1px solid rgba(158,127,73,.55); padding: 7px 10px; }
.hero-cta-text { margin-top: 26px; color: #fff; font-weight: 800; font-size: 18px; }
.hero .cta-btn { margin-top: 12px; background: var(--gold); border-color: #d8bd83; color: #111827; }
.benefit-panel { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32); backdrop-filter: blur(18px); padding: 24px; color: #fff; }
.benefit-panel h3 { color: #fff; margin-bottom: 18px; }
.benefit-list { display: grid; gap: 14px; }
.benefit-item { display: flex; gap: 12px; align-items: flex-start; color: #f9fafb; }
.benefit-icon { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border: 1px solid rgba(158,127,73,.85); color: #fff; background: rgba(158,127,73,.36); }
.benefit-icon svg { width: 20px; height: 20px; }

.section-heading { display: grid; gap: 16px; margin-bottom: 30px; max-width: 790px; }
.section-heading::after { width: 58px; }
.lead { color: #4b5563; font-size: 18px; }
.section-dark .lead { color: #d1d5db; }

.split-card { display: grid; gap: 24px; align-items: stretch; background: rgba(255,255,255,.84); border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(31,26,20,.08); margin-bottom: 28px; }
.split-text { padding: 28px; }
.split-media { min-height: 280px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.issue-list { display: grid; gap: 13px; margin: 22px 0 0; padding: 0; list-style: none; }
.issue-list li { padding-left: 18px; border-left: 3px solid var(--gold); color: #374151; }
.issue-list strong { color: #111827; }

.service-grid { display: grid; gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); padding: 24px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(158,127,73,.65); box-shadow: 0 18px 45px rgba(31,26,20,.09); }
.service-icon { width: 64px; height: 64px; object-fit: contain; margin-bottom: 16px; border: 1px solid rgba(158,127,73,.2); background: #fffaf2; }

.nearby-grid { display: grid; gap: 22px; }
.glass-card { background: rgba(255,255,255,.78); border: 1px solid rgba(158,127,73,.3); padding: 24px; box-shadow: 0 20px 60px rgba(17,24,39,.06); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 16px 0 0; list-style: none; }
.pill-list li { border: 1px solid var(--line); padding: 9px 12px; background: #fff; color: #111827; font-weight: 700; }

.reasons { display: grid; gap: 16px; counter-reset: reason; }
.reason { counter-increment: reason; background: #fff; border: 1px solid rgba(255,255,255,.18); padding: 22px; position: relative; }
.reason::before { content: counter(reason, decimal-leading-zero); color: var(--gold); font-family: var(--font-heading); font-size: 36px; line-height: 1; display: block; margin-bottom: 8px; }
.reason p { color: #4b5563; }

.reviews-shell { overflow: hidden; }
.reviews-track { display: flex; transition: transform .45s ease; }
.review-card { flex: 0 0 100%; padding: 18px; }
.review-inner { min-height: 245px; background: #fff; border: 1px solid var(--line); padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.review-name { margin-top: 18px; color: #111827; font-weight: 800; }
.carousel-controls { display: flex; gap: 12px; justify-content: center; margin-top: 18px; }
.carousel-controls button { width: 46px; height: 46px; border: 1px solid var(--gold); background: var(--charcoal); color: #fff; cursor: pointer; transition: background .2s ease; }
.carousel-controls button:hover { background: var(--gold); color: #111827; }

.faq-grid { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); padding: 22px; }
.faq-item h3 { margin-bottom: 8px; }

.cta-band { background: linear-gradient(135deg, #111827, #2a2218); color: #fff; border: 1px solid rgba(158,127,73,.5); padding: 34px; display: grid; gap: 20px; align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #f3f4f6; }

.footer { background: #0f0d0a; color: #d1d5db; padding: 52px 0 28px; font-size: 14px; }
.footer p, .footer a, .footer li { font-size: 14px; }
.footer h3 { color: #fff; }
.footer-grid { display: grid; gap: 28px; }
.footer .logo-text { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.footer-links a:hover { color: #fff; }
.disclaimer { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 22px; color: #9ca3af; }

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 12px env(safe-area-inset-bottom);
  background: #111827;
  color: #fff;
  font-weight: 900;
  border-top: 2px solid var(--gold);
  transform: translateY(115%);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
  white-space: nowrap;
  font-size: 16px;
}
.sticky-call.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.sticky-spacer { height: 76px; }

@keyframes softPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.38); }
  70% { box-shadow: 0 0 0 13px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

@media (min-width: 768px) {
  .mobile-phone-row, .hamburger, .mobile-menu, .sticky-call, .sticky-spacer { display: none !important; }
  .desktop-nav, .header-actions { display: flex; }
  .hero-grid { grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr); }
  .split-card { grid-template-columns: 65% 35%; }
  .split-card.media-left { grid-template-columns: 35% 65%; }
  .split-card.media-left .split-media { order: -1; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nearby-grid { grid-template-columns: 1fr 1fr; }
  .reasons { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .review-card { flex-basis: 33.3333%; }
  .cta-band { grid-template-columns: 1fr auto; }
  .footer-grid { grid-template-columns: 1.1fr .9fr .9fr; }
}

@media (max-width: 767px) {
  h1 { font-size: clamp(39px, 11vw, 48px); }
  h2 { font-size: clamp(31px, 9vw, 36px); }
  .section { padding: 54px 0; }
  .topbar { position: sticky; }
  .header-inner { min-height: 68px; }
  .logo-text { font-size: 24px; max-width: 210px; }
  .hero { min-height: 760px; padding: 54px 0 68px; background-position: 58% center; }
  .benefit-panel { padding: 20px; }
  .trust-badges img { height: 48px; max-width: 96px; }
  .split-text, .glass-card, .service-card { padding: 22px; }
  .review-card { padding: 8px; }
  body.has-sticky-space { padding-bottom: 72px; }
}

@media (max-width: 430px) {
  .container { width: min(100% - 24px, 1160px); }
  .mobile-phone-row .phone-btn { font-size: 13px; padding: 0 12px; }
  .sticky-call { font-size: 14px; letter-spacing: -0.01em; }
}
