:root {
  --blue: #1658c9;
  --blue-dark: #103f91;
  --blue-soft: #edf4ff;
  --text: #111827;
  --muted: #5b6472;
  --line: #e5e7eb;
  --surface: #ffffff;
  --surface-alt: #f6f8fb;
  --surface-dark: #0c1322;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.14);
  --radius: 18px;
  --container: 1180px;
  --header-logo-height: 132px;
  --footer-logo-height: 58px;
  --header-offset: 170px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

iframe {
  display: block;
  width: 100%;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 12px;
  z-index: 9999;
  box-shadow: var(--shadow);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

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

.section-intro {
  padding-top: 2.7rem;
  padding-bottom: 2.7rem;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.intro-copy h2,
.cta-copy h2 {
  margin: 0;
  line-height: 1.08;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-subtext {
  max-width: 760px;
  margin: 0.9rem auto 0;
  color: var(--muted);
}

.section-kicker,
.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.82);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1rem 0 1.05rem;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  height: var(--header-logo-height);
  width: auto;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--text);
  margin: 5px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.15rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1f2937;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.btn,
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 999px;
  transition: 0.2s ease;
}

.btn {
  padding: 0.98rem 1.45rem;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover,
.btn-nav:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.97);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-secondary:hover {
  background: #fff;
}

.btn-nav {
  background: var(--blue);
  color: #fff !important;
  padding: 0.86rem 1.2rem;
}

.hero {
  position: relative;
  min-height: min(88vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 9, 20, 0.82) 0%, rgba(2, 9, 20, 0.62) 38%, rgba(2, 9, 20, 0.26) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.26) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 780px;
  padding: 4.2rem 0;
  text-align: left;
}

.hero-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.65rem, 6vw, 5.2rem);
  line-height: 1.02;
  max-width: 900px;
}

.hero-copy {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0 1.15rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.stars,
.review-stars {
  color: #fbbf24;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.rating-text {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.15rem;
  padding: 0;
  margin: 1.2rem 0 0;
}

.hero-points li {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.trust-strip {
  background: #f7f9fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

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

.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1rem;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.intro-text-wrap p {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

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

.gallery-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.why-card h3 {
  margin: 0 0 0.7rem;
}

.why-card p {
  margin: 0;
  color: var(--muted);
}

.window-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.window-copy p {
  margin: 0;
  color: var(--muted);
}

.check-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.check-list li {
  margin: 0.4rem 0;
}

.window-cta {
  margin-top: 1.2rem;
}

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

.window-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.window-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.window-card figcaption {
  padding: 0.9rem 1rem;
  font-weight: 700;
}

.area-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.area-pill-grid span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1rem;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.map-wrap {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-strong);
}

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

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

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.review-card p {
  margin: 0.65rem 0 0;
  color: var(--text);
}

.reviewer {
  display: inline-block;
  margin-top: 0.95rem;
  color: var(--muted);
  font-weight: 700;
}

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

.faq-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.faq-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.08rem;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

.section-cta {
  padding-top: 3.75rem;
  padding-bottom: 5.6rem;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, #0f3f93 0%, #1658c9 55%, #2f76f2 100%);
  color: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-strong);
}

.cta-copy p:not(.section-kicker) {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.btn-cta {
  min-width: 250px;
  font-size: 1.05rem;
}

.site-footer {
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.84);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  height: var(--footer-logo-height);
  width: auto;
  object-fit: contain;
}

@media (max-width: 1150px) {
  .services-grid,
  .reviews-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .area-pill-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-logo-height: 114px;
    --header-offset: 200px;
  }

  .header-inner {
    gap: 0.85rem;
    padding: 0.9rem 0 1rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0.85rem;
    padding-top: 0.4rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 3.5rem 0;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-rating,
  .hero-points {
    justify-content: center;
  }

  .intro-grid,
  .window-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  :root {
    --header-logo-height: 104px;
    --footer-logo-height: 48px;
    --header-offset: 220px;
  }

  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .section,
  .section-cta {
    padding: 4rem 0;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
    gap: 0.35rem;
    align-items: center;
  }

  .services-grid,
  .gallery-grid,
  .reviews-grid,
  .faq-grid,
  .why-grid,
  .window-images,
  .trust-grid,
  .area-pill-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    aspect-ratio: 1 / 1;
  }

  .window-card img {
    height: 280px;
  }

  .map-wrap iframe {
    height: 300px;
  }

  .cta-box {
    padding: 1.5rem;
    text-align: center;
  }

  .btn-cta {
    width: 100%;
  }
}
