* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f2a2e;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 20px 10px;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1f2a2e;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 10px 20px 30px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #6b5b4a;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  margin: 0;
}

.hero-card {
  background: #fff;
  border-radius: 28px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(35, 45, 50, 0.12);
}

.hero-card strong {
  font-size: 1.1rem;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1f2a2e;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-cta {
  background: #1f2a2e;
  color: #fdfbf9;
}

.primary-cta:hover {
  transform: translateY(-2px);
}

.secondary-cta {
  background: transparent;
}

.secondary-cta:hover {
  background: #f0e7dd;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #e65f3c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
  box-shadow: 0 14px 30px rgba(230, 95, 60, 0.4);
}

.section {
  padding: 32px 20px;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #1f2a2e;
  color: #fdfbf9;
}

.section .label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #9c8472;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #e8ddd1;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.story-panel {
  background: #f0e7dd;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(35, 45, 50, 0.08);
}

.card img {
  border-radius: 16px;
}

.quote {
  border-left: 3px solid #e65f3c;
  padding-left: 14px;
  font-style: italic;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  border: 1px solid #d4c5b4;
  border-radius: 24px;
  padding: 20px;
  background: #fffaf3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2a2e;
}

.form-shell {
  background: #fff;
  border-radius: 28px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(35, 45, 50, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9b9a7;
  font-size: 1rem;
  font-family: inherit;
  background: #fffdfb;
}

button {
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  background: #1f2a2e;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.inline-link {
  color: #e65f3c;
  font-weight: 600;
}

footer {
  padding: 30px 20px 40px;
  background: #efe7dc;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1f2a2e;
  color: #fff;
  padding: 16px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  background: #fff;
  color: #1f2a2e;
  border-radius: 999px;
}

.note {
  font-size: 0.9rem;
  color: #6b5b4a;
}

.contact-card {
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.list {
  margin: 0;
  padding-left: 18px;
}

@media (min-width: 780px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-card {
    flex: 0.9;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split > div,
  .split > img {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card,
  .price-card {
    flex: 1;
  }

  .pricing-wrap {
    flex-direction: row;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 360px;
  }
}
