:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #111827;
  --copy: #374151;
  --muted: #6b7280;
  --wine: #730e22;
  --wine-dark: #4d0716;
  --blue: #749bed;
  --navy: #0c105e;
  --paper: #fbf8f4;
  --line: rgba(17, 24, 39, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--copy);
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 78px;
}

h1, h2, h3, h4, .brand-name {
  font-family: var(--font-heading);
  color: var(--ink);
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(35px, 8vw, 72px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.05;
}

h3, h4 {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.18;
}

p, li, a, button, input, textarea {
  font-size: 16px;
}

.site-shell {
  overflow: hidden;
}

.container-magazine {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

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

.header-inner {
  min-height: 76px;
}

.logo-link {
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.brand-name {
  font-size: 24px;
  line-height: 1;
}

.desktop-nav,
.header-phone {
  display: none !important;
}

.mobile-menu-toggle {
  display: inline-flex !important;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
}

.desktop-nav a,
.mobile-menu a {
  color: var(--ink);
  font-size: 18px;
  text-decoration: none;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--wine);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-menu.is-open {
  display: block;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.header-phone,
.mobile-phone,
.sticky-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary,
.header-phone,
.mobile-phone {
  color: #fff;
  background: var(--wine);
  box-shadow: 0 16px 34px rgba(115, 14, 34, 0.28);
}

.btn-primary:hover,
.header-phone:hover,
.mobile-phone:hover {
  color: #fff;
  background: var(--wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(115, 14, 34, 0.34);
}

.btn-secondary {
  color: #061040;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(116, 155, 237, 0.28);
}

.btn-secondary:hover {
  color: #061040;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(116, 155, 237, 0.38);
}

.btn-outline {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.btn-outline:hover {
  color: var(--wine);
  transform: translateY(-2px);
}

.hero-section {
  background: linear-gradient(135deg, #f8f4f1 0%, #fff 46%, #e8efff 100%);
  position: relative;
}

.hero-section:before {
  content: "01";
  position: absolute;
  top: 118px;
  right: 5vw;
  color: rgba(12, 16, 94, 0.08);
  font: 800 112px/1 var(--font-heading);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow:before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--wine);
}

.stars {
  color: var(--blue);
  letter-spacing: 0.12em;
  font-size: 24px;
}

.trust-icon-row img {
  width: auto;
  height: 48px;
  max-width: 96px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 6px;
}

.hero-image-card {
  aspect-ratio: 1 / 1;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(12, 16, 94, 0.18);
  border: 12px solid #fff;
}

.hero-image-card img,
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.metric-value {
  font-family: var(--font-heading);
  color: var(--wine);
  font-size: 34px;
}

.section-pad {
  padding: 76px 0;
}

.section-number {
  color: var(--blue);
  font: 800 18px/1 var(--font-heading);
}

.intro-card,
.service-card,
.problem-card,
.review-card,
.area-card,
.expertise-card,
.cta-panel {
  border-radius: 30px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
}

.service-card {
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(12, 16, 94, 0.12);
}

.service-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #f1f5ff;
  color: var(--navy);
  border: 1px solid rgba(116, 155, 237, 0.32);
}

.service-card li,
.problem-card li {
  margin: 12px 0;
}

.split-feature {
  display: grid;
  gap: 28px;
  align-items: center;
}

.feature-image {
  min-height: 280px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(12, 16, 94, 0.14);
}

.section-dark-custom {
  background: var(--navy);
  color: #eef2ff;
}

.section-dark-custom h2,
.section-dark-custom h3,
.section-dark-custom h4 {
  color: #fff;
}

.section-dark-custom .eyebrow {
  color: #dce6ff;
}

.section-dark-custom .eyebrow:before {
  background: var(--blue);
}

.problem-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--copy);
  padding: 28px;
}

.problem-card h3,
.problem-card strong {
  color: var(--ink);
}

.reviews-shell {
  position: relative;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  padding: 28px;
  color: var(--copy);
}

.review-name {
  color: var(--ink);
  font-weight: 900;
}

.review-controls button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.review-controls button:hover {
  background: var(--wine);
  color: #fff;
}

.zip-pill,
.city-pill {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(116, 155, 237, 0.42);
  background: #f5f8ff;
  color: var(--navy);
  padding: 9px 14px;
  font-weight: 800;
}

.cta-panel {
  background: linear-gradient(135deg, var(--wine), var(--navy));
  color: #fff;
  overflow: hidden;
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.site-footer {
  background: #090b34;
  color: #dbe4ff;
  font-size: 14px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  font-size: 14px;
  color: #dbe4ff;
}

.site-footer h3,
.site-footer h4,
.site-footer .brand-name {
  color: #fff;
}

.site-footer a:hover {
  color: #fff;
}

.footer-disclaimer {
  color: #c5cff5;
  font-size: 14px;
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  min-height: 62px;
  border-radius: 0;
  background: var(--wine);
  color: #fff;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.25);
}

.sticky-call.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-call:hover {
  color: #fff;
  background: var(--wine-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .desktop-nav,
  .header-phone {
    display: inline-flex !important;
  }

  .mobile-menu-toggle,
  .mobile-menu,
  .sticky-call {
    display: none !important;
  }

  .split-feature {
    grid-template-columns: minmax(0, 65%) minmax(260px, 35%);
  }

  .split-feature.image-left {
    grid-template-columns: minmax(260px, 35%) minmax(0, 65%);
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }
}

@media (max-width: 767px) {
  h1, h2 {
    letter-spacing: -0.025em;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-name {
    font-size: 24px;
  }

  .section-pad {
    padding: 56px 0;
  }

  .hero-section:before {
    display: none;
  }

  .hero-image-card {
    border-radius: 28px;
    border-width: 8px;
  }
}
