* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1d1d1d;
  background: #faf8f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: #f5eee7;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #d07b59;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw;
  background: #f1e3d5;
}

.hero-visual {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: #d07b59;
  color: #fff;
  border: 2px solid #d07b59;
}

.btn-outline {
  border: 2px solid #1d1d1d;
}

.section {
  padding: 60px 6vw;
}

.section-alt {
  background: #fffaf3;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-section.reverse {
  flex-direction: column;
}

.split-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-visual {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.inline-cta {
  font-weight: 600;
  color: #b86140;
}

.highlight-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 22px;
  background: #f0d8c4;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #ead3c3;
}

.pricing-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  font-weight: 600;
}

.pricing-meta span {
  color: #b86140;
}

.testimonial-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  padding: 18px;
  border-radius: 14px;
  background: #ffffff;
  border-left: 4px solid #d07b59;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.form-panel label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9c5b6;
  font-size: 1rem;
}

.footer {
  padding: 40px 6vw;
  background: #1f1b18;
  color: #f5eee7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1d1d1d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1b18;
  color: #fff;
  padding: 16px 6vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #d07b59;
  color: #fff;
}

.cookie-reject {
  background: #f5eee7;
  color: #1f1b18;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-content,
  .hero-visual {
    flex: 1;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-item {
    flex: 1 1 240px;
  }

  .testimonial-strip {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
