* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ee;
  --ink: #1f2a1f;
  --muted: #5a6358;
  --accent: #3a6a3f;
  --accent-soft: #dbe7d6;
  --accent-dark: #244428;
  --sand: #efe6d6;
  --olive: #cddbbf;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

header {
  padding: 24px 0 8px;
}

.wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--sand);
  border-radius: 999px;
  color: var(--muted);
}

.hero {
  background-image: linear-gradient(120deg, rgba(245, 240, 230, 0.92), rgba(245, 240, 230, 0.6)), url("https://images.unsplash.com/photo-1761206669846-f64ba92a3627?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero-content {
  flex: 1 1 320px;
}

.hero-panel {
  flex: 1 1 240px;
  background: rgba(255, 255, 255, 0.82);
  padding: 20px;
  border-radius: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: var(--accent-dark);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.section {
  margin: 56px 0;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 300px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
}

.offset-block {
  transform: translateY(18px);
}

.media {
  flex: 1 1 280px;
  background: var(--olive);
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media {
  min-height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight {
  background-image: linear-gradient(120deg, rgba(219, 231, 214, 0.9), rgba(219, 231, 214, 0.5)), url("https://images.unsplash.com/photo-1776722091903-097d6dab0455?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 40px;
}

.split-note {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.split-note .pill {
  background: var(--accent-dark);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.form-block {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccd6c7;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

.form-message {
  font-size: 14px;
  color: var(--accent-dark);
}

.footer {
  padding: 32px 0 48px;
  border-top: 1px solid #d7dfd1;
  margin-top: 60px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer small {
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta button,
.sticky-cta a {
  border-radius: 999px;
  border: none;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  width: min(360px, 90%);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.contact-panel {
  background: var(--sand);
  padding: 22px;
  border-radius: 18px;
}

.muted {
  color: var(--muted);
}

.tagline {
  font-size: 15px;
  color: var(--muted);
}

.list-plain {
  padding-left: 18px;
}

.page-hero {
  background: var(--olive);
  border-radius: 24px;
  padding: 32px;
  margin-top: 16px;
}

.page-hero .media {
  min-height: 220px;
}

.aside-highlight {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
}
