* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: #1c5d4f;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw 10px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.split-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  font-size: 0.85rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 6vw 56px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 6vw;
  bottom: -20px;
  width: 110px;
  height: 110px;
  background: #e3c7ff;
  border-radius: 28px;
  z-index: 0;
  transform: rotate(12deg);
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 700;
}

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: #1c5d4f;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #1c5d4f;
  border: 1px solid #1c5d4f;
}

.sticky-cta {
  position: sticky;
  bottom: 14px;
  align-self: flex-end;
  margin-right: 6vw;
  margin-top: 10px;
  z-index: 4;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.alt {
  background: #efe9df;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #6c5f57;
}

.offset-block {
  background: #fff;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.highlight {
  background: #fff2c6;
  padding: 12px 16px;
  border-radius: 16px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e0d6c8;
}

.service-card .price {
  font-weight: 700;
  color: #1c5d4f;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1c5d4f;
  margin-top: 6px;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d2c6b8;
  font-size: 1rem;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #1a1a1a;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1a1a1a;
  color: #fff;
  padding: 16px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner button {
  background: #fff;
  color: #1a1a1a;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner .reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #e0d6c8;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.cta-banner {
  background: #1c5d4f;
  color: #fff;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-page {
  padding: 40px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero-main,
  .hero-card {
    flex: 1;
  }

  .asym-row {
    flex-direction: row;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(33% - 16px);
    min-width: 220px;
  }
}
