* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5f6c7b;
  --accent: #1b4d89;
  --accent-soft: #d9e6f5;
  --sand: #f4f1ed;
  --pearl: #ffffff;
  --stone: #e6eaef;
  --sea: #0f2f5c;
  --sun: #f2c94c;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button,
.button,
.cta-link {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.button.secondary {
  background: var(--sea);
}

.button.light {
  background: var(--sun);
  color: #1d1d1d;
}

.page-header {
  padding: 28px 7%;
  background: var(--sand);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.hero {
  padding: 60px 7%;
  background: var(--pearl);
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split-media {
  flex: 1;
  min-height: 320px;
}

.image-frame {
  background-color: var(--stone);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 16px 40px rgba(25, 42, 70, 0.12);
}

.section {
  padding: 52px 7%;
}

.section.soft {
  background: var(--sand);
}

.section.deep {
  background: var(--sea);
  color: #fefefe;
}

.section.deep a {
  color: #fefefe;
}

.section h2 {
  font-size: 2rem;
}

.intro {
  font-size: 1.08rem;
  color: var(--muted);
}

.callout {
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--ink);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--pearl);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(25, 42, 70, 0.1);
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--stone);
}

.form-wrap {
  background: var(--pearl);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(22, 34, 54, 0.1);
}

.interest-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.interest-form label {
  font-weight: 600;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.testimonial {
  background: var(--pearl);
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.footer {
  padding: 40px 7%;
  background: #0f172a;
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer small {
  color: #cbd5f5;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pearl);
  color: var(--ink);
  padding: 16px 22px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 40;
}

.cookie-banner.hidden {
  display: none;
}

.sticky-cta {
  position: fixed;
  bottom: 90px;
  right: 28px;
  background: var(--sun);
  color: #1d1d1d;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.2);
  z-index: 30;
}

.two-column {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.two-column .panel {
  flex: 1;
  background: var(--pearl);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 28px rgba(25, 42, 70, 0.1);
}

.background-pane {
  background-color: #dae3f0;
  border-radius: 28px;
  padding: 32px;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.background-pane .overlay {
  background: rgba(15, 23, 42, 0.75);
  color: #f8fafc;
  padding: 18px;
  border-radius: 18px;
  max-width: 80%;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-coastal {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

@media (max-width: 920px) {
  .split,
  .two-column {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
  }
}
