* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0b1510;
  --forest: #114c35;
  --moss: #3f7d5d;
  --sage: #dbe9e1;
  --mist: #f7f9f7;
  --sand: #f0ede6;
  --sun: #f6c75b;
  --coral: #e07a5f;
  --shadow: 0 20px 50px rgba(11, 21, 16, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--forest);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 6% 20px;
  background: linear-gradient(120deg, rgba(219, 233, 225, 0.9), rgba(247, 249, 247, 0.9)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  max-width: 560px;
}

.hero p {
  max-width: 520px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: var(--forest);
  color: #fff;
}

.btn.secondary {
  border-color: var(--forest);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.7);
}

.btn.sun {
  background: var(--sun);
  color: var(--ink);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 6%;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .media img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.tag {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 700;
}

.panel {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.panel.moss {
  background: var(--forest);
  color: #fff;
}

.panel.sand {
  background: var(--sand);
}

.inline-cta {
  color: var(--forest);
  font-weight: 600;
  border-bottom: 2px solid var(--forest);
  align-self: flex-start;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric-card {
  flex: 1 1 150px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.metric-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--forest);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-card .price {
  font-weight: 700;
  color: var(--forest);
}

.service-card img {
  border-radius: 14px;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

.grid-two {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-wrap label {
  font-size: 0.85rem;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d9d5;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  font-size: 0.85rem;
  color: #4b5a52;
}

.cta-strip {
  background: var(--forest);
  color: #fff;
  padding: 26px 6%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-strip .btn {
  align-self: flex-start;
}

.footer {
  margin-top: auto;
  background: #0b1510;
  color: #fff;
  padding: 30px 6%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--coral);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 4;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 320px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.content-page {
  padding: 40px 6% 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.content-page ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

@media (min-width: 820px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .grid-two {
    flex-direction: row;
  }

  .form-row.dual {
    flex-direction: row;
  }

  .form-row.dual > div {
    flex: 1;
  }

  .cta-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
