* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2a33;
  --muted: #5b6a74;
  --accent: #0c6b6f;
  --accent-dark: #08484b;
  --sand: #f4efe9;
  --fog: #f7f9fb;
  --clay: #e7d9cc;
  --card: #ffffff;
  --stroke: #d9e1e6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--fog);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.92;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.media-cover {
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  padding: 24px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  border-bottom: 1px solid var(--stroke);
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  background: var(--sand);
  padding: 72px 6vw 96px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 980px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.hero-media {
  margin-top: 36px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #d7dfe4;
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--card);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
}

.lead {
  color: var(--muted);
  max-width: 780px;
  margin: 0;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.panel {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 24px;
}

.panel.dark {
  background: var(--accent);
  color: #ffffff;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 180px;
  object-fit: cover;
  background-color: #d8e1e6;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 107, 111, 0.12);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 220px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.form-wrap {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-option {
  flex: 1 1 200px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--fog);
}

.service-option.selected {
  border-color: var(--accent);
  background: rgba(12, 107, 111, 0.08);
}

.footer {
  padding: 48px 6vw;
  background: #0f1b22;
  color: #e9eef2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.legal {
  color: #c7d3dc;
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.image-frame {
  background-color: #dbe3e8;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  height: 100%;
  object-fit: cover;
}

.note {
  background: var(--clay);
  padding: 18px;
  border-radius: 16px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.bg-faucet {
  background: linear-gradient(90deg, rgba(8, 72, 75, 0.85), rgba(8, 72, 75, 0.2)),
    url("https://images.pexels.com/photos/30335240/pexels-photo-30335240.jpeg") center/cover no-repeat;
  color: #ffffff;
}

.bg-drop {
  background: linear-gradient(120deg, rgba(244, 239, 233, 0.9), rgba(244, 239, 233, 0.7)),
    url("https://images.pexels.com/photos/13312223/pexels-photo-13312223.jpeg") center/cover no-repeat;
}
