* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f2a2e;
  background: #f7f5f2;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 18px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f0ece6;
  border-bottom: 1px solid #d9d2c7;
}

.brand {
  font-size: 20px;
  letter-spacing: 1.5px;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.nav .ad-label {
  font-size: 12px;
  color: #5d5d5d;
  max-width: 240px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 0 80px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .col.wide {
  flex: 1.3 1 360px;
}

.panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(29, 28, 24, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(181, 153, 121, 0.15);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 14px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

.img-frame {
  background: #e3ddd3;
  padding: 12px;
  border-radius: 20px;
}

.img-frame img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #2f4f4f;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
}

.cta-outline {
  background: transparent;
  border: 1px solid #2f4f4f;
  color: #2f4f4f;
}

.inline-cta {
  text-decoration: underline;
  color: #2f4f4f;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(29, 28, 24, 0.08);
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
  line-height: 1.5;
}

.card .price {
  font-weight: 600;
  color: #2f4f4f;
}

.section-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.form-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 30px rgba(29, 28, 24, 0.08);
}

.form-block label {
  font-size: 14px;
  color: #4a4a4a;
}

.form-block input,
.form-block select,
.form-block textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bd;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #6f6b65;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(29, 28, 24, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta span {
  font-size: 13px;
  color: #5a5752;
}

.footer {
  background: #f0ece6;
  padding: 28px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: #4b4742;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.badge {
  padding: 6px 12px;
  background: #dfe7e5;
  border-radius: 999px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-tone {
  background: #f9f6f0;
  border-top: 1px solid #e1dbd1;
  border-bottom: 1px solid #e1dbd1;
  padding: 28px 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(29, 28, 24, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.small {
  font-size: 12px;
}
