:root {
  color-scheme: light;
  --bg: #f7f7f5;
  --ink: #111111;
  --muted: #66615b;
  --panel: #ffffff;
  --line: #dedbd5;
  --red: #d82128;
  --red-dark: #a91217;
  --charcoal: #1b1b1d;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 10;
  transform: translateY(-200%);
  background: var(--ink);
  color: #ffffff;
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(247, 247, 245, 0.92);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 0.45rem;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.85rem;
}

.nav-links {
  gap: clamp(1rem, 3vw, 2rem);
  font-size: 0.92rem;
  color: #3e3b37;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--red);
}

.header-call {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-weight: 750;
  font-size: 0.92rem;
  box-shadow: 0 12px 32px rgba(216, 33, 40, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 3.5rem) 4rem;
}

.rating-line,
.section-heading p,
.split-copy > p:first-child,
.location-card > div > p:first-child {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 13.5ch;
  font-size: clamp(3.1rem, 6.4vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-text {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: #494541;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0 1.3rem;
  border-radius: 999px;
  font-weight: 850;
}

.button.primary {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 14px 38px rgba(216, 33, 40, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2.4rem 0 0;
}

.hero-facts div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.64);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.35rem 0 0;
  font-weight: 760;
}

.hero-media {
  position: relative;
  min-height: min(68vh, 760px);
  overflow: hidden;
  border-radius: 0.65rem;
  background: #222222;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.52));
  pointer-events: none;
}

.floating-card {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.floating-card span {
  color: var(--muted);
  font-size: 0.93rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 clamp(1rem, 4vw, 3.5rem);
  border-block: 1px solid var(--line);
}

.trust-strip span {
  padding: 1.15rem;
  text-align: center;
  font-weight: 800;
}

.trust-strip span + span {
  border-left: 1px solid var(--line);
}

.section,
.split-section,
.cta {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3.5rem);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2rem;
}

.section-heading h2,
.split-copy h2,
.location-card h2,
.cta h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: var(--panel);
}

.service-card {
  min-height: 235px;
  padding: 1.25rem;
}

.service-icon {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 50%;
  background: #161616;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 850;
}

.service-card h3 {
  margin: 2.3rem 0 0.8rem;
  font-size: 1.35rem;
}

.service-card p,
.split-copy p,
.location-card p,
.cta p {
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--charcoal);
  color: #ffffff;
}

.split-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: 0.65rem;
}

.split-copy p {
  color: #c9c4bd;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  font-weight: 760;
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--red);
}

.review-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.review-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0 1rem;
}

.review-track::-webkit-scrollbar {
  height: 0.55rem;
}

.review-track::-webkit-scrollbar-thumb {
  background: #c8c1ba;
  border-radius: 999px;
}

.review-card {
  flex: 0 0 min(390px, 86vw);
  scroll-snap-align: start;
  padding: 1.4rem;
}

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

.review-card p {
  min-height: 6rem;
  margin: 1.2rem 0 1.5rem;
  font-size: 1.2rem;
  line-height: 1.45;
}

.review-card span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.review-control {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 260px;
  gap: 1rem;
}

.photo-grid img {
  border-radius: 0.55rem;
}

.photo-grid img:first-child {
  grid-row: span 2;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: 0.7rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-grid a,
.contact-grid div {
  display: grid;
  gap: 0.3rem;
  min-height: 5.6rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.contact-grid span {
  color: var(--muted);
}

iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
  border-radius: 0.55rem;
}

.cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--ink);
  color: #ffffff;
}

.cta p {
  max-width: 560px;
  color: #d8d2cb;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3.5rem);
  background: #090909;
  color: #ffffff;
}

.site-footer div:first-child {
  display: grid;
  gap: 0.2rem;
}

.site-footer span {
  color: #b8b3ad;
}

.footer-links {
  gap: 1rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero,
  .split-section,
  .location-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-media,
  .split-image {
    min-height: 460px;
  }

  .service-grid,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid img:first-child {
    grid-row: span 1;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip span:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .header-call {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.35rem);
  }

  .hero-facts,
  .service-grid,
  .photo-grid,
  .contact-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .split-image {
    min-height: 340px;
  }

  .trust-strip span + span,
  .trust-strip span:nth-child(3),
  .trust-strip span:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .review-shell {
    grid-template-columns: 1fr;
  }

  .review-control {
    display: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
