* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 6vw 12px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}

.nav a {
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid #1b1b1b;
  font-size: 13px;
}

.ad-label {
  font-size: 12px;
  color: #5b4b3b;
  border-left: 3px solid #c9b79b;
  padding-left: 12px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 20px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
}

.hero-media {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
}

.image-frame {
  background: #dfe4d2;
  padding: 12px;
  border-radius: 18px;
  display: flex;
}

.hero-media img {
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #eef1e7;
}

.section.deep {
  background: #1f2a24;
  color: #f6f4ef;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-title h2 {
  font-size: 28px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split.offset {
  align-items: flex-start;
}

.split .col {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.callout {
  padding: 18px;
  border-radius: 16px;
  background: #f1ede4;
  border: 1px solid #c7b8a1;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e1dacb;
  min-width: 220px;
}

.card .price {
  font-weight: 700;
  color: #2f5e3d;
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 160px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 10px 18px;
  border-radius: 24px;
  background: #2f5e3d;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
}

.btn.light {
  background: #f3e7d6;
  color: #1b1b1b;
  border: 1px solid #c7b8a1;
}

.inline-link {
  color: #2f5e3d;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #f3e7d6;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #c7b8a1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 220px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e1dacb;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 220px;
  font-size: 14px;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6b5;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #171d1a;
  color: #f6f4ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer small {
  color: #cfc6b5;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #cfc6b5;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 10;
}

.hidden {
  display: none;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meta-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f9f7f2;
  border-radius: 16px;
  border: 1px dashed #c7b8a1;
  padding: 16px;
}

.legal-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e1dacb;
}
