* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #231f20;
  background: #f8f4f1;
  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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  gap: 20px;
  background: #f8f4f1;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 50px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 14px 40px rgba(35, 31, 32, 0.08);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #5c3a2f;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #5c3a2f;
  border-color: #5c3a2f;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-alt {
  background: #fff;
}

.section-accent {
  background: #efe5db;
}

.section-header {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #6e5b55;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(35, 31, 32, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-cta {
  color: #5c3a2f;
  font-weight: 600;
  text-decoration: underline;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f9f7f5;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #eadfd6;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e5d7ce;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: #5c3a2f;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(35, 31, 32, 0.08);
}

form {
  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 #d8c7bd;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 6vw;
  background: #1d1513;
  color: #f2ebe7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  background: #c75c3d;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(35, 31, 32, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(35, 31, 32, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-page {
  max-width: 820px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #eadfd6;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
    justify-content: center;
  }

  .split-row {
    flex-direction: row;
  }

  .split-row > div {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split > div {
    flex: 1;
  }

  .form-section {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-section > div {
    flex: 1;
  }

  .cookie-banner {
    left: auto;
    right: 20px;
    max-width: 420px;
  }
}
