:root {
  --bg: #07111b;
  --bg-2: #0d1724;
  --surface: #f4efe7;
  --surface-2: #fffaf3;
  --surface-tint: #ebe2d5;
  --text: #12202b;
  --text-soft: #51606b;
  --text-light: #f4f7fb;
  --line: rgba(18, 32, 43, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --accent: #9ed3ff;
  --accent-strong: #5aaee6;
  --shadow: 0 28px 80px rgba(5, 11, 18, 0.16);
  --radius: 28px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
iframe { border: 0; display: block; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }
::selection { background: rgba(158, 211, 255, 0.36); }

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #08121d;
  transform: translateY(-160%);
  transition: transform 180ms ease;
  box-shadow: var(--shadow);
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  color: #fff;
  background: var(--bg);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  animation: drift 22s ease-out both;
  filter: saturate(0.95) contrast(1.04) brightness(0.82);
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(4, 10, 16, 0.18) 0%, rgba(4, 10, 16, 0.5) 40%, rgba(4, 10, 16, 0.9) 100%),
    linear-gradient(90deg, rgba(4, 10, 16, 0.74) 0%, rgba(4, 10, 16, 0.28) 42%, rgba(4, 10, 16, 0.68) 100%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-kicker {
  color: rgba(255, 255, 255, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.brand-name {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.phone-link:hover,
.phone-link:focus-visible,
.footer-row a:hover,
.footer-row a:focus-visible,
.business-details a:hover,
.business-details a:focus-visible {
  color: #fff;
}

.phone-link {
  padding: 12px 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  font-weight: 700;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: end;
  padding: 60px 0 40px;
}

.hero-copy,
.hero-panel,
.section-head,
.service-line,
.review-item,
.location-hero,
.business-details,
.faq-item,
.cta-band {
  animation: rise 720ms ease-out both;
}

.eyebrow,
.section-label,
.panel-label,
.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.section-label {
  border-color: rgba(18, 32, 43, 0.12);
  background: rgba(18, 32, 43, 0.04);
  color: var(--accent-strong);
}

.section-label-light {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ccecff;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  max-width: 10ch;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.intro {
  max-width: 38rem;
  margin: 0;
  font-size: clamp(1.03rem, 1.8vw, 1.16rem);
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(3, 9, 14, 0.18);
}

.button-primary {
  background: linear-gradient(135deg, #fff4df, #f2e0bd);
  color: #101b25;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.hero-facts div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-facts dt {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-facts dd {
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.hero-panel {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 15, 22, 0.48);
  backdrop-filter: blur(14px);
}

.hero-panel h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-panel li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.97rem;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
}

.section {
  padding: 92px 0;
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 18px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head-compact {
  margin-bottom: 8px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.section-alt .section-label { background: rgba(18, 32, 43, 0.04); color: var(--accent-strong); }
.section-cta {
  padding-top: 0;
  background: var(--surface);
}

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

.service-line,
.review-item,
.faq-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-line h3,
.review-item footer strong,
.location-copy h2,
.cta-band h2,
.faq-item summary {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.service-line p,
.review-item blockquote,
.location-copy p,
.business-details span,
.faq-item p,
.cta-band p {
  color: var(--text-soft);
}

.service-line p,
.review-item blockquote,
.faq-item p {
  margin: 12px 0 0;
}

.facts-band {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fact-item {
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(18, 32, 43, 0.06);
  box-shadow: var(--shadow);
}

.fact-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.fact-item strong {
  font-size: 1.08rem;
}

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

.review-item blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
}

.review-tag {
  border-color: rgba(18, 32, 43, 0.12);
  background: rgba(18, 32, 43, 0.04);
  color: var(--accent-strong);
  margin-bottom: 12px;
}

.review-item footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: start;
}

.location-hero {
  position: relative;
  min-height: 640px;
  overflow: clip;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: #d9e0e6;
}

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

.location-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 15, 22, 0.02) 0%, rgba(7, 15, 22, 0.46) 100%);
}

.location-hero figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
  font-size: 0.95rem;
}

.location-copy {
  display: grid;
  gap: 22px;
}

.business-details {
  display: grid;
  gap: 12px;
}

.business-details > div {
  display: grid;
  grid-template-columns: minmax(0, 130px) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.business-details > div:first-child {
  border-top: 0;
  padding-top: 0;
}

.business-details span {
  font-weight: 600;
}

.business-details strong {
  font-weight: 600;
  text-align: right;
}

.business-details a {
  color: var(--accent-strong);
}

.image-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.image-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(18, 32, 43, 0.08);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.image-row img:hover,
.image-row img:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 32px 70px rgba(5, 11, 18, 0.18);
}

.map-wrap {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(18, 32, 43, 0.08);
}

.map-wrap iframe {
  width: 100%;
  min-height: 330px;
}

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

.faq-item {
  padding-bottom: 18px;
}

.faq-item summary {
  cursor: pointer;
  padding-right: 36px;
  position: relative;
  color: var(--text);
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -1px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(18, 32, 43, 0.06);
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.cta-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #09131d 0%, #102033 58%, #13293f 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.cta-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer {
  padding: 24px 0 38px;
  background: var(--surface-tint);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.95rem;
}

@keyframes drift {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.1%, -1.4%, 0); }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1080px) {
  .hero-content,
  .section-head,
  .location-grid,
  .cta-band {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .hero-panel {
    max-width: 520px;
  }

  .hero-facts,
  .facts-band,
  .service-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 12px;
  }

  .phone-link {
    display: none;
  }

  .hero-content {
    padding: 132px 0 34px;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .hero-facts,
  .facts-band,
  .service-grid,
  .reviews-grid,
  .image-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .business-details > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .business-details strong {
    text-align: left;
  }

  .location-hero {
    min-height: 420px;
  }

  .cta-band {
    padding: 26px;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

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

/* Mobile responsiveness guardrails */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  overflow-wrap: anywhere;
}

img,
iframe,
video,
canvas,
svg {
  max-width: 100%;
}

h1,
h2,
h3,
p,
a,
li,
dt,
dd,
blockquote,
figcaption,
span,
strong,
small {
  overflow-wrap: anywhere;
}

[class*="grid"],
[class*="layout"],
[class*="columns"],
[class*="facts"],
[class*="cards"],
[class*="row"],
[class*="band"] {
  min-width: 0;
}

@media (max-width: 860px) {
  .hero,
  .hero-content,
  .hero-grid,
  .split-layout,
  .location-layout,
  .contact-layout,
  .contact-band,
  .grid-2,
  .grid-3,
  .facts,
  .hero-facts,
  .service-grid,
  .services-grid,
  .review-grid,
  .reviews-grid,
  .kpis,
  .image-row,
  .map-images {
    grid-template-columns: 1fr !important;
  }

  .topbar,
  .nav-row,
  .footer-row,
  .review footer,
  .hero-actions,
  .contact-actions {
    flex-wrap: wrap;
  }

  .button,
  .btn,
  .hero-actions > *,
  .contact-actions > * {
    width: 100%;
    max-width: 100%;
  }

  .hero,
  .hero-content,
  .hero-grid {
    min-height: auto !important;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-shell,
  .hero-inner {
    width: min(calc(100% - 24px), var(--container, var(--max, 100%))) !important;
  }

  .section {
    padding: 64px 0 !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem) !important;
    max-width: 100%;
  }

  .map-wrap,
  .location-hero {
    min-height: 320px !important;
  }

  .map-wrap iframe {
    min-height: 320px !important;
  }
}
