* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f1e1c;
  background-color: #f6f2ed;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #2c4c3b;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #2c4c3b;
  outline-offset: 2px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 18px;
  gap: 24px;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background-color: #efe6da;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 0.85rem;
  color: #4a3d31;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 0 24px;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 28px;
  background-color: #2c4c3b;
  color: #f6f2ed;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-secondary {
  background-color: transparent;
  color: #2c4c3b;
  border: 1px solid #2c4c3b;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.image-frame {
  background-color: #d8cbb9;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame--hero {
  width: 100%;
  height: 320px;
}

.image-frame--tall {
  width: 100%;
  height: 360px;
}

.image-frame--card {
  width: 100%;
  height: 180px;
}

.section {
  padding: 44px 0;
}

.section-muted {
  background-color: #f0e8de;
}

.section-contrast {
  background-color: #2c4c3b;
  color: #f6f2ed;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-box {
  background-color: #efe6da;
  padding: 24px;
  border-radius: 20px;
  transform: translateX(0);
}

.offset-box--left {
  transform: translateX(-10px);
}

.offset-box--right {
  transform: translateX(10px);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin: 0;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2c4c3b;
}

.testimonial {
  background-color: #efe6da;
  padding: 18px 20px;
  border-radius: 16px;
  font-style: italic;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc4b6;
  font-size: 1rem;
  font-family: inherit;
}

.form-status {
  font-size: 0.95rem;
  color: #4a3d31;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #b5563c;
  color: #fff7ef;
  border: none;
  padding: 12px 18px;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.footer {
  margin-top: auto;
  padding: 36px 0 40px;
  background-color: #1f1e1c;
  color: #f6f2ed;
}

.footer a {
  color: #f6f2ed;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  max-width: 360px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background-color: #2c4c3b;
  color: #f6f2ed;
}

.cookie-reject {
  background-color: #efe6da;
  color: #2c4c3b;
}

@media (min-width: 860px) {
  .hero-main {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 20px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
