* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 16px;
  background: #fff;
  border-bottom: 1px solid #efe7dd;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.header-cta {
  align-self: flex-start;
  background: #e05d2f;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #1f1f1f;
  color: #f6f0e8;
}

.section.accent {
  background: #f3e8dc;
}

.section .eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #9f6f57;
}

.hero {
  background: #fef8f2;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
}

.cta-primary {
  background: #2f5d50;
  color: #fff;
}

.cta-secondary {
  border: 1px solid #2f5d50;
  color: #2f5d50;
  background: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-link {
  color: #e05d2f;
  font-weight: 600;
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #eadfce;
}

.card.dark {
  background: #2f5d50;
  color: #fff;
  border: none;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #f0e6da;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.quote {
  font-style: italic;
  border-left: 3px solid #e05d2f;
  padding-left: 16px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
}

.sticky-cta {
  align-self: flex-start;
  background: #e05d2f;
  color: #fff;
  padding: 12px 20px;
  border-radius: 14px;
  position: sticky;
  top: 24px;
}

.form-panel {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #eadfce;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7c6b2;
  font-size: 0.95rem;
}

.form-panel button {
  padding: 12px 18px;
  border: none;
  border-radius: 12px;
  background: #2f5d50;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.form-panel button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #1f1f1f;
  color: #f6f0e8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.layered::before,
.layered::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: rgba(224, 93, 47, 0.12);
  z-index: 0;
}

.layered::before {
  top: 24px;
  right: 12vw;
}

.layered::after {
  bottom: 24px;
  left: 10vw;
  background: rgba(47, 93, 80, 0.12);
}

.layered > * {
  position: relative;
  z-index: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid #eadfce;
  display: none;
  flex-direction: column;
  gap: 10px;
  width: min(90vw, 420px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #2f5d50;
  color: #fff;
}

.cookie-reject {
  background: #efe7dd;
}

.simple-hero {
  padding: 64px 6vw 40px;
  background: #fef8f2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.simple-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.content-block {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #eadfce;
}

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-grid .card {
    flex: 1 1 240px;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
