* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f5f1ec;
  --ink: #1e1a16;
  --muted: #5c5349;
  --accent: #1b6b5a;
  --accent-2: #a64b2a;
  --paper: #ffffff;
  --sand: #efe4d6;
  --shadow: rgba(30, 26, 22, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 14px 40px var(--shadow);
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  margin-top: 32px;
  background: var(--paper);
  border-radius: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 18px 60px var(--shadow);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -60px auto auto -40px;
  width: 200px;
  height: 200px;
  background: var(--sand);
  border-radius: 40%;
  transform: rotate(-12deg);
  z-index: 0;
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-accent {
  background: var(--accent-2);
}

.btn:hover {
  transform: translateY(-1px);
}

.offset-grid {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-card.highlight {
  background: var(--sand);
}

.offset-card .tag {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.split-band {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 24px;
}

.split-band a {
  color: #fff;
  text-decoration: underline;
}

.storyline {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.storyline .panel {
  background: var(--paper);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 40px var(--shadow);
}

.panel .panel-title {
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.panel p {
  margin: 0 0 12px;
  color: var(--muted);
}

.pricing {
  margin-top: 32px;
  background: var(--paper);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 20px 50px var(--shadow);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 16px;
  background: var(--sand);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-section {
  margin-top: 32px;
  background: var(--paper);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 16px 42px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4c7b6;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  bottom: 14px;
  margin-top: 32px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta a {
  color: #fff;
  text-decoration: underline;
}

.footer {
  margin-top: 40px;
  padding: 24px;
  border-top: 1px solid #d8cbb9;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero {
  margin-top: 24px;
  background: var(--paper);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 50px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.asym-row .block {
  background: var(--sand);
  border-radius: 18px;
  padding: 18px;
}

.contact-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--paper);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 50px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .offset-grid {
    flex-direction: row;
  }

  .offset-card {
    flex: 1;
  }

  .offset-card.shifted {
    transform: translateY(24px);
  }

  .split-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .storyline {
    flex-direction: row;
  }

  .storyline .panel {
    flex: 1;
  }

  .pricing-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 45%;
  }

  .asym-row {
    flex-direction: row;
  }

  .asym-row .block {
    flex: 1;
  }
}
