:root {
  color-scheme: dark;
  --bg: #050505;
  --ink: #f7f7f7;
  --muted: #b9b9b9;
  --faint: #777;
  --panel: #101010;
  --panel-2: #171717;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 280px),
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.12), transparent 34rem);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.brand,
.site-nav,
.hero-actions,
.panel-actions,
.site-footer div,
.contact-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.site-nav {
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: 48px 0 84px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 12vw, 9.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5.4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.15;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 750;
  line-height: 1.18;
}

.hero-text,
.large-copy,
.section-heading p,
.promise-list p,
.contact-copy p,
.contact-panel p,
.hours-section p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 620px;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.panel-actions,
.address-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 780;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.button-primary {
  background: #fff;
  color: #050505;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.hero-media,
.contact-panel,
.service-card,
.promise-list article,
.business-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}

.hero-media {
  margin: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
}

.metrics,
.section,
.contact-section,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics div {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  line-height: 1;
}

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

.section {
  padding: 116px 0 0;
}

.section-heading {
  margin-bottom: 42px;
}

.large-copy {
  max-width: 930px;
  font-size: clamp(1.18rem, 2.5vw, 2rem);
}

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

.service-card {
  display: grid;
  align-content: space-between;
  min-height: 170px;
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, #202020, #101010);
}

.service-card span,
.promise-list span {
  color: var(--faint);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 44px 0 0;
}

.highlight-card {
  background: #fff;
  color: #050505;
}

.highlight-card span {
  color: #555;
}

.split-section {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 56px;
  align-items: start;
}

.promise-list {
  display: grid;
  gap: 14px;
}

.promise-list article {
  padding: 24px;
}

.promise-list h3 {
  margin-top: 18px;
}

.promise-list p {
  margin-bottom: 0;
}

.hours-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.hours-section h2 {
  margin-bottom: 8px;
}

.hours-section p {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.address-section {
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.address-actions {
  align-items: center;
}

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

.business-grid article {
  display: grid;
  gap: 14px;
  min-height: 152px;
  padding: 24px;
}

.business-grid span {
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.business-grid strong {
  font-size: 1.08rem;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: stretch;
  padding: 120px 0;
}

.contact-list {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  color: var(--ink);
}

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

.contact-panel {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 390px;
  padding: 34px;
}

.contact-panel img {
  width: 96px;
  height: 96px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.contact-panel h3 {
  max-width: 540px;
  font-size: clamp(1.7rem, 4vw, 3.3rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  gap: 20px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.96);
  }

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

  .site-nav a {
    width: 100%;
    padding: 14px;
  }

  .hero,
  .split-section,
  .contact-section,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-media {
    order: -1;
  }

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

@media (max-width: 680px) {
  .site-header,
  .hero,
  .metrics,
  .section,
  .contact-section,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  .brand span {
    max-width: 148px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .metrics,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 86px;
  }

  .service-card {
    min-height: 138px;
  }

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

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

  .site-footer div {
    flex-wrap: wrap;
  }
}
