:root {
  --green-900: #123b50;
  --green-700: #58add2;
  --green-100: #e8f6fb;
  --coral: #0e718f;
  --ink: #172b35;
  --muted: #5d6e76;
  --line: #cfe7f1;
  --paper: #ffffff;
  --soft: #f5fbfd;
  --shadow: 0 20px 50px rgba(18, 59, 80, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  max-height: 121px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: clamp(236px, 25vw, 320px);
  max-width: 320px;
  height: auto;
  max-height: 91px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.brand-text {
  display: none;
}

.brand.logo-missing .brand-logo {
  display: none;
}

.brand.logo-missing .brand-text {
  display: block;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  color: var(--green-900);
  font-size: 1.25rem;
  line-height: 1.05;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  color: var(--green-900);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--paper);
  background: var(--green-700);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
}

.carousel {
  position: relative;
  height: clamp(490px, 70vh, 740px);
  overflow: hidden;
  background: var(--green-900);
}

.slides,
.slide {
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding:
    clamp(44px, 8vw, 110px)
    clamp(18px, 7vw, 90px)
    clamp(44px, 8vw, 110px)
    clamp(92px, 11vw, 150px);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 51, 70, 0.84), rgba(24, 105, 136, 0.48) 52%, rgba(24, 105, 136, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.04));
}

.slide-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--paper);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.slide-copy .eyebrow {
  color: #9ed8ef;
}

.slide-copy h1,
.slide-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-size: 4.8rem;
  line-height: 0.98;
}

.slide-copy p:not(.eyebrow) {
  max-width: 58ch;
  margin: 22px 0 30px;
  font-size: 1.18rem;
}

.button,
.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  background: var(--coral);
  border: 0;
  border-radius: 8px;
}

.button:hover,
.button:focus-visible,
.phone-link:hover,
.phone-link:focus-visible {
  background: #0b5e78;
  outline: 3px solid rgba(88, 173, 210, 0.3);
  outline-offset: 3px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--green-900);
  font-size: 2.4rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 8px;
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  color: var(--paper);
  background: var(--green-700);
  outline: none;
}

.carousel-control.prev {
  left: clamp(14px, 3vw, 34px);
}

.carousel-control.next {
  right: clamp(14px, 3vw, 34px);
}

.carousel-dots {
  position: absolute;
  right: clamp(18px, 6vw, 80px);
  bottom: clamp(18px, 5vw, 50px);
  z-index: 6;
  display: flex;
  gap: 10px;
}

.dot {
  width: 34px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.dot.is-active {
  background: var(--coral);
}

.section {
  padding: clamp(62px, 9vw, 112px) clamp(18px, 5vw, 64px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro {
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 64px);
  background: var(--green-100);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
}

.intro h2,
.section h2 {
  margin: 0;
  color: var(--green-900);
  font-size: 3.2rem;
  line-height: 1.08;
}

.intro p:last-child,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  background: var(--paper);
}

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

.service-card {
  min-height: 260px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.service-icon {
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  color: var(--coral);
}

.service-icon path,
.service-icon circle,
.service-icon line,
.service-icon polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 1.22rem;
}

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

.contact {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
}

.contact-copy {
  align-self: center;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

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

.contact-actions p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.phone-link {
  justify-self: start;
  font-size: 1.05rem;
}

.map-wrap {
  min-height: 390px;
  overflow: hidden;
  background: var(--green-100);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.site-footer {
  padding: 24px clamp(18px, 5vw, 64px);
  color: var(--paper);
  text-align: center;
  background: var(--green-900);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }

  .brand-logo {
    display: none;
  }

  .brand-text {
    display: block;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 6px;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
  }

  .carousel,
  .slides,
  .slide {
    height: clamp(500px, 76vh, 640px);
  }

  .slide {
    padding: 72px 24px 96px;
  }

  .slide::after {
    background: linear-gradient(0deg, rgba(11, 51, 70, 0.88), rgba(24, 105, 136, 0.38));
  }

  .slide-copy h1,
  .slide-copy h2 {
    max-width: 13ch;
    font-size: 3.35rem;
  }

  .slide-copy p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .intro h2,
  .section h2 {
    font-size: 2.4rem;
  }

  .carousel-control {
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .carousel-dots {
    right: auto;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
  }

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

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

@media (max-width: 620px) {
  .carousel,
  .slides,
  .slide {
    height: clamp(480px, 76vh, 600px);
  }

  .slide-copy h1,
  .slide-copy h2 {
    font-size: 2.55rem;
  }

  .intro h2,
  .section h2 {
    font-size: 2rem;
  }

  .carousel-control {
    width: 42px;
    height: 42px;
  }

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

  .service-card {
    min-height: auto;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
  }
}
