:root {
  --navy: #071d3b;
  --navy-deep: #031229;
  --cyan: #27c8ec;
  --blue: #1687df;
  --violet: #9b4bd3;
  --ink: #102033;
  --muted: #657488;
  --line: #dce6ef;
  --surface: #f6fbff;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(7, 29, 59, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 230, 239, 0.84);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.header-cta,
.nav-toggle,
.button {
  min-height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 13px;
  color: #314258;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: #eaf8fd;
}

.header-cta {
  padding: 10px 18px;
  color: var(--white);
  background: var(--navy);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  padding: 8px 12px;
}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: stretch;
  background: var(--navy-deep);
  color: var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 7vw, 92px);
}

.hero h1,
.page-hero h1,
.contact-copy h1,
.about-intro h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.button {
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  font: inherit;
}

.button.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan), #a8f5ff);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button.outline {
  color: var(--navy);
  border: 1px solid var(--navy);
  background: var(--white);
}

.button.dark {
  color: var(--white);
  background: var(--navy);
}

.hero-media {
  min-height: 520px;
}

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

.quick-quote,
.proof-bar,
.services-band,
.reviews-preview,
.plans-section,
.page-hero,
.service-detail,
.gallery-grid,
.split-section,
.values,
.contact-layout {
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px);
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--white);
  background: var(--cyan);
}

.proof-bar div {
  display: grid;
  gap: 2px;
  min-height: 126px;
  align-content: center;
  padding: 24px clamp(18px, 4vw, 54px);
  background: var(--navy);
}

.proof-bar strong {
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.proof-bar span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading h2,
.split-section h2,
.service-detail h2,
.values h2,
.contact-form h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.split-section p,
.page-hero p,
.contact-copy p,
.service-detail p,
.values p {
  color: var(--muted);
  font-size: 1.04rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form label,
.quote-form fieldset {
  min-width: 0;
}

.quote-form label span,
.quote-form legend {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.quote-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.quote-form input[type="radio"] {
  width: auto;
  min-height: 0;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.quote-actions[hidden] {
  display: none;
}

.services-band,
.reviews-preview,
.values {
  background: var(--surface);
}

.service-grid,
.review-grid,
.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-grid article,
.review-grid blockquote,
.values article {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.service-grid article {
  display: flex;
  flex-direction: column;
}

.service-grid img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.service-symbol {
  display: grid;
  aspect-ratio: 1.18;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
}

.service-grid h3,
.service-grid p,
.values h2,
.values p {
  margin-left: 18px;
  margin-right: 18px;
}

.service-grid h3 {
  margin-top: 20px;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.2rem;
}

.service-grid p,
.values p {
  margin-bottom: 22px;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split-section img {
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(39, 200, 236, 0.16);
}

.review-grid blockquote {
  padding: 24px;
}

.review-grid p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 750;
}

.review-grid cite {
  color: var(--muted);
  font-style: normal;
}

.plans-section {
  color: var(--white);
  background: var(--navy-deep);
}

.plans-section .section-heading h2 {
  color: var(--white);
}

.plans-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.plan-grid article {
  display: grid;
  min-height: 190px;
  align-content: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.plan-grid p,
.plan-grid span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.plan-grid strong {
  color: var(--cyan);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.plans-section .button.dark {
  color: var(--navy);
  background: var(--cyan);
}

.review-carousel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 18px;
  align-items: center;
}

.review-stage {
  position: relative;
  min-height: 270px;
}

.review-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  margin: 0;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(12px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.review-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.review-slide p {
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(1.12rem, 2.4vw, 1.55rem);
  font-weight: 750;
  line-height: 1.45;
}

.review-slide cite {
  color: var(--navy);
  font-style: normal;
  font-weight: 900;
}

.stars {
  color: #f5ae18;
  letter-spacing: 0.08em;
}

.review-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 1.35rem;
}

.review-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 800;
}

.review-footer a {
  color: var(--blue);
}

.live-reviews {
  min-height: 260px;
}

.live-review-footer {
  justify-content: flex-end;
}

.page-hero {
  background: var(--navy-deep);
  color: var(--white);
}

.page-hero h1 {
  max-width: 960px;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.service-detail {
  display: grid;
  gap: 34px;
}

.service-detail article {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
}

.service-detail article:nth-child(even) img {
  order: 2;
}

.service-detail img {
  width: 100%;
  aspect-ratio: 1.18;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 12px;
  color: var(--navy);
  font-weight: 850;
}

.about-intro {
  padding-top: clamp(42px, 7vw, 94px);
}

.values {
  padding-top: 0;
}

.values article {
  padding: 22px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--surface);
}

.contact-copy {
  position: sticky;
  top: 96px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a,
.contact-methods div {
  display: grid;
  gap: 2px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-methods span {
  color: var(--muted);
  font-weight: 800;
}

.contact-methods strong {
  color: var(--navy);
  overflow-wrap: anywhere;
}

.contact-form {
  grid-template-columns: 1fr;
}

.contact-form h2 {
  margin-bottom: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-deep);
}

.site-footer img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer p {
  margin: 10px 0 0;
  color: var(--white);
  font-weight: 900;
}

.site-footer nav,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-contact {
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    flex-wrap: wrap;
  }

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

  .header-cta {
    display: none;
  }

  .hero,
  .split-section,
  .service-detail article,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 420px;
  }

  .quote-form,
  .proof-bar,
  .service-grid,
  .review-grid,
  .plan-grid,
  .values,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail article:nth-child(even) img {
    order: 0;
  }

  .contact-copy {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .brand span {
    max-width: 190px;
    line-height: 1.1;
  }

  .hero h1,
  .page-hero h1,
  .contact-copy h1,
  .about-intro h1 {
    font-size: 2.55rem;
  }

  .hero-copy {
    padding: 34px 20px;
  }

  .hero-media {
    min-height: 360px;
  }

  .quote-form,
  .service-grid,
  .review-grid,
  .plan-grid,
  .values,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .proof-bar {
    grid-template-columns: 1fr;
  }

  .proof-bar div {
    min-height: 108px;
  }

  .quote-actions {
    display: grid;
  }

  .review-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .review-arrow {
    width: 38px;
    height: 38px;
  }

  .review-stage {
    min-height: 390px;
  }

  .review-footer {
    align-items: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}
