* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f1f;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6%;
}

.nav-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1f1f1f;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  background: #1f1f1f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.sticky-cta span {
  display: inline-block;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6% 24px;
  background: linear-gradient(120deg, #fbead6, #f7f4f0 60%);
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1f1f1f;
  background: #1f1f1f;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #1f1f1f;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.hero-visual .badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(31, 31, 31, 0.9);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section {
  padding: 48px 6%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-size: 2rem;
  line-height: 1.2;
}

.section-light {
  background: #fff;
}

.bg-texture {
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f1f1f;
}

.bg-texture .card {
  background: rgba(255, 255, 255, 0.9);
}

.section-dark {
  background: #1f1f1f;
  color: #f7f4f0;
}

.section-accent {
  background: #e6ddd4;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: #1f1f1f;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack img {
  border-radius: 16px;
}

.highlight {
  font-weight: 700;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.card .price {
  font-size: 1.1rem;
  font-weight: 700;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  min-width: 32px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.12);
  padding: 20px;
  border-radius: 14px;
}

.quote {
  font-style: italic;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc6bd;
  font-size: 1rem;
  background: #fff;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-note {
  font-size: 0.85rem;
  color: #5d5146;
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: #1f1f1f;
  color: #fff;
}

.cta-band a {
  color: #fff;
  text-decoration: underline;
}

.footer {
  padding: 30px 6%;
  background: #1a1918;
  color: #f7f4f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background: #1f1f1f;
  color: #fff;
  cursor: pointer;
}

.cookie-actions .outline {
  background: transparent;
  color: #1f1f1f;
}

@media (min-width: 768px) {
  .nav-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero .hero-content,
  .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .card-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 16px);
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid > div {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .info-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-card {
    flex: 1 1 calc(33% - 12px);
  }
}
