* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1b1d;
  background: #faf7f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: #fff;
  border-bottom: 1px solid #ece7dd;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo span {
  font-size: 0.85rem;
  color: #7b6b59;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.site-nav a:hover {
  background: #f2e7d6;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 6vw 40px;
  background: linear-gradient(135deg, #fff7ec 0%, #f5eee3 50%, #fff 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9a7f5c;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #1b1b1d;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1b1b1d;
  color: #1b1b1d;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(27, 27, 29, 0.12);
}

.hero-visual {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.hero-visual img {
  border-radius: 18px;
  flex: 1;
  object-fit: cover;
  min-height: 260px;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #fff;
}

.section .section-title {
  font-size: 2rem;
  line-height: 1.2;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f2e7d6;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #7b6b59;
  width: fit-content;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(27, 27, 29, 0.06);
}

.card img {
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  padding: 18px;
  border-left: 3px solid #e1c8a7;
  background: #fffaf3;
  border-radius: 12px;
}

.quote-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #1b1b1d;
  color: #fff;
  padding: 40px 6vw;
}

.quote {
  font-size: 1.1rem;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #efe5d8;
}

.price-card strong {
  font-size: 1.6rem;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #efe5d8;
}

.form-panel label {
  font-size: 0.9rem;
  color: #5f5649;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8cabb;
  font-size: 1rem;
  width: 100%;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 10;
  background: #f26a4f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(242, 106, 79, 0.3);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #1b1b1d;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookies-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookies-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inline-cta {
  color: #f26a4f;
  font-weight: 600;
}

.mini-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .price-grid {
    flex-direction: row;
  }

  .card,
  .price-card {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row > div {
    flex: 1;
  }

  .site-header {
    position: relative;
  }
}
