* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #fbf8f3;
  line-height: 1.6;
}

a {
  color: #1b4b4f;
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0 8px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #4e3c2a;
  background: #f1e7da;
  padding: 6px 10px;
  border-radius: 20px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.hero {
  padding: 32px 0 48px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-image {
  background-color: #e9ded2;
  border-radius: 18px;
  overflow: hidden;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}

.hero-copy p {
  max-width: 640px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #1b4b4f;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: #efe3d5;
  color: #1f1f1f;
}

.section {
  padding: 46px 0;
}

.section.alt {
  background: #f4efe8;
}

.image-section {
  background-image: url("https://images.unsplash.com/photo-1575364289437-fb1479d52732?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.image-section .overlay {
  background: rgba(27, 39, 41, 0.62);
  padding: 32px;
  border-radius: 18px;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .image-box {
  background-color: #e5d7c7;
  border-radius: 16px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  border-radius: 12px;
  overflow: hidden;
  background-color: #e6d7c8;
}

.quote {
  font-style: italic;
  background: #fff6ea;
  padding: 16px;
  border-radius: 14px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eadfd2;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1b4b4f;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #eadfd2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9cfc3;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  z-index: 5;
  margin: 32px 0;
  display: flex;
  justify-content: center;
}

.sticky-cta .button {
  box-shadow: 0 8px 24px rgba(27, 75, 79, 0.25);
}

.footer {
  background: #1f1f1f;
  color: #f8f5f0;
  padding: 32px 0 48px;
  font-size: 0.92rem;
}

.footer a {
  color: #f8f5f0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(860px, 94vw);
  background: #ffffff;
  border: 1px solid #e3d7ca;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

@media (min-width: 840px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }
}
