:root {
  --font-heading: "Trebuchet MS", Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --line: rgba(0, 41, 86, 0.14);
  --gold: #d9a441;
  --gold-dark: #a36f10;
  --nav-height: 86px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h3,
h4 {
  font-size: 20px;
  line-height: 1.25;
}

body.mobile-menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
}

.desktop-nav a {
  color: #172033;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 9px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: #002956;
  background: #eef4fb;
}

.phone-button,
.hero-phone,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.phone-button {
  color: #ffffff;
  background: #002956;
  box-shadow: 0 12px 30px rgba(0, 41, 86, 0.24);
}

.phone-button:hover,
.hero-phone:hover,
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 41, 86, 0.3);
}

.mobile-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: #002956;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 auto 0;
  z-index: 45;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(0, 41, 86, 0.18);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  color: #111827;
  font-size: 18px;
  font-weight: 800;
  padding: 14px 24px;
  border-top: 1px solid #edf2f7;
}

.hero {
  position: relative;
  isolation: isolate;
  background: radial-gradient(circle at top left, rgba(43, 103, 171, 0.42), transparent 34%), linear-gradient(135deg, #071b31 0%, #002956 52%, #0b3564 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(217, 164, 65, 0.28);
  transform: rotate(18deg);
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -150px;
  top: -110px;
  border-radius: 42px;
}

.hero::after {
  width: 240px;
  height: 240px;
  left: -110px;
  bottom: 40px;
  border-radius: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff2cc;
  font-size: 16px;
  font-weight: 800;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(35px, 7vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 18px 0 16px;
}

.hero p {
  color: #f4f8ff;
  font-size: 18px;
}

.stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 3px;
  font-weight: 900;
}

.gallery-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.gallery-badges img {
  width: auto;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-phone,
.cta-button {
  color: #071b31;
  background: var(--gold);
}

.hero-media {
  min-height: 100%;
}

.hero-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  background: #0b2038;
}

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

.trust-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.trust-chip {
  border-radius: 18px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.section-pad {
  padding: 76px 0;
}

.section-dark {
  background: linear-gradient(135deg, #071b31, #002956);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0;
}

.title-sticker {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #eaf2fb;
  color: #002956;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  box-shadow: inset 0 -8px 18px rgba(43, 103, 171, 0.1);
}

.section-dark .title-sticker,
.cta-band .title-sticker {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-dark p,
.section-dark li {
  color: #ecf4ff;
}

.lead {
  font-size: 18px;
  color: #334155;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 65fr) minmax(260px, 35fr);
  gap: 34px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(260px, 35fr) minmax(0, 65fr);
}

.split-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 41, 86, 0.18);
  border: 1px solid rgba(0, 41, 86, 0.12);
}

.split-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.review-shell {
  position: relative;
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform 420ms ease;
}

.review-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card,
.info-card,
.service-card,
.faq-card {
  background: #ffffff;
  color: #374151;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 41, 86, 0.08);
}

.review-card {
  padding: 24px;
  min-height: 255px;
}

.review-card .stars {
  font-size: 18px;
  letter-spacing: 2px;
}

.review-card strong,
.info-card h3,
.service-card h3,
.faq-card h3 {
  color: #111827;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #002956;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

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

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

.info-icon,
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #eaf2fb;
  color: #002956;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

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

.service-card h3,
.info-card h3,
.faq-card h3 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.service-card ul,
.clean-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

.service-card li,
.clean-list li {
  margin: 8px 0;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.reason-list li {
  list-style: none;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
}

.pill-list li {
  list-style: none;
  border-radius: 999px;
  background: #edf4fb;
  color: #002956;
  font-weight: 800;
  padding: 9px 13px;
}

.cta-band {
  background: linear-gradient(135deg, #002956, #2b67ab);
  color: #ffffff;
  border-radius: 34px;
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.site-footer {
  background: #071b31;
  color: #dce8f8;
  font-size: 14px;
  padding: 42px 0 96px;
}

.site-footer .brand {
  color: #ffffff;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 14px 12px calc(14px + env(safe-area-inset-bottom));
  background: #002956;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
  box-shadow: 0 -14px 35px rgba(0, 0, 0, 0.24);
}

.mobile-sticky-call.visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.icon-svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 767px) {
  .desktop-nav,
  .desktop-phone {
    display: none !important;
  }

  .mobile-phone-row {
    display: flex;
  }

@media (min-width: 768px) {
  .mobile-toggle,
  .mobile-menu,
  .mobile-phone-row,
  .mobile-sticky-call {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .desktop-nav a {
    font-size: 18px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .phone-button {
    font-size: 16px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header .container > div {
    row-gap: 12px;
  }
}

@media (max-width: 767px) {
  :root {
    --nav-height: 132px;
  }

  .site-header .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    font-size: 24px;
    max-width: calc(100vw - 92px);
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-phone-row .phone-button {
    width: 100%;
    min-height: 46px;
    font-size: 16px;
    padding: 12px 14px;
  }

  .hero h1 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .hero p,
  .lead {
    font-size: 16px;
  }

  .trust-strip,
  .info-grid,
  .service-grid,
  .reason-list,
  .location-grid,
  .faq-grid,
  .review-slide,
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-image {
    order: 2;
  }

  .section-pad {
    padding: 54px 0;
  }

  .section-title {
    align-items: flex-start;
  }

  .section-title h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .cta-band {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .mobile-sticky-call {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .review-track,
  .mobile-sticky-call,
  .phone-button,
  .hero-phone,
  .cta-button {
    transition: none;
  }
}
