* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6vw 10px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: #3a4b4f;
  max-width: 360px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 6vw 60px;
  position: relative;
}

.hero-grid {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  background: #f0ebe2;
  border-radius: 18px;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: 18px;
  background-color: #d8d3c9;
  overflow: hidden;
  display: flex;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  background: #1f2a2e;
  color: #fdfcf9;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-alt {
  background: #8a7d6b;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.offset-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(31, 42, 46, 0.08);
}

.img-box {
  flex: 1 1 320px;
  min-height: 260px;
  background-color: #cfd6d3;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.caption {
  font-size: 0.9rem;
  color: #4c5c60;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fdfcf9;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(31, 42, 46, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #d5dbd8;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1f2a2e;
}

.split-banner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  background: #dfe5e1;
  border-radius: 20px;
  padding: 22px;
  align-items: center;
}

.split-banner .text {
  flex: 1 1 280px;
}

.split-banner .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(31, 42, 46, 0.08);
  max-width: 560px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9d1cf;
  font-size: 1rem;
  background: #fdfcf9;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #1f2a2e;
  color: #f4f2ed;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.notice {
  font-size: 0.85rem;
  color: #d7d2c9;
}

.cta-sticky {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #8a7d6b;
  color: #fff;
  padding: 12px 16px;
  border-radius: 28px;
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 8px 20px rgba(31, 42, 46, 0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column .col {
  flex: 1 1 280px;
}

.hero-title {
  font-size: 2.2rem;
  margin: 0;
}

.section-title {
  font-size: 1.6rem;
  margin: 0;
}

.bg-soft {
  background: #efe8dd;
}

.bg-forest {
  background: #d2d8d2;
}

.bg-hero {
  background: #d7d1c6;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.bg-panel {
  border-radius: 22px;
  padding: 26px;
  color: #fdfcf9;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.bg-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 46, 0.45);
}

.bg-panel > * {
  position: relative;
  z-index: 1;
}

.bg-image-forest {
  background-image: url("https://images.unsplash.com/photo-1493809842364-78817add7ffb?w=1400&q=80");
}

.bg-image-evening {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
}
