* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --ink: #1e1c1a;
  --muted: #5f5a55;
  --accent: #2a6b4f;
  --accent-2: #b36a2e;
  --soft: #efe7dc;
  --panel: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #faf7f2;
  border-bottom: 1px solid #e2dbd0;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-badge {
  padding: 6px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px dashed #cbb8a4;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 48px 0 36px;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-visual {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #dcc8b6;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid #e5ded3;
  width: fit-content;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid #d1c7bb;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.btn.soft {
  background: var(--soft);
  color: var(--ink);
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: #fff;
}

.section-title {
  font-size: 28px;
  margin: 0 0 18px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e4ddd2;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-image {
  background: #d7c8b8;
  height: 180px;
}

.card-image img {
  width: 100%;
  height: 100%;
}

.story {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.story .image-frame {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #d9c9b9;
  min-height: 260px;
}

.story .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  padding: 18px;
  background: #f0e8dd;
  border-radius: 14px;
  border: 1px solid #e2d4c6;
}

.pricing {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 260px;
  border-radius: 16px;
  border: 1px solid #e1d7ca;
  background: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e3dacc;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8cec2;
  font-size: 14px;
  font-family: inherit;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.inline-link {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-2);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.sticky-cta button {
  border: none;
  background: #fff;
  color: var(--accent-2);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  padding: 40px 0;
  background: #1f1c19;
  color: #f7f1ea;
}

.footer a {
  color: #f7f1ea;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e0d7cc;
  padding: 16px 0;
  z-index: 30;
}

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.is-hidden {
  display: none;
}

.meta-panel {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e2d9cd;
}

.split-block {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.split-block .image-frame {
  flex: 1 1 300px;
  min-height: 240px;
  border-radius: 16px;
  background: #d8cab9;
  overflow: hidden;
}

.split-block .text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
