:root {
  --bg: #0b1320;
  --bg-2: #0f1b2f;
  --surface: #f5f7fb;
  --surface-2: #ffffff;
  --text: #0f172a;
  --muted: #5f6b7f;
  --line: rgba(15, 23, 42, 0.1);
  --line-strong: rgba(15, 23, 42, 0.16);
  --accent: #89c2ff;
  --accent-2: #5eead4;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 28px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { display: block; max-width: 100%; }
iframe { border: 0; }
strong { font-weight: 700; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.narrow { max-width: 760px; }
.section { padding: 92px 0; }
.section-alt { background: var(--surface); }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 99;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { left: 16px; }
.eyebrow,
.section-kicker,
.panel-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-kicker { color: #64748b; }
.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  color: #fff;
  background: var(--bg);
}
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.88) contrast(1.02) brightness(0.74);
}
.hero-shade {
  background:
    linear-gradient(180deg, rgba(4, 9, 16, 0.28) 0%, rgba(4, 9, 16, 0.7) 58%, rgba(4, 9, 16, 0.94) 100%),
    radial-gradient(circle at 20% 18%, rgba(137, 194, 255, 0.18), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(94, 234, 212, 0.14), transparent 18%);
  pointer-events: none;
}
.topbar {
  position: relative;
  z-index: 2;
  padding: 18px 0;
}
.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.topbar nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}
.topbar nav a {
  position: relative;
  padding-bottom: 2px;
}
.topbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 180ms ease, background 180ms ease;
}
.topbar nav a:hover::after { transform: scaleX(1); background: rgba(255,255,255,0.7); }
.hero-layout {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: end;
  padding: 28px 0 44px;
}
.hero-copy {
  max-width: 760px;
  padding-bottom: 10px;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}
.hero-lede {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.86);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #07111d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}
.hero-facts > div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(10, 18, 32, 0.34);
  backdrop-filter: blur(12px);
}
.hero-facts dt {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-facts dd {
  margin: 0;
  font-size: 1rem;
  color: #fff;
  line-height: 1.35;
}
.hero-rail {
  display: grid;
  align-self: stretch;
  padding-bottom: 10px;
}
.info-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(7, 13, 24, 0.6);
  box-shadow: 0 30px 90px rgba(0,0,0,0.24);
  backdrop-filter: blur(16px);
}
.signal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.signal-list li {
  padding: 16px 0;
}
.signal-list li + li { border-top: 1px solid rgba(255,255,255,0.11); }
.signal-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
}
.signal-list span {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}
.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.section-intro {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.feature-stack {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.feature-row h3,
.faq-item h3,
.hours-block h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.feature-row p,
.faq-item p,
.hours-block li,
.contact-panel p {
  margin: 0;
  color: var(--muted);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.quote {
  margin: 0;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.quote p {
  margin: 0 0 20px;
  font-size: 1.02rem;
  color: var(--text);
}
.quote footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}
.hours-block {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list span { color: var(--muted); }
.location-media {
  display: grid;
  gap: 16px;
}
.photo-frame,
.map-frame,
.faq-item,
.contact-panel {
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.photo-frame {
  overflow: hidden;
  margin: 0;
}
.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-frame figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}
.map-frame {
  overflow: hidden;
  min-height: 340px;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 340px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.faq-item {
  padding: 24px;
}
.faq-item h3 { margin-bottom: 10px; }
.contact-panel {
  padding: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 56%, #eefcfa 100%);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.footer {
  padding: 26px 0 48px;
  background: #fff;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.96rem;
}
@media (max-width: 980px) {
  .hero-layout,
  .location-grid,
  .faq-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .hero-layout {
    min-height: auto;
    padding-top: 10px;
  }
  .hero-copy { padding-bottom: 0; }
  .hero-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-panel { align-items: start; flex-direction: column; }
  .contact-actions { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .topbar nav { display: none; }
  .hero-copy h1 { font-size: clamp(2.6rem, 15vw, 4.2rem); }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .map-frame iframe { height: 300px; }
  .quote footer { flex-direction: column; align-items: flex-start; }
  .hero-rail { padding-bottom: 0; }
}

/* 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;
  }
}
