* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a1f;
  background-color: #f6f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 28px 7vw 18px;
  background: #f1ede6;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.95rem;
  color: #4a5c4b;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.main-content {
  flex: 1;
}

.section {
  padding: 64px 7vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.alt {
  background: #ffffff;
}

.section.deep {
  background: #e9e2d9;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.split-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  gap: 36px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  color: #384538;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f2a1f;
  background: #1f2a1f;
  color: #fefdfb;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1f2a1f;
}

.button.light {
  background: #ffffff;
  color: #1f2a1f;
  border-color: #c7bfb2;
}

.image-frame {
  background-color: #d9d0c4;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
}

.image-frame.tall img {
  width: 100%;
  height: 420px;
}

.image-frame.medium img {
  width: 100%;
  height: 320px;
}

.image-frame.small img {
  width: 100%;
  height: 220px;
}

.panel {
  padding: 24px;
  border-radius: 18px;
  background: #fff8ee;
  border: 1px solid #e3dacd;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e6dfd4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.testimonial {
  background: #fefbf6;
  border-left: 3px solid #6c7a6b;
  padding: 16px 18px;
  border-radius: 12px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e4ded4;
  font-size: 0.8rem;
  color: #4a5c4b;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e2d9cc;
}

.price-line {
  font-weight: 700;
  color: #2d3a2e;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6ba;
  background: #ffffff;
  font-size: 0.95rem;
}

.form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  font-size: 0.9rem;
  color: #395a3a;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10;
}

.footer {
  background: #1f2a1f;
  color: #f3efe8;
  padding: 40px 7vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.95rem;
}

.footer a {
  color: #f3efe8;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  color: #1f2a1f;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #d8cfbf;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 900px) {
  .nav-bar {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .split-row,
  .split-row.reverse {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    max-width: 560px;
  }
}
