* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #12232e;
  --subtle: #4b5d67;
  --accent: #0d7a7a;
  --accent-dark: #075b5b;
  --sand: #f4f1ea;
  --mist: #e8eef0;
  --sun: #f3c969;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 35, 46, 0.12);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  border-radius: 16px;
  display: block;
}

header {
  padding: 24px 6vw 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(18, 35, 46, 0.1);
  padding-bottom: 18px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.4px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--subtle);
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

main {
  padding: 0 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--sand);
}

.split-section.alt {
  background: var(--mist);
}

.split-section.dark {
  background: #0f2f36;
  color: var(--white);
}

.split-section.tight {
  padding: 18px 22px;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.split-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-section.reverse .split-content {
  order: 2;
}

.split-section.reverse .split-media {
  order: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
  color: var(--subtle);
}

.dark p,
.dark .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.button.light {
  background: var(--sun);
  color: var(--ink);
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  background: rgba(255, 255, 255, 0.2);
  padding: 14px 16px;
  border-radius: 12px;
  min-width: 140px;
}

.testimonial {
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
}

.form-card {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(18, 35, 46, 0.15);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: var(--subtle);
}

.form-error {
  color: #b42318;
  font-size: 13px;
  display: none;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: var(--sun);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow);
}

footer {
  padding: 40px 6vw 60px;
  background: #0f2f36;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 10;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  border-radius: var(--radius);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
  color: var(--white);
}

.page-hero h1 {
  max-width: 520px;
}

.section-image {
  background: url("https://images.unsplash.com/photo-1472396961693-142e6e269027?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  min-height: 260px;
  width: 100%;
  border-radius: 16px;
}

.hero-image {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  min-height: 340px;
}

.coast-image {
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.desert-image {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.wetlands-image {
  background: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.callout {
  padding: 16px;
  border-radius: 14px;
  background: rgba(15, 47, 54, 0.08);
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse .split-content {
    order: 1;
  }

  .split-section.reverse .split-media {
    order: 2;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }
}
