* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e1f24;
  background: #f5f3ee;
  line-height: 1.6;
}

a {
  color: #1b4d3e;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline: 2px solid #1b4d3e;
  outline-offset: 2px;
}

header {
  padding: 24px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e5e1d8;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 20px;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  color: #6a5d4d;
  max-width: 260px;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  font-size: 14px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 6% 80px;
}

.hero {
  background: #efe7dd;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  min-height: 420px;
}

.hero-text,
.hero-media {
  flex: 1;
  padding: 48px;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.2;
  margin-top: 0;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  border: none;
  background: #1b4d3e;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

.button.secondary {
  background: #e0d5c5;
  color: #1e1f24;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
}

.img-wrap {
  background: #d9d2c6;
  border-radius: 20px;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlight {
  background: #f0f5f2;
  border-radius: 24px;
  padding: 40px;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 24px;
}

.highlight-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card .img-wrap {
  height: 140px;
}

.price {
  font-weight: 600;
  color: #1b4d3e;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: #6a5d4d;
}

.form-panel {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c2b9;
  font-size: 14px;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background: #d97746;
}

footer {
  padding: 40px 6%;
  background: #ffffff;
  border-top: 1px solid #e5e1d8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
}

.disclaimer {
  font-size: 13px;
  color: #6a5d4d;
}

.form-note {
  font-size: 13px;
  color: #6a5d4d;
}

.compact-page {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-text,
  .hero-media {
    padding: 32px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
