* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b2a24;
  background: #f6f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: #f6f4ef;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #3b5b48;
}

.hero {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: #fefcf7;
  padding: 120px 6% 90px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 28, 0.6);
}

.hero-content {
  position: relative;
  max-width: 520px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.cta-primary,
.cta-secondary,
.cta-inline,
.cta-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.cta-primary {
  background: #f0d27a;
  color: #1b2a24;
}

.cta-secondary {
  background: transparent;
  border-color: #f0d27a;
  color: #fefcf7;
  margin-left: 12px;
}

.cta-light {
  background: #fefcf7;
  color: #1b2a24;
}

.cta-inline {
  color: #3b5b48;
  border-bottom: 1px solid #3b5b48;
  padding: 0;
  border-radius: 0;
}

.split-section {
  display: flex;
  gap: 32px;
  padding: 80px 6%;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .text-block {
  flex: 1;
}

.split-section .media-block {
  flex: 1;
}

.split-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.split-section p {
  margin-bottom: 16px;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stat-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  min-width: 140px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.band-dark {
  background: #1b2a24;
  color: #fefcf7;
}

.band-light {
  background: #ffffff;
}

.overlay-panel {
  background: #fefcf7;
  padding: 24px;
  border-radius: 16px;
  margin-top: -40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial {
  background: #3b5b48;
  color: #fefcf7;
  padding: 26px;
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 16px;
  background: #fefcf7;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  align-items: center;
}

.service-item span {
  font-weight: 600;
}

.service-price {
  color: #3b5b48;
  font-weight: 700;
  white-space: nowrap;
}

.form-section {
  background: #fefcf7;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cdd7d0;
  font-size: 1rem;
  background: #ffffff;
}

button {
  cursor: pointer;
  border: none;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  background: #f0d27a;
  color: #1b2a24;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #3b5b48;
  color: #fefcf7;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.footer {
  padding: 60px 6%;
  background: #1b2a24;
  color: #fefcf7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fefcf7;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: #3b5b48;
  color: #fefcf7;
}

.cookie-reject {
  background: #f0d27a;
  color: #1b2a24;
}

.page-hero {
  padding: 80px 6% 60px;
  background: #1b2a24;
  color: #fefcf7;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.simple-section {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.contact-item {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.image-tile {
  border-radius: 18px;
  overflow: hidden;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
