:root {
  --bg: #0a0b0d;
  --bg-2: #101114;
  --ink: #f5f5f7;
  --ink-2: #c7c7cc;
  --muted: #8e8e93;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #2997ff;
  --accent-2: #0071e3;
  --max: 1120px;
  --nav-h: 64px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --font: "Montserrat", "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: #fff; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: #fff;
  color: #111;
  padding: 8px 12px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 13, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--nav-h);
  padding: 8px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  width: 112px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #d2d2d7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: #fff; }

.cta-pill {
  background: var(--accent-2) !important;
  color: #fff !important;
  padding: 0 20px;
  border-radius: 980px;
  letter-spacing: 0.08em !important;
}

.cta-pill:hover { background: #0077ed !important; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.hero-compact {
  min-height: 48svh;
  padding: 56px 28px 40px;
}
.hero-compact h1 {
  font-size: clamp(32px, 4.6vw, 48px);
}
.hero-compact .lede { margin-bottom: 22px; }

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  overflow: hidden;
  padding: 72px 28px 48px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

/* Text over photo: left-weighted veil for ~7:1 on white type, photo still visible. */
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 11, 13, 0.72) 0%, rgba(10, 11, 13, 0.46) 38%, rgba(10, 11, 13, 0.12) 68%, transparent 100%),
    linear-gradient(180deg, rgba(10, 11, 13, 0.18) 0%, transparent 36%, rgba(10, 11, 13, 0.42) 100%);
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.kicker {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d2d2d7;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

h1 {
  margin: 0 0 16px;
  max-width: 18ch;
  font-size: clamp(36px, 5.6vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
}

.lede {
  margin: 0 0 28px;
  max-width: 42ch;
  font-size: 18px;
  font-weight: 500;
  color: #f5f5f7;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 980px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.btn-primary {
  background: var(--accent-2);
  color: #fff;
}
.btn-primary:hover {
  background: #0077ed;
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}
.btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f5f5f7;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  min-height: 44px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
.hero-rating:hover { color: #fff; }
.hero-rating .dot { opacity: 0.5; }

.hero-facts {
  list-style: none;
  margin: 4px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 8px;
  max-width: 48ch;
}
.hero-facts li {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #f5f5f7;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
.hero-facts strong {
  display: inline-block;
  min-width: 5.2em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.services {
  padding: 88px 0 72px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.svc-intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.svc-intro .kicker { grid-column: 1 / 4; color: var(--muted); margin: 0; }
.svc-intro h2 {
  grid-column: 4 / 13;
  margin: 0;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  max-width: 22ch;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.svc {
  grid-column: span 4;
  position: relative;
  padding: 32px 28px 36px 0;
  border-bottom: 1px solid var(--line);
}

.svc + .svc { padding-left: 32px; border-left: 1px solid var(--line); }

.svc-num {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 16px;
}

.svc h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.svc p {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.reviews {
  padding: 72px 0 88px;
}

.reviews-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.reviews-head h2 {
  grid-column: 1 / 9;
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}

.view-all {
  grid-column: 9 / 13;
  justify-self: end;
  align-self: end;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.review-list {
  border-top: 1px solid var(--line);
}

.review-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.reviewer {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.stars {
  margin: 4px 0 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.review-row > p:last-of-type {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  font-weight: 500;
  max-width: 62ch;
}

.visit {
  padding: 0 0 96px;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  align-items: start;
}

.visit-copy { grid-column: 1 / 6; }
.map-wrap { grid-column: 6 / 13; }

.visit h2,
.contact-page h1 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 28px;
  font-size: 15px;
}

.hours th,
.hours td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.hours th {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  width: 42%;
}

.hours td { color: #fff; }

.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
}

.contact-line a { color: #fff; }
.contact-line a:hover { color: var(--accent); }

.map-wrap {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #111418;
  border: 1px solid var(--line);
}

.map-frame {
  width: 100%;
  height: 360px;
  border: 0;
}

.map-link { display: block; height: 100%; }
.map-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}


.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { margin-bottom: 0; color: var(--muted); }

.detail-list {
  padding: 48px 0 96px;
}

.detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.detail .num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-top: 6px;
}

.detail h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.detail p, .detail ul {
  margin: 0;
  color: var(--muted);
  max-width: 56ch;
}

.detail ul { padding-left: 1.1em; }
.detail li { margin: 6px 0; }
.detail-cta { margin-top: 20px; }

.contact-page { padding: 64px 0 96px; }

.footer {
  background: #08090b;
  color: #c7c7cc;
  padding: 48px 28px 28px;
  border-top: 1px solid var(--line);
}

.footer-bar {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
}

.footer .logo img { width: 96px; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.disclaimer {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.6;
  color: #6e6e73;
}

@media (max-width: 980px) {
  .svc { grid-column: span 12; padding: 28px 0; }
  .svc + .svc { padding-left: 0; border-left: 0; }
  .svc-intro .kicker,
  .svc-intro h2,
  .reviews-head h2,
  .view-all,
  .visit-copy,
  .map-wrap { grid-column: 1 / -1; }
  .view-all { justify-self: start; }
  .review-row { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 720px) {
  html, body { overflow-x: hidden; max-width: 100%; }

  .nav-toggle { display: inline-flex; }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 11, 13, 0.98);
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links a { font-size: 15px; width: 100%; }
  .cta-pill { justify-content: center; width: 100%; }

  .nav-inner {
    padding: 8px 16px;
    position: relative;
  }

  .logo img { width: 96px; }

  .hero {
    min-height: 100svh;
    padding: 36px 16px 20px;
    align-items: flex-end;
  }

  .hero-media img { object-position: 82% 48%; }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 11, 13, 0.78) 0%, rgba(10, 11, 13, 0.58) 55%, rgba(10, 11, 13, 0.32) 100%),
      linear-gradient(180deg, rgba(10, 11, 13, 0.28) 0%, rgba(10, 11, 13, 0.12) 28%, rgba(10, 11, 13, 0.72) 100%);
  }

  h1 {
    max-width: none;
    font-size: clamp(30px, 8.4vw, 40px);
    margin-bottom: 12px;
  }

  .lede { font-size: 16px; max-width: none; margin-bottom: 16px; }

  .ctas { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; min-height: 44px; font-size: 16px; }

  .wrap, .footer { padding-left: 16px; padding-right: 16px; }

  .services { padding: 56px 0 40px; }

  .reviews { padding: 48px 0 56px; }
  .visit { padding-bottom: 56px; }
  .map-frame { height: 240px; }
  .map-wrap { min-height: 220px; width: 100%; }

  .detail { grid-template-columns: 1fr; gap: 8px; }
}

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