/* Base */
:root {
  --forest: #0f3d2e;
  --moss: #1c6b4f;
  --river: #0f4c5c;
  --clay: #b7a48b;
  --sand: #f5f2ec;
  --stone: #2a2f2b;
  --mist: #f0f4f2;
  --accent: #e67e22;
  --accent-soft: #f3b27a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--sand);
  color: var(--stone);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.nav-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5vw;
  background: rgba(245, 242, 236, 0.9);
}

.nav-split .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-split .links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-split .links a {
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-split .cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  text-decoration: none;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 5vw 70px;
  background: linear-gradient(120deg, rgba(15, 61, 46, 0.75), rgba(15, 76, 92, 0.2)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1500&q=80")
      center/cover no-repeat;
  color: #fff;
}

.hero .hero-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--forest);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.asym-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 5vw;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.panel {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 22px 45px rgba(15, 61, 46, 0.08);
}

.panel.offset {
  margin-left: 0;
  border-left: 6px solid var(--accent);
}

.callout {
  background: var(--mist);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(15, 61, 46, 0.1);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 61, 46, 0.12);
}

.card .price {
  font-weight: 700;
  color: var(--moss);
}

.grid-break {
  background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  border-radius: 24px;
  min-height: 260px;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--forest);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(15, 61, 46, 0.25);
  z-index: 10;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 61, 46, 0.2);
  font-family: inherit;
}

.form-shell button {
  align-self: flex-start;
}

.split-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
}

.inline-link {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--accent-soft);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 5vw;
  background: #101815;
  color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 420px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(16, 24, 21, 0.2);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--moss);
  font-weight: 700;
}

.inline-testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border-left: 4px solid var(--accent);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
}

.soft-background {
  background: var(--mist);
  border-radius: 24px;
  padding: 32px;
}

.align-right {
  text-align: right;
}

.page-hero {
  padding: 50px 5vw 30px;
  background: linear-gradient(120deg, rgba(15, 61, 46, 0.9), rgba(230, 126, 34, 0.4)),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
  color: #fff;
}

.page-hero .hero-actions {
  margin-top: 20px;
}

.plain-section {
  padding: 40px 5vw;
}

.content-width {
  max-width: 920px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 61, 46, 0.12);
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--moss);
  font-weight: 600;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: flex-end;
    gap: 60px;
  }

  .hero .hero-top {
    flex: 1;
  }

  .hero .hero-image {
    flex: 1;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
    align-items: flex-start;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .panel.offset {
    margin-left: 60px;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid .panel {
    flex: 1;
  }
}
