* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: #1f2a1f;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-nav {
  padding: 28px 0 12px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  font-size: 0.9rem;
  color: #6c756b;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #7a5f45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #7a5f45;
  background: #7a5f45;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #7a5f45;
}

.btn.ghost {
  background: #fff;
  color: #1f2a1f;
  border-color: #d4c9be;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.hero {
  padding: 30px 0 50px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split > div {
  flex: 1;
}

.highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: #efe7df;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #5c4b3c;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 18px 0 12px;
}

.hero p {
  font-size: 1.05rem;
  color: #3c473c;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #fff;
}

.section.soft {
  background: #f0ebe6;
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: 0 0 18px;
}

.lead {
  font-size: 1.05rem;
  color: #3f4b41;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(19, 16, 12, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 14px;
  height: 170px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #7a5f45;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list span {
  display: inline-flex;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background: #7a5f45;
  color: #fff;
  font-size: 0.8rem;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.split .quote {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  padding: 6px 12px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #e2d8cd;
  font-size: 0.85rem;
}

.form-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d0c6;
  font-family: inherit;
  font-size: 0.95rem;
  background: #faf8f6;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 40px 0 60px;
  background: #1f2a1f;
  color: #f3efe9;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #f3efe9;
  opacity: 0.85;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #1f2a1f;
  color: #f3efe9;
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions .btn {
  border-color: #f3efe9;
}

.page-hero {
  padding: 40px 0 20px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.simple-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-block {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .simple-columns {
    flex-direction: row;
  }
}
