* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1b1b;
  background: #faf9f7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0;
  border-bottom: 1px solid #e4e1db;
  background: #faf9f7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid #1b1b1b;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  padding: 48px 0 64px;
  background: #f2efe9;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 16px;
}

.hero-copy p {
  margin: 0 0 20px;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row.spaced {
  margin-top: 20px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #1b1b1b;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button-outline {
  background: transparent;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #fff;
}

.section.dark {
  background: #1b1b1b;
  color: #f7f3ec;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 20px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 22px;
  border-radius: 20px;
  background: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 28px rgba(20, 16, 12, 0.08);
}

.card img {
  border-radius: 16px;
  height: 200px;
  object-fit: cover;
}

.inline-link {
  color: #7b4b2a;
  font-weight: 600;
}

.quote {
  font-style: italic;
  border-left: 4px solid #7b4b2a;
  padding-left: 16px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e4e1db;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #7b4b2a;
}

.form-wrapper {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 32px rgba(20, 16, 12, 0.1);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d1c8;
  font-family: inherit;
}

.footer {
  padding: 32px 0;
  border-top: 1px solid #e4e1db;
  background: #faf9f7;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background: #7b4b2a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 22px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-panel {
  border-radius: 22px;
  overflow: hidden;
}

.list {
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meta {
  font-size: 0.95rem;
  color: #5b5249;
}

.dark .meta {
  color: #e5dfd3;
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stacked-cards {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .section-grid {
    flex-direction: row;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
