:root {
  --ink: #17201b;
  --muted: #5e6b66;
  --paper: #f6f4ef;
  --panel: #ffffff;
  --line: #d8ddd7;
  --green: #0a7c5a;
  --red: #b8323a;
  --blue: #275c8f;
  --gold: #b07d20;
  --shadow: 0 18px 60px rgba(23, 32, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--green);
  color: white;
  font-size: 13px;
  border-radius: 6px;
  letter-spacing: 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

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

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: 82vh;
  padding: clamp(48px, 7vw, 100px) clamp(18px, 6vw, 92px);
  background:
    linear-gradient(115deg, rgba(10, 124, 90, 0.12), transparent 42%),
    linear-gradient(25deg, rgba(184, 50, 58, 0.1), transparent 34%),
    var(--paper);
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.eyebrow,
.label {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  background: transparent;
}

.profile-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.profile-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.profile-panel div {
  padding: 24px;
}

.profile-panel h2 {
  margin: 0 0 6px;
  font-size: 30px;
}

.profile-panel p:not(.label) {
  margin: 0 0 12px;
  color: var(--muted);
}

.profile-panel a {
  color: var(--blue);
  font-weight: 700;
}

.facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.facts div {
  padding: 26px clamp(18px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.facts div:last-child {
  border-right: 0;
}

.facts span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.facts strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(22px, 3vw, 34px);
}

.section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 6vw, 92px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.prose {
  color: var(--muted);
  font-size: 19px;
}

.prose p {
  margin: 0 0 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  min-height: 190px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline time {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.timeline h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.timeline p,
.request-list p {
  margin: 0;
  color: var(--muted);
}

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

.evidence-item {
  display: block;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
}

.evidence-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.evidence-item span {
  display: block;
  padding: 16px;
  color: var(--muted);
  font-weight: 700;
}

.request-list {
  display: grid;
  gap: 14px;
}

.company-card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.company-name {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
}

address {
  color: var(--muted);
  font-style: normal;
  font-size: 19px;
}

.request-list p {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 18px;
}

textarea {
  display: block;
  width: 100%;
  min-height: 560px;
  padding: 22px;
  resize: vertical;
  background: #101612;
  color: #f8faf7;
  border: 0;
  border-radius: 8px;
  font: 16px/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

footer {
  padding: 30px clamp(18px, 6vw, 92px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

footer p {
  max-width: 860px;
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: auto;
  }

  .facts,
  .timeline,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  nav {
    gap: 10px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .lead,
  .prose,
  .request-list p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }
}
