/* Base */
:root {
  --bg: #f6f7f4;
  --ink: #1c1d19;
  --muted: #5b625c;
  --accent: #2f7a62;
  --accent-dark: #225a48;
  --sun: #d9a441;
  --mist: #e3e7e1;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(20, 34, 27, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  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: 0;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw 12px;
  position: relative;
  z-index: 2;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  background: var(--mist);
}

.hero {
  margin: 0 4vw 40px;
  padding: 72px 6vw 80px;
  background: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  color: #fefcf8;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 28, 23, 0.72), rgba(15, 28, 23, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0;
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: 0.2s ease;
  cursor: pointer;
}

.button.outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.button.sun {
  background: var(--sun);
  color: #2b2112;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.alt {
  background: var(--mist);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  margin-top: -40px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(21, 33, 27, 0.08);
}

.card img {
  height: 160px;
  object-fit: cover;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(47, 122, 98, 0.1);
  border-radius: 14px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.cta-inline {
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
}

.form-shell {
  background: var(--card);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9d0c7;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.footer {
  padding: 40px 6vw 60px;
  background: #131a17;
  color: #f1f2ee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer small {
  color: #c2c8c0;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 16px 30px rgba(20, 30, 24, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  right: 18px;
  background: #101513;
  color: #f7f6f2;
  padding: 16px 20px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--sun);
  color: #2a1f10;
  font-weight: 600;
}

.cookie-actions .reject {
  background: #2b322e;
  color: #f7f6f2;
}

.page-hero {
  padding: 90px 6vw 40px;
  background: linear-gradient(140deg, rgba(47, 122, 98, 0.15), rgba(217, 164, 65, 0.2));
  margin: 0 4vw;
  border-radius: 28px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
}

.content-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.policy {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(22, 32, 25, 0.1);
}

@media (min-width: 840px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }

  .content-grid {
    flex-direction: row;
  }

  .content-grid .policy {
    flex: 1;
  }
}
