* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1c1c1c;
  background: #f7f4ef;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.nav-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 6vw 0;
}

.brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #201f1f;
  color: #f7f4ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-text p {
  margin: 0;
}

.brand-title {
  font-weight: 700;
}

.brand-subtitle {
  color: #555;
  font-size: 0.9rem;
}

.nav-minimal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: #333;
}

.section {
  padding: 3.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #efe8dc;
  border-radius: 28px;
  margin: 2rem 5vw 0;
  padding: 2.5rem;
}

.hero-copy h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  color: #6c5b4c;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.micro-cta {
  margin-top: 1.2rem;
}

.btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #201f1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: #201f1f;
  color: #f7f4ef;
}

.btn.secondary {
  background: #b07a4e;
  color: #fff;
  border-color: #b07a4e;
}

.btn.accent {
  background: #2d5e5e;
  color: #fff;
  border-color: #2d5e5e;
}

.btn.ghost {
  background: transparent;
}

.inline-link {
  color: #2d5e5e;
  text-decoration: underline;
}

.story,
.method,
.trust,
.sample,
.guarantee {
  gap: 2rem;
}

.story,
.method,
.trust,
.sample,
.guarantee {
  background: #fff;
  border-radius: 24px;
  margin: 0 5vw;
}

.contrast {
  flex-direction: column;
  gap: 1rem;
}

.contrast-panel {
  padding: 1.5rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e0d6c8;
}

.contrast-panel.highlight {
  background: #1c2d2d;
  color: #f7f4ef;
  border-color: #1c2d2d;
}

.timeline-track {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-step {
  padding: 1.2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e6d9c9;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonials {
  background: #fff;
  border-radius: 24px;
  margin: 0 5vw;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-cards article {
  padding: 1.25rem;
  background: #f5efe5;
  border-radius: 16px;
}

.urgency {
  background: #1b1a1a;
  color: #f7f4ef;
  gap: 1rem;
  border-radius: 24px;
  margin: 0 5vw;
}

.urgency .btn.primary {
  background: #f7f4ef;
  color: #1b1a1a;
  border-color: #f7f4ef;
}

.pricing {
  background: #fff;
  border-radius: 28px;
  margin: 0 5vw;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.price-card {
  padding: 1.6rem;
  background: #f8f2e7;
  border-radius: 18px;
  border: 1px solid #e6d9c9;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price-card.focus {
  background: #2d5e5e;
  color: #fff;
  border-color: #2d5e5e;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
}

.form-section {
  background: #f0e7d7;
  border-radius: 28px;
  margin: 0 5vw 3rem;
}

.enroll-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.enroll-form input,
.enroll-form select {
  padding: 0.7rem;
  border-radius: 10px;
  border: 1px solid #c9b8a6;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-items article {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem;
}

.footer {
  padding: 2.5rem 6vw 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #1b1a1a;
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #b07a4e;
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  background: #fff;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 0.75rem;
  flex-direction: column;
  max-width: 320px;
  z-index: 10;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.page-inner {
  padding: 3rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 24px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card {
  border: 1px solid #e3d5c2;
  border-radius: 18px;
  padding: 1.4rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid #e3d5c2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.policy-content {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 900px) {
  .nav-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .story,
  .method,
  .trust,
  .sample,
  .guarantee {
    flex-direction: row;
    align-items: center;
  }

  .contrast {
    flex-direction: row;
  }

  .timeline-track,
  .testimonial-cards,
  .pricing-cards,
  .faq-items,
  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .timeline-step,
  .testimonial-cards article,
  .price-card,
  .faq-items article,
  .service-card {
    flex: 1 1 45%;
  }

  .urgency {
    flex-direction: row;
    align-items: center;
  }

  .split-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
