* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --text: #1f2421;
  --muted: #5f665f;
  --accent: #1b6b4f;
  --accent-dark: #134b38;
  --sand: #efe7da;
  --stone: #e3ddd2;
  --rose: #f3e5e1;
  --sun: #f8f1c7;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  background: #ffffff;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero {
  background: #0f2b1f;
  color: #f7f4ef;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.hero-copy,
.hero-visual {
  flex: 1 1 320px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-visual {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0;
}

.hero p {
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--sand);
}

.section.soft {
  background: var(--rose);
}

.section.sun {
  background: var(--sun);
}

.section.visual-panel {
  background-image: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.visual-panel .card,
.section.visual-panel .quote {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.image-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: #d7d2c8;
}

.image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--stone);
  color: var(--muted);
  font-size: 0.85rem;
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(20, 30, 24, 0.08);
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background: #d7d2c8;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.quote {
  padding: 18px 22px;
  background: #ffffff;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(20, 30, 24, 0.08);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
}

.price-row .price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.form-wrapper {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(20, 30, 24, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7c2b8;
  font-size: 1rem;
  background: #ffffff;
}

.inline-cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(20, 30, 24, 0.18);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  background: #121814;
  color: #e6e2d9;
  padding: 48px 0;
}

.footer a {
  color: #d2f0e4;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal {
  font-size: 0.85rem;
  color: #c9c4bb;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(20, 30, 24, 0.2);
  max-width: 360px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.page-header {
  padding: 46px 0 24px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-col .col {
  flex: 1 1 320px;
}

.notice {
  background: var(--stone);
  padding: 16px;
  border-radius: 12px;
}

.divider {
  height: 1px;
  background: #d7d2c8;
  margin: 24px 0;
}

.plain-list {
  padding-left: 18px;
}

.hidden {
  display: none;
}
