:root {
  --bg: #0c1220;
  --bg-2: #101a2d;
  --surface: #f4f6fa;
  --surface-strong: #ffffff;
  --text: #101828;
  --text-weak: #5b6475;
  --text-inverse: #edf3ff;
  --line: rgba(16, 24, 40, 0.1);
  --line-inverse: rgba(255, 255, 255, 0.14);
  --accent: #f2c15d;
  --accent-2: #ff8f4c;
  --shadow: 0 24px 80px rgba(8, 15, 28, 0.18);
  --radius: 28px;
  --max: 1180px;
}

* { 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: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { display: block; width: 100%; }
iframe { border: 0; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.section {
  padding: 88px 0;
}
.section--soft {
  background: var(--surface);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--text-inverse);
  background: var(--bg);
  display: grid;
  align-items: end;
}
.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.02) contrast(1.02);
}
.hero__shade {
  background:
    linear-gradient(180deg, rgba(6, 10, 18, 0.06) 0%, rgba(7, 12, 21, 0.42) 38%, rgba(7, 12, 21, 0.88) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at right center, rgba(255, 190, 94, 0.14), transparent 28%);
}
.nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  padding-top: 20px;
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
}
.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(237, 243, 255, 0.8);
  font-size: 0.95rem;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 112px 0 48px;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 380px);
  gap: 30px;
  align-items: end;
}
.hero__copy {
  max-width: 760px;
}
.hero__copy h1,
.section-head h2,
.cta-block h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.96;
}
.hero__copy h1 {
  font-size: clamp(3rem, 7.2vw, 6.3rem);
  margin-top: 16px;
  max-width: 9ch;
}
.lede {
  margin: 18px 0 0;
  max-width: 62ch;
  color: rgba(237, 243, 255, 0.82);
  font-size: clamp(1rem, 1.85vw, 1.16rem);
}
.hero__actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #151515;
  box-shadow: 0 14px 32px rgba(242, 193, 93, 0.26);
}
.btn--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}
.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.11);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow--dark {
  background: rgba(16, 24, 40, 0.03);
  border-color: rgba(16, 24, 40, 0.08);
  color: #6a7280;
}
.label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.hero__facts > div {
  padding: 18px;
  background: rgba(11, 17, 31, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.hero__facts strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.35;
}
.hero__aside {
  display: grid;
  gap: 16px;
}
.hero__note,
.hero__quote {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(11, 17, 31, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.clean-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.clean-list li:first-child { border-top: 0; padding-top: 0; }
.hero__quote p {
  margin: 0 0 10px;
  font-size: 1.02rem;
  color: rgba(237, 243, 255, 0.88);
}
.hero__quote small {
  color: rgba(237, 243, 255, 0.62);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-head h2,
.cta-block h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  margin-top: 16px;
}
.section-head p,
.cta-block p {
  margin: 16px 0 0;
  color: var(--text-weak);
  font-size: 1.04rem;
}

.service-grid {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.service-row h3,
.review-item__meta strong,
.contact-panel h3,
.faq-item summary,
.detail-list strong,
.footer strong {
  margin: 0;
  font-size: 1.12rem;
}
.service-row p,
.review-item__quote,
.contact-panel li span,
.faq-item p,
.footer p {
  color: var(--text-weak);
}

.review-stack {
  display: grid;
  gap: 18px;
}
.review-item {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
}
.review-item__quote {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}
.review-item__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-weak);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 420px);
  gap: 24px;
}
.maps-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.photo,
.map-frame,
.contact-panel {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
}
.photo {
  min-height: 220px;
}
.photo--large {
  grid-row: span 2;
  min-height: 456px;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.photo:hover img { transform: scale(1.02); }
.contact-panel {
  display: grid;
  grid-template-rows: auto 1fr;
}
.contact-panel__block {
  padding: 26px;
}
.detail-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.detail-list li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.detail-list li:first-child { border-top: 0; padding-top: 0; }
.detail-list span {
  color: var(--text-weak);
  font-size: 0.93rem;
}
.map-frame { min-height: 360px; }
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.faq-item {
  padding: 24px 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 14px 0 0; }

.cta-block {
  padding: 34px;
  border-radius: calc(var(--radius) + 6px);
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(242, 193, 93, 0.22), transparent 34%),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  box-shadow: var(--shadow);
}
.cta-block p { color: rgba(237, 243, 255, 0.78); }

.footer {
  padding: 28px 0 46px;
  background: var(--bg);
  color: rgba(237, 243, 255, 0.76);
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__meta {
  text-align: right;
}
.footer p {
  margin: 4px 0 0;
  color: rgba(237, 243, 255, 0.72);
}
.footer a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); }

.motion-rise {
  animation: rise 700ms ease both;
}
.motion-rise--delay {
  animation-delay: 120ms;
}

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

@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;
  }
}

@media (max-width: 1020px) {
  .hero__grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .hero__aside {
    max-width: 640px;
  }
  .maps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .photo--large {
    grid-row: auto;
    min-height: 320px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }
  .hero__inner {
    padding-top: 96px;
  }
  .nav__links {
    display: none;
  }
  .hero__copy h1 {
    max-width: none;
  }
  .hero__facts,
  .service-row,
  .review-item__meta,
  .detail-list li,
  .footer__row {
    grid-template-columns: 1fr;
  }
  .hero__facts {
    grid-template-columns: 1fr 1fr;
  }
  .service-row {
    gap: 10px;
  }
  .maps-grid {
    grid-template-columns: 1fr;
  }
  .photo--large,
  .photo,
  .map-frame,
  .map-frame iframe {
    min-height: 260px;
  }
  .cta-block {
    padding: 26px;
  }
  .cta-actions .btn,
  .hero__actions .btn {
    width: 100%;
  }
  .footer__meta {
    text-align: left;
  }
}

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