:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --black: #111111;
  --ink: #202020;
  --muted: #555555;
  --line: #dedbd3;
  --cream: #f6f4ef;
  --white: #ffffff;
  --accent: #f59e0b;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #111827;
  line-height: 1.08;
}

h1 {
  font-size: clamp(35px, 5vw, 66px);
}

h2 {
  font-size: clamp(28px, 3.6vw, 48px);
}

h3,
h4 {
  font-size: 22px;
}

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

p {
  margin: 0 0 18px;
}

section {
  position: relative;
}

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

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

.nav-shell {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--black);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--black);
  display: inline-grid;
  place-items: center;
  color: var(--white);
  flex: 0 0 auto;
}

.brand-mark svg,
.mini-icon svg,
.section-sticker svg,
.call-icon svg,
.service-icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-size: 18px;
  color: #151515;
  border-bottom: 1px solid transparent;
  padding: 8px 0;
}

.nav-links a:hover {
  border-color: var(--black);
}

.call-button,
.outline-button,
.dark-button,
.mobile-call-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.call-button,
.dark-button {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.call-button .phone-number,
.dark-button .phone-number {
  color: var(--white);
}

.outline-button {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.call-button:hover,
.dark-button:hover,
.outline-button:hover {
  transform: translateY(-2px);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.call-button:hover .phone-number,
.dark-button:hover .phone-number {
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--black);
  border-radius: 14px;
  background: var(--white);
  color: var(--black);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
}

.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  right: -160px;
  top: -140px;
}

.hero-grid {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 46px;
  align-items: center;
  padding: 54px 0 66px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--black);
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--black);
}

.stars {
  color: var(--accent);
  font-size: 24px;
  letter-spacing: 3px;
  margin: 8px 0 18px;
}

.hero-copy {
  font-size: 18px;
  color: #333333;
  max-width: 690px;
}

.trust-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 24px;
}

.trust-icons img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 1px solid var(--black);
  border-radius: 18px;
  background: var(--white);
  padding: 8px;
}

.hero-cta-text {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 16px;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--black);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.9);
  color: var(--white);
}

.hero-badge strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

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

.section-alt {
  background: var(--cream);
}

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

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

.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.section-sticker {
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--black);
  background: var(--white);
  flex: 0 0 auto;
  font-size: 27px;
}

.section-dark .section-sticker {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.split {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 42px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 35fr 65fr;
}

.split.reverse .split-media {
  order: 1;
}

.split.reverse .split-text {
  order: 2;
}

.split-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--black);
  box-shadow: var(--shadow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.reason-card,
.review-card,
.zip-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--black);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--black);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 20px;
  color: var(--black);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.reason-card {
  padding: 24px;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 18px 0 0;
}

.pill-list li {
  border: 1px solid var(--black);
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--white);
}

.zip-card {
  padding: 26px;
}

.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 32px;
  padding: 44px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.light-button {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}

.section-dark .light-button {
  color: var(--black);
}

.light-button .phone-number {
  color: var(--black);
}

.reviews-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 22px;
  cursor: pointer;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 350ms ease;
}

.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  padding: 26px;
  min-height: 250px;
}

.review-card .stars {
  font-size: 17px;
  margin: 0 0 14px;
}

.review-card h3 {
  margin-bottom: 10px;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 96px;
  font-size: 14px;
}

.site-footer p,
.site-footer a,
.site-footer li,
.site-footer h3 {
  font-size: 14px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand .brand {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .brand-mark {
  background: var(--white);
  color: var(--black);
}

.footer-links {
  padding: 0;
  list-style: none;
  margin: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.disclaimer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
}

.animate-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.mobile-call-bar {
  display: none;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr auto auto;
    min-height: 74px;
    gap: 10px;
    padding: 8px 0;
  }

  .brand {
    font-size: 24px;
  }

  .desktop-call {
    padding: 11px 13px;
    font-size: 15px;
    white-space: nowrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 74px;
    z-index: 28;
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .service-area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media,
  .split.reverse .split-text {
    order: initial;
  }

  .hero-grid {
    min-height: auto;
    padding: 34px 0 48px;
  }

  .services-grid,
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(30px, 9vw, 46px);
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .site-header {
    position: sticky;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    grid-auto-rows: auto;
  }

  .desktop-call {
    grid-column: 1 / -1;
    width: 100%;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .brand span:last-child {
    white-space: normal;
    line-height: 1.05;
  }

  .nav-links {
    top: 126px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

  .hero-actions a,
  .cta-actions a {
    width: 100%;
  }

  .trust-icons img {
    width: 62px;
    height: 62px;
  }

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

  .services-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .reviews-top {
    display: block;
  }

  .carousel-controls {
    margin-top: 18px;
  }

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

  .cta-panel {
    padding: 28px;
  }

  .site-footer {
    padding-bottom: 104px;
  }

  .mobile-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: block;
    padding: 10px max(12px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right));
    background: rgba(17, 17, 17, 0.96);
  }

  .mobile-call-bar a {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
    white-space: nowrap;
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .mobile-call-bar .phone-number {
    color: var(--black);
  }
}
