* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 28px 6vw 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 6vw 80px;
}

.story-section {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 45px rgba(26, 26, 26, 0.08);
}

.story-section.alt {
  background: #efe9e4;
}

.story-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: #3b3b3b;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-button {
  background: #1c3b5c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-button.secondary {
  background: #f0b17a;
  color: #1b1b1b;
}

.cta-link {
  color: #1c3b5c;
  text-decoration: underline;
  font-weight: 600;
}

.inline-quote {
  padding: 16px 20px;
  border-left: 3px solid #1c3b5c;
  background: #f7f2ee;
  font-style: italic;
}

.split-inline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-inline .note {
  background: #fff6ee;
  padding: 18px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e3ddd8;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: #6a5d55;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card {
  background: #1c3b5c;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
}

.form-section {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6cfc9;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 28px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: #4b4b4b;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 5;
}

.sticky-cta a {
  background: #f26a4b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(242, 106, 75, 0.3);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #1b1b1b;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f0b17a;
  color: #1b1b1b;
}

.cookie-reject {
  background: #fff;
  color: #1b1b1b;
}

@media (min-width: 768px) {
  .story {
    align-items: center;
  }

  .story-section,
  .form-section {
    width: min(880px, 92%);
  }

  .split-inline {
    flex-direction: row;
  }

  .image-row {
    flex-direction: row;
  }

  .card-row,
  .pricing-grid {
    flex-direction: row;
  }

  .card,
  .pricing-card {
    flex: 1;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid .field {
    flex: 1;
  }
}
