* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1f1b;
  --muted: #5b6458;
  --accent: #2f6f4f;
  --accent-dark: #1f4a36;
  --sand: #f4f1ea;
  --fog: #eef2ee;
  --stone: #e2e6df;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6vw;
  background: var(--sand);
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 50px 6vw 70px;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-overlay {
  max-width: 560px;
  background: rgba(20, 30, 24, 0.8);
  padding: 32px;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 16px;
  color: #e5efe5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  border: none;
  padding: 12px 20px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  border-radius: 6px;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.magazine {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 60px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.col-60 {
  flex: 1 1 60%;
  min-width: 280px;
}

.col-40 {
  flex: 1 1 35%;
  min-width: 240px;
}

.col-50 {
  flex: 1 1 45%;
  min-width: 260px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: var(--fog);
  border-radius: 10px;
}

.card img {
  border-radius: 8px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.pull-quote {
  background: var(--stone);
  padding: 24px;
  border-left: 6px solid var(--accent);
  font-style: italic;
}

.section-bg {
  padding: 50px 6vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.story-bg {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.story-bg .pull-quote {
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  border-left-color: #cde2c9;
}

.insight-bg {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.insight-bg .card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.section-image {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.section-image .image-box {
  flex: 1 1 45%;
  min-width: 240px;
  background: #d8e0d6;
  padding: 8px;
}

.form-area {
  background: var(--fog);
  padding: 32px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-area label {
  font-weight: 600;
  font-size: 14px;
}

.form-area input,
.form-area select,
.form-area textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c6d0c4;
  font-size: 14px;
}

.form-area textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 36px 6vw;
  background: #1b241f;
  color: #e7efe7;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  color: #d7ead7;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: flex;
  gap: 10px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  align-items: center;
  z-index: 20;
}

.sticky-cta span {
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d6dfd3;
  padding: 16px 6vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: #ffffff;
  color: var(--accent-dark);
  cursor: pointer;
}

.pill.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.image-frame {
  background: #d4ddd3;
  padding: 10px;
  border-radius: 12px;
}

.image-frame img {
  border-radius: 10px;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 50px 6vw;
}
