* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a2e;
  --muted: #54656c;
  --sand: #f5f1ea;
  --sage: #d9e6df;
  --moss: #b4c6b6;
  --stone: #e7e2d8;
  --accent: #2f6f5e;
  --accent-soft: #3f8a74;
  --sun: #f1d48f;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfbf9;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 32px 6%;
  background: var(--sand);
  border-bottom: 1px solid #e1ddd3;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: var(--sun);
  border-radius: 999px;
  font-size: 0.82rem;
  color: #563a00;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px 6%;
  background: linear-gradient(120deg, #f7f1e8, #eef4ef);
  align-items: center;
}

.hero-text {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px 6%;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1 1 320px;
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.section-title {
  font-size: 1.8rem;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #e6e1d8;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--ink);
  font-size: 0.85rem;
}

.layered {
  background: var(--sage);
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 15%;
  width: 120px;
  height: 120px;
  background: var(--sun);
  border-radius: 50%;
  opacity: 0.5;
}

.form-wrap {
  background: #fff;
  border: 1px solid #e5e0d6;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8d2c7;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e6e1d8;
  border-radius: 999px;
  padding: 8px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.sticky-cta button {
  border: none;
}

footer {
  padding: 40px 6% 80px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border: 1px solid #e0d9ce;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.section-bg {
  background: var(--stone);
}

.bg-soft-1 {
  background: #dfe7e0;
}

.bg-soft-2 {
  background: #f0e9dc;
}

.bg-soft-3 {
  background: #e0e6e2;
}

.bg-soft-4 {
  background: #e6dfd3;
}

.bg-soft-5 {
  background: #dfe7dc;
}

.bg-soft-6 {
  background: #efe7da;
}

.overlay-box {
  background: rgba(251, 251, 249, 0.92);
  padding: 24px;
  border-radius: 16px;
}

.bg-forest {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-gridflow {
  background-image: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-cityglow {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.notice {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
}

@media (max-width: 860px) {
  .sticky-cta {
    width: calc(100% - 32px);
    justify-content: space-between;
  }
}
