:root {
  --bg: #eefafb;
  --surface: #ffffff;
  --surface-cool: #ddf6f8;
  --surface-warm: #f5fcfd;
  --ink: #0c2630;
  --muted: #536b73;
  --line: #c4e7ec;
  --wash: #0f9eaa;
  --wash-dark: #11343f;
  --lime: #bfe86d;
  --clay: #2b7fa6;
  --blue: #35a6cf;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(14, 126, 142, 0.16);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(17, 52, 63, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 950;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  object-fit: cover;
  object-position: center 38%;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.brand-text {
  max-width: 210px;
  line-height: 1;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a,
.nav-call,
.text-link {
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

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

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-weight: 900;
  white-space: nowrap;
}

.nav-call:hover,
.nav-call:focus-visible {
  background: var(--white);
  color: var(--wash-dark);
  border-color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--wash-dark);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 24, 30, 0.9), rgba(7, 24, 30, 0.42) 58%, rgba(7, 24, 30, 0.18)),
    linear-gradient(0deg, rgba(7, 24, 30, 0.72), rgba(7, 24, 30, 0.08) 62%);
}

.hero__content {
  width: min(850px, calc(100% - 36px));
  margin: 0 0 clamp(96px, 16vh, 160px) clamp(18px, 7vw, 84px);
  color: var(--white);
}

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

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3.1rem, 10vw, 7.9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__facts {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 24px;
  left: clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin-left: auto;
  color: var(--white);
}

.hero__facts span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 10px 12px;
  background: rgba(17, 52, 63, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(8px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: inherit;
  font-weight: 950;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--wash);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #12b4c0;
}

.button--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.09);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

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

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

.button--wide {
  width: 100%;
}

.section {
  padding: clamp(60px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

.section__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section h2,
.image-band h2,
.subscribe-section h2 {
  margin: 0;
  font-size: clamp(2rem, 5.2vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.split,
.about-layout,
.contact-grid,
.references-layout,
.offers-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.split--intro {
  align-items: center;
}

.copy-block {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.1rem;
}

.copy-block p {
  margin: 0;
}

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

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

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.section-heading-row h2 {
  max-width: 820px;
}

.section-note {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--wash);
  border-radius: var(--radius-sm);
  color: var(--wash-dark);
  font-weight: 950;
  white-space: nowrap;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
  background: var(--wash);
}

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

.service-grid article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(14, 126, 142, 0.08);
}

.service-grid h3,
.reference-list h3,
.hours-box h3,
.contact-cta h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.15;
}

.service-grid p,
.reference-list p,
.about-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.service-grid a {
  width: fit-content;
  margin-top: auto;
  color: var(--wash);
  font-weight: 950;
}

.service-grid a:hover,
.service-grid a:focus-visible {
  color: var(--clay);
}

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

.about-layout {
  align-items: center;
}

.about-media img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-copy {
  display: grid;
  gap: 22px;
}

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

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 13px;
  height: 8px;
  border-left: 2px solid var(--wash);
  border-bottom: 2px solid var(--wash);
  transform: rotate(-45deg);
}

.offers-section {
  background: #e8f9fb;
}

.offers-layout {
  align-items: center;
}

.offers-copy {
  display: grid;
  gap: 22px;
}

.offers-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.offers-copy .button {
  width: fit-content;
}

.offers-media {
  margin: 0;
  padding: clamp(10px, 2vw, 16px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.offers-media img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
}

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

.gallery-actions {
  display: flex;
  gap: 10px;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--wash-dark);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(14, 126, 142, 0.1);
  cursor: pointer;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  color: var(--white);
  background: var(--wash);
  border-color: var(--wash);
}

.gallery-shell {
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-grid {
  display: flex;
  gap: 16px;
  margin-top: 0;
  padding: 6px 6px 20px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--wash) rgba(15, 158, 170, 0.14);
}

.gallery-card {
  min-width: 0;
  flex: 0 0 clamp(260px, 31vw, 380px);
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--wash-dark);
  box-shadow: 0 16px 48px rgba(17, 28, 24, 0.12);
  cursor: zoom-in;
  scroll-snap-align: start;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
  opacity: 0.92;
}

.references-section {
  color: var(--ink);
  background: #dff7fa;
}

.references-section .section-kicker {
  color: var(--wash);
}

.references-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.reference-list {
  display: grid;
  gap: 14px;
}

.reference-list article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(14, 126, 142, 0.08);
}

.reference-list p {
  margin-top: 9px;
  font-size: 1rem;
}

.reference-list .button {
  margin: 0;
  border-radius: var(--radius-sm);
}

.image-band {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 72px 20px;
  color: var(--white);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.image-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.image-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(7, 24, 30, 0.66);
}

.image-band__content {
  width: min(860px, 100%);
}

.image-band h2 {
  margin-bottom: 24px;
}

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

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

.contact-side {
  display: grid;
  gap: 18px;
  align-self: start;
}

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

address {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
}

address strong {
  color: var(--ink);
}

address a {
  width: fit-content;
  color: var(--wash);
  font-weight: 950;
}

address a:hover,
address a:focus-visible {
  color: var(--clay);
}

.hours-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.hours-box dl {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.hours-box dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.hours-box dt {
  font-weight: 950;
  color: var(--ink);
}

.hours-box dd {
  margin: 0;
}

.lead-form,
.contact-cta,
.subscribe-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form,
.contact-cta {
  padding: clamp(20px, 4vw, 34px);
}

.contact-cta {
  display: grid;
  align-content: center;
  gap: 18px;
}

.contact-cta h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.contact-cta p {
  margin: 0;
  color: var(--muted);
}

.form-row {
  margin-bottom: 18px;
}

.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #2e3933;
  font-size: 0.82rem;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(19, 124, 122, 0.24);
  outline-offset: 2px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--wash);
}

.form-help {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 2px 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.form-status[data-state="success"] {
  color: var(--wash);
}

.form-status[data-state="error"] {
  color: #a13a24;
}

.subscribe-section {
  padding: clamp(44px, 7vw, 76px) clamp(18px, 4vw, 56px);
  background: #d7f4f8;
}

.subscribe-section__inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  margin: 0 auto;
}

.subscribe-section h2 {
  max-width: 760px;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
}

.subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 16px;
}

.subscribe-form .form-status {
  grid-column: 1 / -1;
  margin-top: 0;
}

.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-footer {
  padding: 36px 20px;
  color: rgba(255, 255, 255, 0.78);
  background: #0a2028;
  text-align: center;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 7px 0;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.modal,
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal[hidden],
.gallery-modal[hidden] {
  display: none;
}

.modal__backdrop,
.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 22, 0.74);
  backdrop-filter: blur(8px);
}

.modal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100svh - 36px);
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.modal__body {
  max-height: calc(100svh - 36px);
  overflow: auto;
  padding: clamp(20px, 4vw, 34px);
}

.modal__panel h2 {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1;
}

.modal__body > p {
  margin: 14px 0 24px;
  color: var(--muted);
}

.modal__close,
.gallery-modal__close,
.gallery-modal__nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.modal__close,
.gallery-modal__close {
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  font-size: 1.7rem;
  line-height: 1;
}

.modal .lead-form {
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
}

.gallery-modal__panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100svh - 36px);
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #081c23;
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.gallery-modal__panel img {
  width: 100%;
  max-height: calc(100svh - 140px);
  object-fit: contain;
  border-radius: var(--radius);
}

.gallery-modal__panel p {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-align: center;
}

.gallery-modal__nav {
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 56px;
  transform: translateY(-50%);
  color: var(--white);
  background: rgba(17, 52, 63, 0.78);
  border-color: rgba(255, 255, 255, 0.24);
  font-size: 1.5rem;
}

.gallery-modal__nav--prev {
  left: 20px;
}

.gallery-modal__nav--next {
  right: 20px;
}

body.modal-open {
  overflow: hidden;
}

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

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .split,
  .about-layout,
  .contact-grid,
  .references-layout,
  .offers-layout,
  .subscribe-section__inner {
    grid-template-columns: 1fr;
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand-text {
    max-width: 164px;
    font-size: 0.92rem;
  }

  .nav-call {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .main-nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero__content {
    width: calc(100% - 32px);
    margin: 0 16px 166px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__facts {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .hero__facts span {
    min-height: 48px;
    font-size: 0.8rem;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-note {
    max-width: none;
  }

  .service-grid,
  .form-row--split,
  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .gallery-actions {
    justify-content: start;
  }

  .gallery-card {
    flex-basis: min(82vw, 320px);
  }

  .service-grid article {
    min-height: 210px;
  }

  .subscribe-form .button {
    width: 100%;
  }

  .modal,
  .gallery-modal {
    padding: 12px;
  }

  .gallery-modal__panel {
    padding: 10px;
  }

  .gallery-modal__nav {
    width: 38px;
    height: 48px;
  }

  .gallery-modal__nav--prev {
    left: 12px;
  }

  .gallery-modal__nav--next {
    right: 12px;
  }
}
