* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5f5f5f;
  --line: #e6e6e6;
  --accent: #1f7a6b;
  --accent-strong: #0f4a40;
  --paper: #ffffff;
  --sand: #f5f2ee;
  --stone: #f0f3f5;
  --shadow: 0 20px 60px rgba(15, 26, 25, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 18px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0 0;
}

.menu.is-open {
  display: flex;
}

.menu a {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 70px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(245, 242, 238, 0.9)), url("https://images.unsplash.com/photo-1752694909919-77e24bb29e4f?w=1400&q=80") center/cover no-repeat;
}

.hero-content {
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin: 0 0 12px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: var(--paper);
  color: var(--accent-strong);
  border: 1px solid var(--accent-strong);
}

.section {
  padding: 60px 6vw;
}

.section.sand {
  background: var(--sand);
}

.section.stone {
  background: var(--stone);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy {
  flex: 1;
}

.split .visual {
  flex: 1;
}

.img-frame {
  background: #d8dee3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement {
  font-size: 1.2rem;
  margin: 16px 0;
  font-weight: 600;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  background: #d8dee3;
}

.inline-cta {
  color: var(--accent-strong);
  text-decoration: underline;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  font-style: italic;
  color: var(--muted);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-row {
  margin-top: 20px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.form-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  width: 100%;
}

.footer {
  padding: 40px 6vw;
  background: #101715;
  color: #e6f2ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e6f2ef;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal {
  font-size: 0.9rem;
  color: #a9c2bc;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--paper);
  border-radius: 999px;
  padding: 8px 10px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 50;
}

.sticky-cta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .menu {
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 80px 8vw 110px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stacked-cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .price-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 250px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
