* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #102027;
  --muted: #49606b;
  --accent: #0b6fae;
  --accent-dark: #084e79;
  --mist: #eef6f8;
  --deep: #0a1f2b;
  --sand: #f5f2ee;
  --ice: #e4f0f6;
  --line: #d5e3ea;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  background: var(--mist);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-ghost:hover {
  background: var(--mist);
}

.container {
  padding: 0 6vw;
}

.hero {
  position: relative;
  min-height: 70vh;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 6vw 70px;
  background-size: cover;
  background-position: center;
}

.hero-water {
  background-image: url("https://images.unsplash.com/photo-1518837695005-2083093ee35b?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 32, 0.55);
}

.hero-content {
  position: relative;
  max-width: 620px;
  z-index: 1;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.1rem;
  margin: 0 0 24px;
  color: #e9f4f8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--mist);
}

.section.deep {
  background: var(--deep);
  color: #ffffff;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.section-header h2 {
  margin: 0;
  font-size: 2rem;
}

.section-header p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.offset-layout {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-text {
  flex: 1 1 360px;
  padding: 26px;
  background: var(--sand);
  border-radius: 18px;
}

.offset-media {
  flex: 1 1 340px;
  background: var(--ice);
  border-radius: 18px;
  overflow: hidden;
}

.offset-media img {
  width: 100%;
  height: 100%;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: stretch;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-image {
  background: #dfeef4;
}

.service-card img {
  width: 100%;
  height: 170px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.split-band {
  position: relative;
  background: var(--deep);
  color: #ffffff;
  overflow: hidden;
}

.split-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.split-band.water-band::before {
  background-image: url("https://images.unsplash.com/photo-1575388800910-0b9ef1cc48d2?w=1400&q=80");
}

.split-band .band-inner {
  position: relative;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding: 70px 6vw;
}

.hero-actions.spaced {
  margin-top: 24px;
}

.split-band .band-inner div {
  flex: 1 1 320px;
}

.story-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.story-strip .story {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
}

.form-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-grid .field {
  flex: 1 1 220px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(8, 40, 56, 0.25);
  z-index: 20;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.footer {
  padding: 50px 6vw;
  background: #0c1e27;
  color: #dfe7ea;
}

.footer a {
  color: #dfe7ea;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.legal-list a {
  font-size: 0.9rem;
}

.image-frame {
  background: #dfeef4;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.notice {
  background: #ffffff;
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(8, 28, 38, 0.15);
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 80px 6vw 50px;
  background: var(--ice);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}

.page-hero .page-copy {
  flex: 1 1 360px;
}

.page-hero .page-media {
  flex: 1 1 320px;
}

.page-hero h1 {
  margin-top: 0;
  font-size: 2.3rem;
}

.page-body {
  padding: 60px 6vw;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column .column {
  flex: 1 1 300px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 760px) {
  .hero {
    padding: 80px 6vw 60px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
