*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1c2a2a;
  --muted: #5b6f6c;
  --leaf: #2f6b4f;
  --river: #1b4d62;
  --sand: #f4efe8;
  --mist: #eef5f3;
  --sun: #f7d070;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(10, 28, 24, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  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;
  gap: 48px;
  padding-bottom: 48px;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 6vw 10px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--leaf);
}

.split-banner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6vw;
}

.split-banner .story {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  background: var(--leaf);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border: 2px solid var(--leaf);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--leaf);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-image {
  min-height: 260px;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section {
  padding: 0 6vw;
}

.section.alt {
  background: var(--mist);
  padding: 40px 6vw;
}

.section.sand {
  background: var(--sand);
  padding: 40px 6vw;
}

.magazine-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
}

.pull-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--river);
  border-left: 4px solid var(--river);
  padding-left: 16px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 16px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(47, 107, 79, 0.15);
}

.service-card button {
  align-self: flex-start;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--white);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--leaf);
  margin-top: 6px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(28, 42, 42, 0.2);
  font-size: 1rem;
}

.cta-inline {
  color: var(--leaf);
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  padding: 30px 6vw 40px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: var(--sun);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 30;
  background: var(--ink);
  color: var(--white);
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.image-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-strip img {
  flex: 1 1 140px;
  min-height: 120px;
  object-fit: cover;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 6vw;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 6vw;
  max-width: 880px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumbs span {
  color: var(--muted);
}

@media (min-width: 900px) {
  .split-banner {
    flex-direction: row;
    align-items: stretch;
  }

  .split-banner .story {
    flex: 1.1;
  }

  .hero-image {
    flex: 1;
  }

  .magazine-row {
    flex-direction: row;
  }

  .magazine-row .col {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid .card {
    flex: 1;
  }
}
