:root {
  --bg: #0f1b16;
  --bg-soft: #16251e;
  --card: #1d2f26;
  --primary: #2f5d46;
  --primary-2: #3a6e54;
  --accent: #8a6b47;
  --accent-soft: #b69773;
  --text: #eef3ef;
  --muted: #b7c6bc;
  --line: rgba(190, 173, 147, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #0c1511 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

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

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(12, 21, 17, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
}

.nav-list a {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.section {
  padding: 4.5rem 0;
}

.hero {
  padding-top: 5.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.06;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
}

.lede {
  margin-top: 1.25rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 820px;
}

.section-card {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-row {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  color: #f7fbf8;
}

.btn-primary:hover {
  filter: brightness(1.07);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.btn-tertiary {
  border-color: rgba(182, 151, 115, 0.45);
  background: rgba(138, 107, 71, 0.14);
  color: #eadbc8;
}

.btn-tertiary:hover {
  background: rgba(138, 107, 71, 0.25);
}

.grid.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.metric-card {
  background: #182720;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.metric-card h3 {
  color: var(--accent-soft);
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  border-left: 3px solid var(--accent);
  padding: 0.4rem 0 0.4rem 1rem;
}

.timeline-item ul {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.muted {
  color: var(--accent-soft);
  font-size: 0.9rem;
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.015);
}

.section-contact p {
  color: var(--muted);
}

.site-footer {
  padding: 1.5rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .grid.metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.8rem 0;
  }

  .nav-list {
    gap: 0.9rem;
    flex-wrap: wrap;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    width: min(100%, 300px);
  }

  .section {
    padding: 3.6rem 0;
  }

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