:root {
  color-scheme: dark;
  --bg: #081018;
  --bg-soft: #0d1824;
  --panel: rgba(9, 18, 28, 0.72);
  --panel-strong: rgba(7, 14, 22, 0.9);
  --text: #eff4fb;
  --muted: rgba(223, 233, 244, 0.76);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --accent: #8fc7ff;
  --accent-strong: #d5ebff;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
  --radius: 22px;
  --content: min(1120px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(75, 122, 173, 0.22), transparent 30%),
    linear-gradient(180deg, #081018 0%, #09131c 34%, #071017 100%);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-color: rgba(143, 199, 255, 0.6);
  text-underline-offset: 0.16em;
}

a:hover {
  text-decoration-color: var(--accent);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--panel-strong);
  border: 1px solid var(--line-strong);
  transition: transform 180ms ease;
  z-index: 50;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: end;
  padding: 1rem 0 4.5rem;
  background:
    linear-gradient(90deg, rgba(5, 12, 20, 0.84) 0%, rgba(5, 12, 20, 0.66) 40%, rgba(5, 12, 20, 0.38) 65%, rgba(5, 12, 20, 0.54) 100%),
    url('image_01.png') center center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 16, 0.1) 0%, rgba(4, 10, 16, 0.2) 100%);
  pointer-events: none;
}

.hero__topbar,
.hero__content,
.section,
.site-footer {
  width: var(--content);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.hero__topbar {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: var(--content);
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 14, 22, 0.4);
  backdrop-filter: blur(10px);
}

.brand-lockup {
  display: grid;
  gap: 0.08rem;
}

.brand-lockup__eyebrow,
.hero__kicker,
.section__eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(223, 233, 244, 0.74);
}

.brand-lockup__name {
  font-size: 0.98rem;
  font-weight: 650;
}

.topbar-call {
  white-space: nowrap;
  padding: 0.64rem 0.9rem;
  border-radius: 999px;
  background: rgba(143, 199, 255, 0.12);
  border: 1px solid rgba(143, 199, 255, 0.28);
  text-decoration: none;
}

.hero__content {
  max-width: 41rem;
  padding-top: 6rem;
  animation: rise 700ms ease both;
}

.hero h1,
.section h2,
.contact-band h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6.1rem);
  max-width: 8ch;
  margin-top: 0.3rem;
}

.hero__lede {
  margin: 1.1rem 0 0;
  max-width: 32rem;
  font-size: clamp(1.06rem, 2vw, 1.2rem);
  color: rgba(241, 246, 252, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button--primary {
  background: linear-gradient(180deg, rgba(165, 214, 255, 0.98), rgba(121, 181, 240, 0.98));
  color: #061019;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(81, 136, 192, 0.28);
}

.button--secondary {
  background: rgba(9, 18, 28, 0.44);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 2rem 0 0;
  padding: 0;
}

.hero__facts div {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(6, 14, 22, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero__facts dt {
  color: var(--accent-strong);
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

.hero__facts dd {
  margin: 0;
  color: rgba(241, 246, 252, 0.92);
}

.section {
  padding: 5rem 0 0;
  animation: rise 700ms ease both;
}

.section__head {
  display: grid;
  gap: 0.55rem;
  max-width: 42rem;
  margin-bottom: 1.8rem;
}

.section__head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section__head p {
  margin: 0;
  color: var(--muted);
  max-width: 44rem;
}

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

.service-list__item,
.review,
.location-grid__info,
.faq-list details,
.contact-band,
.map-shell {
  border: 1px solid var(--line);
  background: rgba(10, 18, 28, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.service-list__item {
  min-height: 100%;
  border-radius: var(--radius);
  padding: 1.3rem;
}

.service-list__item h3,
.location-grid__info h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
}

.service-list__item p,
.location-grid__info p,
.site-footer p,
.contact-band p,
.review blockquote,
.review figcaption,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

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

.review {
  margin: 0;
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.15rem;
}

.review blockquote {
  font-size: 1.02rem;
  color: rgba(243, 247, 252, 0.94);
}

.review figcaption {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: rgba(223, 233, 244, 0.76);
}

.section--media {
  padding-top: 5rem;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, filter 220ms ease;
}

.photo-strip img:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.location-grid__info {
  border-radius: var(--radius);
  padding: 1.4rem;
}

.details-list {
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.details-list div {
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.details-list dt {
  color: var(--accent-strong);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.details-list dd {
  margin: 0;
  color: rgba(241, 246, 252, 0.94);
}

.map-shell {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 650;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent-strong);
}

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

.faq-list p {
  margin-top: 0.8rem;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.contact-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  padding: 0 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  color: rgba(223, 233, 244, 0.72);
}

.site-footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
}

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

@media (max-width: 920px) {
  .hero {
    padding-bottom: 3.5rem;
  }

  .hero__topbar,
  .hero__content,
  .section,
  .site-footer {
    width: min(100vw - 1.2rem, 1120px);
  }

  .hero__topbar {
    border-radius: 20px;
  }

  .hero__facts,
  .service-list,
  .reviews,
  .photo-strip,
  .location-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-band,
  .site-footer {
    flex-direction: column;
    align-items: start;
  }

  .hero h1 {
    max-width: 10ch;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 92svh;
    padding-bottom: 2.5rem;
  }

  .hero__topbar {
    position: static;
    transform: none;
    width: min(100vw - 1rem, 1120px);
    margin-top: 0.5rem;
  }

  .hero__content {
    padding-top: 4.8rem;
  }

  .hero__facts {
    grid-template-columns: 1fr;
  }

  .photo-strip img,
  .map-shell,
  .map-shell iframe {
    min-height: 240px;
  }
}

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