*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f9f7f4;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #0f4c81;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.site-header {
  padding: 24px 20px 10px;
  background: #f9f7f4;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.story {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.section {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(24, 33, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.section--soft {
  background: #f0efe9;
}

.section--dark {
  background: #1f2a30;
  color: #f7f4ef;
}

.section--dark a {
  color: #ffd78a;
}

.section--layered::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 16px;
  pointer-events: none;
}

.section--hero {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: #f9f7f4;
  min-height: 380px;
  justify-content: flex-end;
}

.section--hero .hero-inner {
  background: rgba(20, 27, 31, 0.68);
  padding: 24px;
  border-radius: 16px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.headline {
  font-size: 2rem;
  line-height: 1.2;
  margin: 10px 0;
}

.subline {
  font-size: 1.05rem;
}

.split-note {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.quote {
  font-style: italic;
  padding-left: 18px;
  border-left: 3px solid #c4a46b;
}

.callout {
  padding: 16px;
  background: #f6efe6;
  border-radius: 14px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 20px rgba(20, 33, 48, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f2a30;
  color: #f7f4ef;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-button.light {
  background: #f7f4ef;
  color: #1f2a30;
  border: 1px solid rgba(31, 42, 48, 0.2);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c8c1b5;
  font-size: 0.95rem;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1f2a30;
  color: #f7f4ef;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.sticky-cta a {
  color: #ffd78a;
  font-weight: 600;
}

.site-footer {
  padding: 40px 20px 80px;
  background: #1b1f23;
  color: #d7d2c7;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 88px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.small-text {
  font-size: 0.85rem;
  color: #6b6760;
}

.page-title {
  margin: 0;
  font-size: 2rem;
}

.simple-hero {
  padding: 40px 20px 10px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 780px) {
  .nav-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .headline {
    font-size: 2.6rem;
  }

  .split-note {
    flex-direction: row;
    align-items: center;
  }

  .split-note > * {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .form-actions {
    flex-direction: row;
    align-items: center;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
