:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --text: #121826;
  --muted: #647084;
  --line: #dfe4ec;
  --primary: #0b4a31;
  --primary-light: #0f6041;
  --accent: #6f7d6e;
  --shadow: 0 18px 55px rgba(18, 24, 38, 0.09);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 228, 236, 0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-logo {
  display: block;
  width: clamp(250px, 28vw, 420px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: #eef1f6;
}

.menu-toggle {
  display: none;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  color: var(--text);
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(28px, 5vw, 72px);
  padding: 54px clamp(20px, 5vw, 72px) 58px;
  align-items: start;
  min-height: auto;
  background:
    radial-gradient(circle at 85% 15%, rgba(11, 74, 49, 0.14), transparent 28%),
    radial-gradient(circle at 20% 10%, rgba(18, 24, 38, 0.08), transparent 34%);
}

.hero-content {
  max-width: 820px;
}


.compact-hero .hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 12px;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0;
}

h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  max-width: 780px;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.hero-text {
  margin-top: 22px;
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: center;
  width: 100%;
  max-width: 320px;
}

.hero-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(223, 228, 236, 0.95);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-link-text {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.hero-link-arrow {
  font-size: 20px;
  line-height: 1;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(18, 24, 38, 0.1);
}

.hero-link:hover .hero-link-arrow {
  transform: translateX(3px);
  opacity: 1;
}

.hero-link-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.hero-link-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  box-shadow: 0 16px 40px rgba(11, 74, 49, 0.22);
}

.hero-link-secondary {
  color: var(--text);
}

.hero-link-secondary:hover {
  border-color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--primary);
  color: #fff;
}

.button.primary:hover {
  background: var(--primary-light);
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
}

.button.secondary:hover {
  border-color: var(--primary);
}

.hero-card,
.facts-box,
.contact-card,
.info-card,
.content-block,
.legal-text {
  background: var(--surface);
  border: 1px solid rgba(223, 228, 236, 0.9);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-card {
  padding: 30px;
}

.card-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.hero-card h2 {
  font-size: 30px;
  margin-bottom: 26px;
}

dl {
  margin: 0;
}

.hero-card dl,
.facts-box dl {
  display: grid;
  gap: 16px;
}

.hero-card dt,
.facts-box dt {
  color: var(--muted);
  font-size: 13px;
}

.hero-card dd,
.facts-box dd {
  margin: 2px 0 0;
  font-weight: 700;
}

.intro-section,
.page-main,
.cards-grid,
.statement {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-top: 40px;
  padding-bottom: 68px;
}

.intro-section > p,
.text-stack p,
.content-main p,
.content-block p,
.legal-text p,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 72px;
}

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

.info-card {
  padding: 30px;
  box-shadow: none;
}

.info-card h2,
.info-card h3 {
  margin: 20px 0 12px;
  font-size: 26px;
}

.info-card p {
  color: var(--muted);
}

.card-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary);
  background: #eef1f6;
  font-weight: 800;
}


.text-stack {
  display: grid;
  gap: 16px;
}

.metrics-section {
  margin: 0 clamp(20px, 5vw, 72px) 72px;
  padding: clamp(30px, 5vw, 52px);
  background: var(--surface);
  border: 1px solid rgba(223, 228, 236, 0.9);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-grid div {
  padding: 22px;
  border-radius: 18px;
  background: #f3f6f4;
}

.metric-grid strong {
  display: block;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.12;
  color: var(--primary);
}

.metric-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.split-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.approach-layout {
  margin-top: 20px;
}

.statement {
  padding-bottom: 82px;
}

.statement p {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 72px);
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  max-width: 100%;
}

.page-main {
  padding-top: 54px;
  padding-bottom: 72px;
}

.page-main.narrow {
  max-width: 980px;
  margin: 0 auto;
}

.page-hero {
  max-width: 900px;
  margin-bottom: 42px;
}

.page-hero.small {
  margin-bottom: 24px;
}

.page-hero p:last-child {
  margin-top: 20px;
  max-width: 760px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
}

.content-main,
.facts-box {
  align-self: start;
}

.content-main h2,
.content-block h2,
.legal-text h2 {
  margin-bottom: 16px;
}

.content-main p + p,
.text-stack p + p,
.legal-text p + h2,
.legal-text h2 + p,
.legal-text p + p {
  margin-top: 16px;
}

.facts-box,
.content-block,
.legal-text {
  padding: 34px;
}

.content-block {
  margin-top: 8px;
  box-shadow: none;
}

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

.contact-card {
  padding: 30px;
  box-shadow: none;
}

.contact-card h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.contact-card p + p {
  margin-top: 14px;
}

.large-link {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.muted {
  color: var(--muted);
}

.legal-text {
  box-shadow: none;
}

.legal-text h2:not(:first-child) {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1120px) {
  .site-nav a { padding: 9px 10px; font-size: 14px; }
}

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

  .brand-text {
    white-space: normal;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: clamp(20px, 5vw, 72px);
    right: clamp(20px, 5vw, 72px);
    z-index: 30;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-radius: 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero,
  .intro-section,
  .content-layout,
  .contact-grid,
  .metrics-section,
  .split-block {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    max-width: none;
    margin-top: 12px;
  }

  .intro-section {
    align-items: start;
  }

  .hero {
    padding-top: 54px;
  }

  .metric-grid,
  .cards-grid,
  .cards-grid.two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 16px 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 14px;
  }

  .brand-logo {
    width: min(100%, 220px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-text,
  .intro-section > p,
  .text-stack p,
  .content-main p,
  .content-block p,
  .legal-text p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-cta {
    max-width: none;
    margin-top: 12px;
  }

  .hero-link {
    min-height: 52px;
  }

  .hero-link-text {
    font-size: 16px;
  }

  .hero-card,
  .facts-box,
  .content-block,
  .legal-text,
  .contact-card,
  .info-card {
    padding: 24px;
  }

  .statement p {
    padding: 28px 24px;
    font-size: 22px;
    line-height: 1.2;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
