:root {
  --ink: #14232b;
  --muted: #53646d;
  --line: #d7e1e4;
  --blue: #226e82;
  --blue-dark: #154c5d;
  --gold: #e9a637;
  --cream: #fbf7ee;
  --mint: #e8f3ef;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 35, 43, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  display: block;
  width: min(260px, 48vw);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.main-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-call {
  padding: 11px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: clamp(34px, 7vw, 82px) clamp(18px, 6vw, 86px) 48px;
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 25, 31, .86) 0%, rgba(10, 25, 31, .68) 45%, rgba(10, 25, 31, .26) 100%),
    linear-gradient(0deg, rgba(10, 25, 31, .34), rgba(10, 25, 31, .08));
}

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

.hero-background span {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  animation: heroFade 24s infinite;
}

.hero-background span:nth-child(2) {
  animation-delay: 6s;
}

.hero-background span:nth-child(3) {
  animation-delay: 12s;
}

.hero-background span:nth-child(4) {
  animation-delay: 18s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  8%,
  25% {
    opacity: 1;
  }

  33%,
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

.hero-media {
  order: 2;
  display: none;
}

.hero-media svg {
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(var(--shadow));
}

.hero-copy {
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .22);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

.button.secondary {
  color: var(--ink);
  background: var(--gold);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--blue-dark);
  color: var(--white);
}

.quick-strip article {
  padding: 28px clamp(18px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.quick-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.quick-strip span {
  color: rgba(255, 255, 255, .82);
}

.section,
.split-section,
.contact-section {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 6vw, 86px);
}

.catalog-section {
  background: #f7faf9;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  overflow: hidden;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 110, 130, .32);
  box-shadow: 0 18px 42px rgba(20, 35, 43, .12);
}

.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card .icon,
.service-card h3,
.service-card p {
  margin-left: 28px;
  margin-right: 28px;
}

.service-card p,
.split-section p,
.contact-copy p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-top: 24px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--mint);
  font-weight: 800;
}

.service-card p {
  margin-bottom: 28px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(300px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
  background: var(--cream);
}

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

.catalog-card {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(240px, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 110, 130, .34);
  box-shadow: 0 18px 42px rgba(20, 35, 43, .12);
}

.catalog-card img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-card img {
  min-height: 320px;
}

.catalog-card div {
  padding: 26px;
}

.catalog-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 58vh;
  display: grid;
  align-items: end;
  padding: clamp(84px, 12vw, 140px) clamp(18px, 6vw, 86px) clamp(44px, 7vw, 76px);
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(10, 25, 31, .86), rgba(10, 25, 31, .38)),
    var(--page-image);
  background-position: center;
  background-size: cover;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero h1 {
  max-width: 860px;
  color: var(--white);
}

.page-hero p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: start;
}

.detail-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.feature-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf9;
}

.feature-list h3 {
  font-size: 18px;
}

.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.side-form {
  position: sticky;
  top: 104px;
}

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

.solution-link {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}

.solution-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(20, 35, 43, .1);
}

.solution-link img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.solution-link span {
  display: block;
  padding: 14px 16px 16px;
  font-weight: 800;
}

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

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

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

.gallery-grid img {
  aspect-ratio: 4 / 5;
  opacity: .9;
  transition: transform .25s ease, opacity .25s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.gallery-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--white);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(20, 35, 43, .08);
}

.steps strong {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
}

.muted {
  background: var(--mint);
}

.service-area {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(260px, .8fr);
  gap: 24px;
  align-items: stretch;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(34, 110, 130, .18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(20, 35, 43, .1);
}

.map-card svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.pin circle {
  fill: var(--blue);
  stroke: var(--white);
  stroke-width: 5;
  filter: drop-shadow(0 5px 7px rgba(20, 35, 43, .22));
}

.pin.main circle {
  fill: var(--gold);
  stroke: var(--blue-dark);
  stroke-width: 6;
}

.pin text,
.map-label text {
  fill: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, .82);
  stroke-width: 5px;
  stroke-linejoin: round;
}

.sea-label text {
  fill: rgba(21, 76, 93, .62);
  font-size: 24px;
  font-style: italic;
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(34, 110, 130, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
}

.zone-list span {
  padding: 12px 15px;
  border: 1px solid rgba(34, 110, 130, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  background: var(--blue-dark);
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, .78);
}

.contact-copy .eyebrow {
  color: var(--gold);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.check-label {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600 !important;
}

.check-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

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

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 6vw, 86px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  .hero-media {
    order: 0;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .quick-strip,
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-card img {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

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

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

  .side-form {
    position: static;
  }

  .solution-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .header-call {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: 40px;
  }

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

  .service-grid,
  .quick-strip,
  .catalog-grid,
  .form-row,
  .feature-list,
  .solution-links {
    grid-template-columns: 1fr;
  }

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

  .map-card,
  .map-card svg {
    min-height: 360px;
  }

  .pin text {
    font-size: 17px;
  }

  .sea-label text {
    font-size: 19px;
  }

  .quick-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

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

  .site-footer {
    flex-direction: column;
  }
}
