:root {
  --bg: #f3f5ef;
  --surface: #ffffff;
  --surface-muted: #edf1e7;
  --text: #101a18;
  --text-muted: #50605d;
  --brand: #0f5a52;
  --brand-strong: #0a443e;
  --accent: #d98e3d;
  --line: #d6ddd8;
  --shadow: 0 18px 45px rgba(16, 26, 24, 0.1);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #eef6ea, var(--bg) 55%);
  line-height: 1.6;
}

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

img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  z-index: -1;
  opacity: 0.65;
}

.orb-one {
  width: 280px;
  height: 280px;
  background: #c0e0cd;
  top: -80px;
  left: -70px;
}

.orb-two {
  width: 320px;
  height: 320px;
  background: #ffd8b0;
  right: -90px;
  top: 190px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(243, 245, 239, 0.84);
  border-bottom: 1px solid rgba(214, 221, 216, 0.6);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--brand), var(--brand-strong));
  color: #f8fcf8;
  padding: 0.82rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(10, 68, 62, 0.24);
}

.btn-small {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.btn.full {
  width: 100%;
  margin-top: 12px;
}

.hero {
  padding: 78px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 14px;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 18px 0 0;
  color: var(--text-muted);
  max-width: 62ch;
}

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

.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points li {
  background: rgba(15, 90, 82, 0.09);
  color: var(--brand-strong);
  border: 1px solid rgba(15, 90, 82, 0.16);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: absolute;
  bottom: -20px;
  left: -18px;
  width: min(230px, 72%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.card-title {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.card-stat {
  font-family: "Space Grotesk", sans-serif;
  margin: 4px 0 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.card-detail {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.card-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.card-list li {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
  padding: 4px 0;
}

.card-list li::before {
  content: "\2022";
  color: var(--accent);
  margin-right: 8px;
}

.metrics {
  padding: 38px 0 20px;
}

.metrics-grid {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.metrics-grid article {
  padding: 22px 20px;
}

.metrics-grid article + article {
  border-left: 1px solid var(--line);
}

.metrics-grid h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.metrics-grid p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.section {
  padding: 72px 0;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.2;
}

.cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  margin-left: 18px;
  margin-right: 18px;
}

.service-card h3 {
  margin-top: 16px;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
}

.service-card p {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.split {
  background: linear-gradient(135deg, rgba(15, 90, 82, 0.08), rgba(217, 142, 61, 0.08));
  border-top: 1px solid rgba(214, 221, 216, 0.8);
  border-bottom: 1px solid rgba(214, 221, 216, 0.8);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.lead {
  margin-top: 14px;
  color: var(--text-muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.checklist li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(16, 26, 24, 0.18);
  color: #273634;
  font-weight: 600;
}

.checklist li::before {
  content: "\2713";
  color: var(--accent);
  margin-right: 10px;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.quote-card p {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  line-height: 1.35;
}

.quote-card span {
  display: block;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.timeline {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.timeline span {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  color: var(--brand);
  font-weight: 700;
}

.timeline h3 {
  margin: 10px 0 8px;
  font-family: "Space Grotesk", sans-serif;
}

.timeline p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact {
  padding-top: 54px;
}

.contact-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.contact-wrap > * {
  min-width: 0;
}

.contact-card {
  background: var(--surface-muted);
  border: 1px solid #d8e1d8;
  border-radius: 12px;
  padding: 18px;
}

.contact-card p {
  margin: 10px 0;
  overflow-wrap: anywhere;
}

.contact-card p a {
  color: var(--brand-strong);
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-footer {
  padding: 28px 0 34px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.delay-1 {
  transition-delay: 0.13s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-card {
    left: 12px;
    bottom: 12px;
  }

  .cards,
  .metrics-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-grid article:nth-child(3),
  .metrics-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .metrics-grid article:nth-child(3),
  .metrics-grid article:nth-child(1) {
    border-left: none;
  }

  .metrics-grid article + article {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 46px;
  }

  .cards,
  .metrics-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .metrics-grid article + article {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .contact-wrap {
    padding: 24px;
  }

  .footer-wrap {
    flex-direction: column;
  }
}
