* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  background: #f7f4ef;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6%;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: #5f5a52;
  max-width: 260px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 6% 64px;
  gap: 32px;
}

.hero-copy {
  flex: 1 1 360px;
  max-width: 520px;
}

.hero-media {
  flex: 1 1 380px;
  display: flex;
  justify-content: flex-start;
}

.img-frame {
  background-color: #dfe7d3;
  border-radius: 18px;
  overflow: hidden;
}

.hero-media .img-frame {
  width: 100%;
  height: 420px;
  transform: translateY(18px);
}

.section {
  padding: 56px 6%;
}

.section.dark {
  background: #1e1f1c;
  color: #f3f2ef;
}

.section.bg-image {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-image .quote {
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
}

.section.bg-image .muted {
  color: #e6e6e6;
}

.section.light {
  background: #ffffff;
}

.asym {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym.reverse {
  flex-direction: row-reverse;
}

.asym .copy-block {
  flex: 1 1 320px;
  min-width: 280px;
}

.asym .media-block {
  flex: 1 1 320px;
  min-width: 280px;
}

.offset-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  top: -24px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card-content {
  padding: 20px;
}

.price {
  font-weight: 700;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2f5d50;
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #2f5d50;
  color: #2f5d50;
}

.inline-link {
  text-decoration: underline;
  color: #2f5d50;
}

.list {
  padding-left: 18px;
}

.quote {
  padding: 20px;
  background: #f0ebe4;
  border-radius: 16px;
  margin-bottom: 16px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c8c1b7;
  font-family: inherit;
  font-size: 1rem;
}

.form-message {
  font-size: 0.95rem;
  color: #2f5d50;
}

.footer {
  background: #161613;
  color: #e9e6e1;
  padding: 32px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #2f5d50;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 150;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 280px;
}

.spacer-top {
  margin-top: 16px;
}

.notice {
  background: #f0ebe4;
  padding: 18px;
  border-radius: 16px;
}

.muted {
  color: #5f5a52;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: #5f5a52;
}

@media (max-width: 768px) {
  .hero-media .img-frame {
    height: 300px;
    transform: none;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }
}
