*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2a22;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav-shell {
  display: flex;
  flex-direction: column;
  padding: 24px 6vw 12px;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #70806e;
}

.brand strong {
  font-size: 1.6rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-color: #1f2a22;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 6vw 48px;
  position: relative;
}

.hero-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(31, 42, 34, 0.12);
}

.hero-card h1 {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.hero-card p {
  margin: 0 0 20px;
  color: #37433b;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1f2a22;
  font-weight: 600;
  background: #1f2a22;
  color: #f7f4ef;
}

.btn-outline {
  background: transparent;
  color: #1f2a22;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  transform: translateX(8vw);
  box-shadow: 0 24px 70px rgba(36, 55, 44, 0.18);
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ede7dc;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  flex: 1;
}

.offset-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(31, 42, 34, 0.12);
  transform: translateY(-16px);
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6a7b6c;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(31, 42, 34, 0.08);
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1f2a22;
}

.highlight {
  background: #1f2a22;
  color: #f7f4ef;
  padding: 24px;
  border-radius: 20px;
}

.testimonial {
  padding: 18px 20px;
  background: #fdfbf7;
  border-left: 3px solid #1f2a22;
}

.form-shell {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 50px rgba(31, 42, 34, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6cc;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid #1f2a22;
  padding-bottom: 2px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: #d65f3d;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(214, 95, 61, 0.4);
  font-weight: 600;
}

.footer {
  padding: 32px 6vw 48px;
  background: #1f2a22;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7f4ef;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 50px rgba(31, 42, 34, 0.18);
  display: none;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #1f2a22;
  color: #f7f4ef;
}

.cookie-reject {
  background: #ede7dc;
  color: #1f2a22;
}

@media (min-width: 900px) {
  .nav-shell {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    max-width: 52%;
  }

  .hero-image {
    flex: 1;
    transform: translateX(0);
  }

  .split {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 18px);
    min-width: 240px;
  }
}
