﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Sora:wght@300;400;500;600&display=swap');

:root {
  --bg: #f4f1ec;
  --bg-2: #fbf8f3;
  --ink: #0b1c1a;
  --muted: #5f6d66;
  --brand: #0f766e;
  --brand-2: #d97706;
  --accent: #14532d;
  --surface: #ffffff;
  --line: #d8d2c7;
  --shadow: 0 24px 60px rgba(15, 118, 110, 0.16);
  --shadow-soft: 0 18px 40px rgba(11, 28, 26, 0.1);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Sora', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at 15% 20%, #e6f0ec 0%, rgba(230, 240, 236, 0) 55%),
    radial-gradient(circle at 85% 15%, #f4e8d9 0%, rgba(244, 232, 217, 0) 48%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 60%, #f0ece6 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  opacity: 0.75;
}

body::before {
  width: 55vmax;
  height: 55vmax;
  top: -20vmax;
  left: -15vmax;
  background: radial-gradient(circle at 30% 30%, rgba(15, 118, 110, 0.2), rgba(15, 118, 110, 0));
}

body::after {
  width: 60vmax;
  height: 60vmax;
  bottom: -30vmax;
  right: -20vmax;
  background: radial-gradient(circle at 40% 40%, rgba(217, 119, 6, 0.22), rgba(217, 119, 6, 0));
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 3vw + 1.2rem, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 2.5vw + 0.8rem, 2.8rem);
}

h3 {
  font-size: 1.25rem;
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

section {
  padding: 84px 24px;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 10;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(251, 248, 243, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 210, 199, 0.6);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--brand), #0b4c47);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.brand-tag {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.solid {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn.solid:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.btn.ghost:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.hero {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 600;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: rgba(15, 118, 110, 0.1);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-cards {
  display: grid;
  gap: 16px;
}

.hero-visual {
  position: relative;
  border-radius: 0;
  overflow: visible;
  min-height: 0;
  aspect-ratio: auto;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-visual::after {
  content: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  transform: none;
  filter: saturate(1.05) contrast(1.02) drop-shadow(0 18px 34px rgba(10, 36, 50, 0.22));
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216, 210, 199, 0.4);
}

.card h3 {
  margin-bottom: 8px;
}

.card .meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.impact-card {
  border-left: 4px solid var(--brand);
}

.metric-card {
  display: grid;
  gap: 12px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0.9));
}

.metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.metric span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand);
}

.metric label {
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
}

.section.alt {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 84px 32px;
  box-shadow: 0 30px 70px rgba(11, 28, 26, 0.08);
}

.section-head {
  max-width: 680px;
  margin-bottom: 32px;
  display: grid;
  gap: 12px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(216, 210, 199, 0.6);
  box-shadow: var(--shadow-soft);
}

.timeline-item span {
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 600;
}

.link-card {
  display: grid;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.policy-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(20, 83, 45, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}

.stat-stack {
  display: grid;
  gap: 12px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.08);
  font-size: 0.9rem;
  color: var(--ink);
}

.section-split {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.highlight {
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(217, 119, 6, 0.18), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  gap: 6px;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(216, 210, 199, 0.6);
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  padding: 60px 24px 32px;
  background: #101c1a;
  color: #f7f4ef;
}

.site-footer p,
.site-footer a {
  color: rgba(247, 244, 239, 0.8);
}

.site-footer h4 {
  color: #f7f4ef;
  margin: 0 0 8px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto 28px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
}

.policy-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px 20px;
}

.policy-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.policy-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-content h2 {
  margin-top: 18px;
}

.policy-aside {
  position: sticky;
  top: 110px;
  align-self: start;
}

.notice {
  padding: 18px;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.2);
  font-size: 0.9rem;
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
  }

  .brand-tag {
    display: none;
  }

  section {
    padding: 64px 20px;
  }

  .section.alt {
    padding: 64px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
