:root {
  --ink: #17251e;
  --muted: #58675f;
  --green: #10271e;
  --green-2: #173c2c;
  --cream: #f7f3ea;
  --paper: #fffdf7;
  --line: rgba(23, 37, 30, 0.1);
  --gold: #f4c76f;
  --gold-2: #c99d43;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
}

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

::selection {
  background: var(--gold);
  color: var(--green);
}

.container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-2);
  color: var(--gold);
}

.brand-name {
  display: block;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  display: block;
  color: #5f6f67;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #3f5148;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a,
.nav-cta,
.button {
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.nav-cta {
  border: 1px solid var(--green-2);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--green-2);
  font-size: 14px;
  font-weight: 800;
}

.lang-switch {
  display: flex;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
}

.lang-btn {
  border: none;
  border-radius: 999px;
  background: transparent;
  padding: 6px 12px;
  color: #6c766f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.lang-btn.is-active {
  background: var(--green-2);
  color: white;
}

.nav-cta:hover {
  background: var(--green-2);
  color: white;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--green);
  color: white;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 68% 30%, rgba(244, 199, 111, 0.14), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 56px;
  padding: 96px 0;
}

.pill {
  display: inline-flex;
  margin: 0 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.lab-section h2,
.client-card h2,
.indicator-card h2,
.contact-card h2,
.section-heading h2 {
  margin: 0;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(56px, 7vw, 92px);
}

.hero-text {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 850;
}

.button-primary {
  background: var(--gold);
  color: var(--green);
}

.button-primary:hover {
  background: #ffd98a;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: white;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.lab-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 20px;
}

.panel-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.panel-head h2 {
  margin: 0;
  font-size: 26px;
}

.panel-head span {
  border-radius: 999px;
  background: var(--gold);
  padding: 7px 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 0;
}

.metric {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 2px 0;
}

.metric strong {
  color: var(--gold);
  font-size: 34px;
  letter-spacing: -0.04em;
}

.metric p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.5;
}

.doctrine {
  border-radius: 8px;
  background: var(--cream);
  padding: 18px;
  color: var(--ink);
}

.doctrine h3 {
  margin: 0;
  font-size: 15px;
}

.doctrine p {
  margin: 10px 0 0;
  color: #46574f;
  font-size: 14px;
  line-height: 1.7;
}

.proof-band {
  border-bottom: 1px solid var(--line);
  background: #fdfaf3;
}

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

.proof-grid h3 {
  margin: 0;
  font-size: 16px;
}

.proof-grid p {
  margin: 8px 0 0;
  color: #5d6a63;
  font-size: 14px;
  line-height: 1.65;
}

.section {
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #7b6a3f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.section h2,
.lab-section h2,
.section-heading h2 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 72px);
}

.section-text {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-text.light {
  color: rgba(255, 255, 255, 0.72);
}

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

.offer-card {
  min-height: 220px;
  border-top: 1px solid var(--line);
  padding: 24px 0 0;
  transition: border-color 180ms ease;
}

.offer-card:hover {
  border-color: rgba(23, 60, 44, 0.4);
}

.offer-card h3 {
  max-width: 260px;
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.offer-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.lab-section {
  background: var(--green-2);
  color: white;
  padding: 96px 0;
}

.lab-summary {
  margin-bottom: 56px;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.tag-grid span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
}

.progress-card {
  align-self: start;
  border-radius: 8px;
  background: var(--cream);
  padding: 24px;
  color: var(--ink);
}

.progress-head,
.progress-row div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.progress-head {
  margin-bottom: 22px;
  font-size: 14px;
}

.progress-head span {
  color: #6c766f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.progress-row {
  margin-bottom: 22px;
}

.progress-row:last-child {
  margin-bottom: 0;
}

.progress-row div {
  margin-bottom: 10px;
  font-size: 14px;
}

.progress-row span {
  color: #65746c;
}

.progress-row::after {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #d8d0bf;
  content: "";
}

.progress-row i {
  position: relative;
  z-index: 1;
  display: block;
  width: 0;
  height: 8px;
  margin-bottom: -8px;
  border-radius: 999px;
  background: var(--gold-2);
}

.method-list {
  display: grid;
  gap: 0;
}

.method-list div {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(23, 37, 30, 0.12);
  padding: 22px 0;
}

.method-list span {
  color: #b08a3c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.method-list p {
  margin: 0;
  color: #25362e;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.clients-section {
  background: #fdfaf3;
  padding: 96px 0;
}

.client-card,
.indicator-card {
  border-radius: 8px;
  padding: 28px;
}

.client-card {
  border: 1px solid var(--line);
  background: white;
}

.indicator-card {
  background: var(--green);
  color: white;
}

.client-card h2,
.indicator-card h2,
.contact-card h2 {
  margin-top: 18px;
  font-size: clamp(32px, 3vw, 42px);
}

.chips,
.indicator-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.chips span {
  border: 1px solid rgba(23, 60, 44, 0.16);
  border-radius: 999px;
  padding: 9px 15px;
  color: #33443b;
  font-size: 13px;
  font-weight: 700;
}

.indicator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.indicator-grid span {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px 0 0;
  font-size: 17px;
  font-weight: 700;
  text-transform: capitalize;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.mission-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.mission-table div {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.mission-table div:last-child {
  border-bottom: 0;
}

.mission-table h3 {
  margin: 0;
  font-size: 21px;
}

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

.hero-map {
  margin-top: 64px;
}

.map-caption {
  margin: 14px 4px 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.map-card {
  min-height: 420px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: #6c766f;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}
  padding: 0 0 96px;
}

.contact-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  border-radius: 8px;
  background: var(--green-2);
  padding: 48px 40px;
  color: white;
}
.contact-card p:last-child {
  max-width: 680px;
  margin: 24px 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.contact-card a {
  flex: none;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--gold);
  padding: 14px 24px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.contact-card a:hover {
  background: #ffd98a;
}

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

  .hero-inner,
  .split,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 72px 0;
  }

  .hero h1 {
    font-size: clamp(46px, 11vw, 72px);
  }

  .proof-grid,
  .offer-grid,
  .indicator-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    align-items: start;
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .container,
  .nav {
    width: min(100% - 28px, 1200px);
  }

  .nav-cta {
    display: none;
  }

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

  .hero h1,
  .section h2,
  .lab-section h2,
  .section-heading h2 {
    font-size: 42px;
  }

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

  .metric-grid,
  .tag-grid {
    grid-template-columns: 1fr;
  }

  .method-list div {
    grid-template-columns: 44px 1fr;
  }

  .mission-table div {
    grid-template-columns: 1fr;
  }

  .section,
  .lab-section,
  .clients-section {
    padding: 72px 0;
  }
}
