* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4f0;
  --ink: #1f1b17;
  --muted: #5e5a56;
  --accent: #2f6f6d;
  --accent-dark: #234f4e;
  --warm: #f1d7c6;
  --soft: #e7eceb;
  --highlight: #f9f0b6;
  --shadow: 0 20px 40px rgba(31, 27, 23, 0.15);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 120px;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: #fff;
  padding: 32px;
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.hero-visual {
  position: relative;
  padding: 24px;
  background: var(--soft);
  border-radius: 32px;
}

.hero-visual img {
  border-radius: 24px;
}

.hero-visual .tag {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: var(--highlight);
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 600;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
}

.section-muted {
  color: var(--muted);
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.offset-card.highlight {
  background: var(--warm);
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-row img {
  border-radius: 20px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--soft);
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 16px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  padding: 24px;
  border-radius: 20px;
}

.panel.light {
  background: #fff;
  box-shadow: var(--shadow);
}

.panel.dark {
  background: var(--accent-dark);
  color: #fff;
}

.form-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d2cc;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: #1f1b17;
  color: #f7f4f0;
  padding: 40px 0;
}

.footer a {
  color: #f9f0b6;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 80px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: var(--highlight);
  padding: 6px 12px;
  border-radius: 999px;
}

.notice {
  background: var(--soft);
  border-radius: 16px;
  padding: 18px;
}

.no-form {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

@media (min-width: 820px) {
  .hero-row {
    flex-direction: row;
    align-items: center;
  }

  .hero-card,
  .hero-visual {
    flex: 1;
  }

  .offset-grid {
    flex-direction: row;
  }

  .offset-card {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split .panel {
    flex: 1;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service {
    flex: 1 1 calc(50% - 20px);
  }

  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .image-row {
    flex-direction: row;
  }
}
