* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: #fff7ef;
  border-bottom: 1px solid #e7ddd1;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  padding: 90px 6% 70px;
  background: #fff;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 650px;
  background: #fff7ef;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-card h1 {
  font-size: 2.4rem;
  line-height: 1.1;
}

.hero-visual {
  margin-top: 30px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #eee0d2;
}

.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 #8b5d3c;
  background: #8b5d3c;
  color: #fff;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #8b5d3c;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 93, 60, 0.25);
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #fff;
}

.section.tight {
  padding: 50px 6%;
}

.section-headline {
  font-size: 1.8rem;
  max-width: 720px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #eadfce;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 18px;
  background: #fff7ef;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #eadfce;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid #eadfce;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-tag {
  font-weight: 700;
  color: #8b5d3c;
  font-size: 1.1rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #eadfce;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #eadfce;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8c6b2;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  font-size: 0.9rem;
  color: #5c5144;
}

.inline-link {
  color: #8b5d3c;
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 30px 6%;
  background: #1f1b16;
  color: #f8f0e8;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1f1b16;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  z-index: 50;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 6%;
  border-top: 1px solid #e7ddd1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 70px 6% 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #eadfce;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 860px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .split {
    flex-direction: row;
    gap: 40px;
  }

  .story-grid {
    flex-direction: row;
  }

  .icon-row {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 220px;
  }

  .info-grid {
    flex-direction: row;
  }

  .testimonial-row {
    display: flex;
    gap: 18px;
  }
}
