:root {
  --black: #101312;
  --charcoal: #171a19;
  --charcoal-2: #202423;
  --green: #0f6b35;
  --green-2: #168746;
  --green-soft: rgba(22, 135, 70, 0.24);
  --white: #f2f2ee;
  --silver: #c9c9c9;
  --muted: #929792;
  --line: rgba(201, 201, 201, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.45;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 66% 22%, rgba(22,135,70,.23), transparent 34%),
    radial-gradient(circle at 30% 60%, rgba(255,255,255,.035), transparent 28%);
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

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

.nav-wrapper {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img {
  width: 170px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--silver);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.9;
}

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

.nav-button {
  padding: 13px 18px;
  border: 1px solid rgba(201,201,201,.42);
  color: var(--white);
}

.hero {
  min-height: 760px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 70px;
}

.hero-grid {
  padding-top: 92px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 26px;
  max-width: 660px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.hero-copy h1 span {
  color: var(--green-2);
}

.hero-copy p {
  max-width: 620px;
  color: #d7d7d2;
  font-size: 20px;
  margin: 0 0 34px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.secondary {
  color: var(--silver);
}

.hero-logo-card {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.32);
  padding: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,.36);
}

.hero-logo-card img {
  width: 100%;
  height: auto;
}

.trust-strip {
  margin-top: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(201,201,201,.08);
  padding: 22px;
}

.trust-item {
  min-height: 132px;
  padding: 24px;
  background: rgba(23, 26, 25, 0.95);
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 98px 0;
}

.section-header {
  max-width: 800px;
  margin-bottom: 44px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.lead {
  margin: 0;
  color: #d7d7d2;
  font-size: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(32,36,35,.94), rgba(18,21,20,.96));
}

.card .number {
  margin: 0 0 28px;
  color: var(--green-2);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.15;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.ethos-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(15,95,47,.18), rgba(16,19,18,.8));
}

.ethos-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
  border: 1px solid rgba(22,135,70,.42);
  background: rgba(12,14,13,.46);
  padding: 46px;
}

.ethos-box p {
  color: #d7d7d2;
  font-size: 18px;
  margin: 0 0 18px;
}

.ethos-box .latin {
  color: var(--green-2);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 22px;
}

.bio-section {
  background: rgba(0,0,0,.22);
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.bio-image-wrap {
  border: 1px solid var(--line);
  padding: 12px;
  background: rgba(255,255,255,.04);
}

.bio-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.bio-grid p {
  color: #d7d7d2;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.panel {
  border: 1px solid var(--line);
  background: rgba(32,36,35,.72);
  padding: 36px;
}

.panel p,
.panel li {
  color: #d7d7d2;
  font-size: 17px;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-bottom: 1px solid var(--line);
}

.clean-list li:last-child {
  border-bottom: 0;
}

.clean-list li::before {
  content: "◆";
  color: var(--green-2);
  position: absolute;
  left: 0;
  top: 17px;
  font-size: 11px;
}

.contact-section {
  background: linear-gradient(135deg, rgba(15,95,47,.18), rgba(16,19,18,.94));
}

.contact-box {
  max-width: 860px;
  text-align: center;
}

.contact-box p {
  color: #d7d7d2;
  font-size: 19px;
  margin: 0 auto 28px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-grid p {
  margin: 0;
}

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

  .hero-grid,
  .bio-grid,
  .ethos-box,
  .split {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 640px) {
  .nav-wrapper {
    min-height: 78px;
  }

  .brand img {
    width: 138px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 46px;
  }

  .hero-grid {
    padding-top: 58px;
    gap: 42px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

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

  .section {
    padding: 72px 0;
  }

  .ethos-box,
  .panel {
    padding: 28px;
  }
}
