/* =========================================
   RESET
========================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================================
   ROOT COLORS
========================================= */

:root {
  --bg: #f5f7f4;
  --card: #ffffff;
  --text: #122017;
  --muted: #5d6b61;
  --green: #21452c;
  --green-light: #2f6b43;
  --border: #dfe6e1;
}

/* =========================================
   BASE
========================================= */

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* =========================================
   TOP BAR
========================================= */

.top-bar {
  background: #102015;
  color: white;
  padding: 12px 20px;
  font-size: 0.92rem;
}

.top-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #d6eadb;
  font-weight: 600;
}

/* =========================================
   NAVIGATION
========================================= */

.nav {
  background: white;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-block h2 {
  font-size: 1.4rem;
  color: var(--green);
  line-height: 1;
}

.logo-block p {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

/* =========================================
   HERO
========================================= */

.site-header {
  padding: 28px 20px;
}

.hero {
  max-width: 1320px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 300px 1fr;

  background: #102015;

  border-radius: 22px;
  overflow: hidden;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.hero-panel {
  position: relative;

  padding: 54px 42px;

  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;

  z-index: 2;
}

.hero-panel::after {
  content: "";

  position: absolute;

  top: 0;
  right: -420px;

  width: 420px;
  height: 100%;

  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(16, 32, 21, 0.95) 0%,
    rgba(16, 32, 21, 0.45) 45%,
    rgba(16, 32, 21, 0) 100%
  );
}

.eyebrow {
  color: #8fc28f;

  text-transform: uppercase;
  letter-spacing: 0.16em;

  font-size: 0.8rem;
  font-weight: 800;

  margin-bottom: 16px;
}

.hero-panel h1 {
  font-size: clamp(2.6rem, 4vw, 4.4rem);

  line-height: 0.95;
  letter-spacing: -0.06em;

  margin-bottom: 24px;
}

.hero-copy {
  color: #d7e5da;
  font-size: 1.05rem;
  max-width: 260px;
}

.hero-image {
  background: #0b1710;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   MAIN CONTENT
========================================= */

main {
  max-width: 1320px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;

  margin-top: 24px;
}

/* =========================================
   CARDS
========================================= */

.card {
  background: white;

  border: 1px solid var(--border);
  border-radius: 18px;

  padding: 30px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.card h2 {
  font-size: 1.5rem;
  color: var(--green);

  margin-bottom: 22px;
}

/* =========================================
   DOCUMENTS
========================================= */

.documents ul {
  list-style: none;
}

.documents li + li {
  margin-top: 14px;
}

.documents a {
  display: block;

  padding: 18px 20px;

  border: 1px solid var(--border);
  border-radius: 14px;

  background: #fafcf9;

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.documents a:hover {
  transform: translateY(-2px);

  border-color: #b9d0be;

  background: #f4faf5;
}

.doc-title {
  font-weight: 700;
  color: var(--green);

  margin-bottom: 6px;
}

.doc-meta {
  font-size: 0.92rem;
  color: var(--muted);
}

/* =========================================
   CONTACT
========================================= */

.contact-item + .contact-item {
  margin-top: 22px;
  padding-top: 22px;

  border-top: 1px solid var(--border);
}

.contact-label {
  font-size: 0.82rem;

  text-transform: uppercase;
  letter-spacing: 0.08em;

  color: var(--muted);

  margin-bottom: 6px;

  font-weight: 700;
}

.contact-value {
  font-size: 1rem;
  color: var(--text);
}

.contact-value a {
  color: var(--green-light);
  font-weight: 600;
}

/* =========================================
   FOOTER
========================================= */

footer {
  border-top: 1px solid var(--border);

  background: white;

  padding: 26px 20px;

  text-align: center;

  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    padding: 40px 30px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-panel::after {
    display: none;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {
  .hero-panel h1 {
    font-size: 2.6rem;
  }

  .card {
    padding: 22px;
  }

  .top-bar-inner {
    justify-content: flex-start;
    gap: 10px;
  }
}
