:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --black: #0a0a0a;
  --ink: #111827;
  --text: #333333;
  --muted: #5f6368;
  --line: #d7d7d7;
  --soft: #f4f4f2;
  --white: #ffffff;
  --accent: #d6a84f;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
  color: var(--white);
}

h2 {
  font-size: clamp(22px, 3.5vw, 42px);
  line-height: 1.15;
  color: var(--ink);
}

h3,
h4 {
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
}

p,
li,
summary,
dd,
dt {
  font-size: 16px;
}

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

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

.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  border: 2px solid var(--accent);
}

.brand-name {
  font-size: 24px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.05;
}

.nav-link {
  font-size: 18px;
  color: #1f2937;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--black);
  border-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-light:hover,
.btn-light:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hamburger {
  width: 46px;
  height: 46px;
  border: 2px solid var(--black);
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  width: 22px;
  height: 2px;
  background: var(--black);
  display: block;
  content: "";
  position: relative;
}

.hamburger span::before {
  position: absolute;
  top: -7px;
}

.hamburger span::after {
  position: absolute;
  top: 7px;
}

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

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

.hero {
  background: radial-gradient(circle at 15% 20%, rgba(214, 168, 79, 0.18), transparent 26%), linear-gradient(135deg, #070707 0%, #202020 58%, #0b0b0b 100%);
  color: var(--white);
}

.hero-grid {
  min-height: 690px;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  font-size: 25px;
  line-height: 1;
}

.hero-icon-row img {
  width: auto;
  height: 48px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px;
}

.hero-media {
  min-height: 520px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

.metric-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

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

.section-title {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 58px;
  background: var(--accent);
  transition: width 900ms ease;
}

.section-title.centered::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title.is-visible::after {
  width: min(220px, 100%);
}

.dark-section .section-title::after,
.hero .section-title::after {
  background: var(--accent);
}

.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: var(--white);
}

.dark-section p,
.dark-section li {
  color: #e5e7eb;
}

.two-col-block {
  display: grid;
  grid-template-columns: minmax(0, 65fr) minmax(280px, 35fr);
  gap: 34px;
  align-items: stretch;
}

.two-col-block.reverse {
  grid-template-columns: minmax(280px, 35fr) minmax(0, 65fr);
}

.image-panel {
  min-height: 360px;
  background: var(--soft);
  border: 1px solid var(--line);
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card,
.reason-card,
.step-card,
.faq-card,
.review-card {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 58px;
  height: 58px;
  border: 2px solid var(--black);
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--white);
}

.service-icon svg,
.logo-mark svg,
.phone-icon svg,
.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.list-check li {
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
}

.list-check li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 12px;
}

.dark-band {
  background: var(--black);
  color: var(--white);
}

.zip-pill,
.city-pill {
  display: inline-flex;
  border: 1px solid var(--line);
  padding: 8px 12px;
  margin: 4px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

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

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

.review-card {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
}

.review-stars {
  color: var(--accent);
  letter-spacing: 0.08em;
}

details summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

.footer {
  background: var(--black);
  color: #d1d5db;
  font-size: 14px;
}

.footer p,
.footer li,
.footer a {
  font-size: 14px;
}

.footer a:hover,
.footer a:focus {
  color: var(--white);
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.95);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

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

.sticky-call a {
  width: 100%;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 72px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

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

  .hamburger {
    display: inline-flex;
  }

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

  .mobile-header-call {
    display: flex;
    border-top: 1px solid var(--line);
    padding: 10px 0 12px;
  }

  .mobile-header-call .btn {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-grid,
  .two-col-block,
  .two-col-block.reverse {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .hero-media,
  .image-panel {
    min-height: 300px;
  }

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

  .review-card {
    flex-basis: 88%;
  }

  .sticky-call {
    display: block;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
