:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4f9;
  --ink: #0e1726;
  --ink-soft: #526074;
  --line: rgba(14, 23, 38, 0.10);
  --hero: #0c1d33;
  --hero-soft: rgba(8, 18, 34, 0.58);
  --accent: #77d2ff;
  --accent-strong: #2ea4e6;
  --accent-dark: #0d5f91;
  --shadow: 0 24px 80px rgba(10, 21, 38, 0.16);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; width: 100%; height: auto; }
iframe { border: 0; }
address { font-style: normal; }

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

.section {
  padding: 92px 0;
}

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d9f2ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.eyebrow-dark {
  color: #0d5f91;
  background: rgba(119, 210, 255, 0.14);
  border-color: rgba(119, 210, 255, 0.28);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
}

p { color: var(--ink-soft); }

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

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 17, 33, 0.18) 0%, rgba(8, 17, 33, 0.62) 48%, rgba(8, 17, 33, 0.92) 100%),
    radial-gradient(circle at 12% 20%, rgba(119, 210, 255, 0.18), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(14, 95, 145, 0.22), transparent 25%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 44px;
}

.topbar {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 10px 0 18px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.topbar-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.80);
}

.call-pill {
  justify-self: end;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #06131f;
  background: linear-gradient(135deg, var(--accent), #d1f1ff);
  box-shadow: 0 12px 30px rgba(15, 121, 180, 0.25);
}

.call-pill:hover { text-decoration: none; transform: translateY(-1px); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 360px);
  gap: 28px;
  align-items: end;
  padding-top: 58px;
}

.hero-copy {
  max-width: 700px;
  animation: rise 700ms ease both;
}

.hero-panel {
  align-self: end;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(7, 13, 24, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: rise 780ms ease both;
  animation-delay: 80ms;
}

.hero-panel p { color: rgba(255, 255, 255, 0.76); }

.lede {
  max-width: 64ch;
  margin-bottom: 24px;
  font-size: clamp(1.05rem, 1.55vw, 1.18rem);
  color: rgba(244, 249, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

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

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button-primary {
  color: #08131f;
  background: linear-gradient(135deg, #b7ecff 0%, #7dd9ff 100%);
  box-shadow: 0 16px 28px rgba(90, 192, 236, 0.24);
}

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.fact-strip > div {
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.fact-strip dt {
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.fact-strip dd {
  margin: 0;
  font-size: 0.99rem;
  line-height: 1.4;
  color: #fff;
}

.panel-label {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-list,
.hours-list,
.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.panel-list li,
.hours-list li,
.details-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.panel-list li:first-child,
.hours-list li:first-child,
.details-list li:first-child { border-top: 0; }

.panel-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.panel-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
}

.panel-note p {
  margin: 0;
  color: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 690px;
}

.section-heading p:last-child { margin-bottom: 0; }

.service-grid,
.review-grid,
.faq-grid,
.details-grid {
  display: grid;
  gap: 20px;
}

.service-grid,
.review-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.info-card,
.review-card,
.faq-item,
.map-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card,
.review-card,
.faq-item {
  padding: 24px;
}

.compact {
  min-height: 100%;
}

.info-card p,
.faq-item p,
.review-card blockquote,
.review-note,
.section-heading p,
.footer span,
.footer a {
  color: var(--ink-soft);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(14, 23, 38, 0.08);
  background: #dfe8f0;
  box-shadow: var(--shadow);
}

.photo-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-grid figure:hover img {
  transform: scale(1.03);
}

.review-card blockquote {
  margin: 0 0 18px;
  font-size: 1.02rem;
}

.review-card .stars {
  margin-bottom: 12px;
  color: #e19b2d;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.review-card footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.review-card footer strong {
  color: var(--ink);
}

.review-note {
  max-width: 76ch;
  margin: 18px 0 0;
  font-size: 0.96rem;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
  gap: 24px;
  align-items: start;
}

.details-grid {
  margin-top: 8px;
}

.details-list li {
  align-items: flex-start;
}

.details-list li span {
  min-width: 80px;
  font-weight: 700;
  color: var(--ink);
}

.hours-list li {
  color: var(--ink-soft);
}

.map-column {
  position: sticky;
  top: 18px;
}

.map-frame {
  overflow: hidden;
  min-height: 520px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
}

.faq-item p { margin-bottom: 0; }

.footer {
  padding: 24px 0 42px;
  background: #0c1727;
  color: rgba(255, 255, 255, 0.76);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-row strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.footer-row div:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .topbar-links,
  .call-pill {
    justify-self: start;
  }

  .hero-grid,
  .location-grid,
  .service-grid,
  .review-grid,
  .faq-grid,
  .details-grid,
  .photo-grid,
  .fact-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    padding-top: 36px;
    align-items: start;
  }

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

  .map-column {
    position: static;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .hero-shell {
    padding-bottom: 30px;
  }

  .hero-grid,
  .location-grid,
  .service-grid,
  .review-grid,
  .faq-grid,
  .details-grid,
  .photo-grid,
  .fact-strip {
    grid-template-columns: 1fr;
  }

  .topbar-links {
    display: none;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-actions .button,
  .call-pill {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .fact-strip > div,
  .info-card,
  .review-card,
  .faq-item {
    padding: 20px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }
}

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