* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1d1f;
  background: #f7f5f1;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: #1a4f4a;
  text-decoration: none;
}

header {
  padding: 28px 6vw 16px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #1a4f4a;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 90px;
}

.section {
  padding: 0 6vw;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 2rem;
}

.section p {
  margin: 0 0 16px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px 6vw 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(23, 35, 34, 0.08);
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media img {
  border-radius: 24px;
}

.offset-card {
  background: #f0ede7;
  padding: 20px;
  border-radius: 22px;
  transform: translateX(16px);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(24, 30, 29, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a4f4a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: #1a4f4a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #e4d8c8;
  color: #1b1d1f;
}

.outline-btn {
  border: 2px solid #1a4f4a;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  color: #1a4f4a;
  background: transparent;
}

.layered {
  background: linear-gradient(120deg, #f1e7d7 0%, #f7f5f1 60%);
  padding: 28px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(26, 79, 74, 0.12);
  border-radius: 50%;
}

.stagger {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stagger .step {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(23, 35, 34, 0.07);
}

.stagger .step.offset {
  transform: translateX(12px);
}

.quote {
  background: #fff;
  padding: 22px;
  border-left: 6px solid #1a4f4a;
  border-radius: 18px;
}

.form-wrap {
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 30px rgba(22, 31, 30, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c1b5;
  font-size: 1rem;
}

.footer {
  background: #1b1d1f;
  color: #f7f5f1;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f1e7d7;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1a4f4a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(26, 79, 74, 0.3);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fefaf3;
  border-top: 1px solid #ded6c8;
  padding: 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  background: #e4d8c8;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
}

.side-note {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e7dfd0;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 24px;
  border-radius: 22px;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
}

@media (min-width: 768px) {
  .hero-grid {
    flex-direction: row;
  }

  .hero-panel {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 12px);
  }

  .stagger {
    flex-direction: row;
  }

  .stagger .step {
    flex: 1;
  }

  .mini-grid {
    flex-direction: row;
  }

  .image-strip {
    flex-direction: row;
  }

  .two-col {
    flex-direction: row;
  }
}
