@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f6f2ed;
  --bg-alt: #ffffff;
  --bg-dark: #1f2326;
  --text: #1c1f22;
  --muted: #5f666c;
  --accent: #2c6e63;
  --accent-strong: #1b4b43;
  --highlight: #f2c879;
  --border: #d7d1c9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

header {
  padding: 32px 6vw 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.cta.light {
  background: #fff;
  color: var(--accent-strong);
}

.cta:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.cta.secondary:hover {
  background: var(--accent);
  color: #fff;
}

.cta.light:hover {
  background: var(--highlight);
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px 6vw;
  background: var(--bg-alt);
}

.split-section.alt {
  background: var(--bg);
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  min-height: 320px;
  border-radius: 28px;
}

.surface-a {
  background-image: url("https://images.unsplash.com/photo-1527515862127-ae54c8cbf7c0?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  min-height: 280px;
  border-radius: 24px;
}

.surface-b {
  background-image: url("https://images.unsplash.com/photo-1556912173-3bb406ef7e8c?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  min-height: 280px;
  border-radius: 24px;
}

.surface-c {
  background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  min-height: 280px;
  border-radius: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .content,
.split .media {
  flex: 1;
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

.headline {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.taglist {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.metric {
  min-width: 120px;
}

.metric strong {
  font-size: 1.3rem;
  display: block;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-strong);
}

.highlight-box {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 26px;
  padding: 32px;
}

.highlight-box a {
  color: #fff;
  text-decoration: underline;
}

.quote {
  font-size: 1.05rem;
  font-style: italic;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
}

.service-row .row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.service-row .price {
  font-weight: 700;
  color: var(--accent-strong);
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  margin-top: 24px;
  align-self: flex-start;
  z-index: 2;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack img {
  border-radius: 20px;
}

.layered {
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.footer {
  padding: 50px 6vw 60px;
  background: var(--bg-dark);
  color: #fff;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 12px;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 72px 6vw 40px;
  background: var(--bg-alt);
}

.page-hero .headline {
  max-width: 720px;
}

.simple-section {
  padding: 48px 6vw;
}

.simple-section p {
  max-width: 760px;
}

@media (min-width: 860px) {
  .split-section {
    padding: 80px 8vw;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-row {
    flex: 1;
    min-width: 240px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    left: auto;
    right: 32px;
    width: 360px;
  }
}
