:root {
  --background: #f5f3ed;
  --surface: #ffffff;
  --surface-alt: #ebe7dc;
  --text: #172019;
  --muted: #5d675f;
  --green: #1f5a3d;
  --green-dark: #153d2a;
  --border: #d9d5ca;
  --shadow: 0 18px 50px rgba(23, 32, 25, 0.08);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 237, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

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

.brand {
  color: var(--green-dark);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

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

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(21, 61, 42, 0.82), rgba(21, 61, 42, 0.92)),
    radial-gradient(circle at top right, #4d8567, #153d2a 58%);
  color: #ffffff;
}

.hero-content {
  padding: 110px 0;
}

.eyebrow,
.section-label,
.status {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: #d6eadc;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 720px;
  margin: 32px 0 0;
  color: #e3ede7;
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.button-primary {
  background: #ffffff;
  color: var(--green-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

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

.section {
  padding: 105px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-dark {
  background: var(--green-dark);
  color: #ffffff;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.section-label {
  color: var(--green);
}

.section-label-light {
  color: #bcd7c6;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.two-column p,
.contact-wrap p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.two-column p + p {
  margin-top: 22px;
}

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

.card {
  min-height: 280px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card-number {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.card h3 {
  margin: 56px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.portfolio-card {
  margin-top: 48px;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.status {
  color: var(--green);
}

.portfolio-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.portfolio-card p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.portfolio-meta {
  min-width: 170px;
  padding-left: 34px;
  border-left: 1px solid var(--border);
}

.portfolio-meta span,
.portfolio-meta strong {
  display: block;
}

.portfolio-meta span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-meta strong {
  margin-top: 6px;
  font-size: 1.05rem;
}

.contact-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact-wrap p {
  max-width: 690px;
  margin-top: 22px;
  color: #d7e5dc;
}

.button-light {
  flex-shrink: 0;
  background: #ffffff;
  color: var(--green-dark);
}

.site-footer {
  padding: 28px 0;
  background: #0e2c1e;
  color: #b9cabf;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 0.9rem;
}

.footer-wrap p {
  margin: 0;
}

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

  .two-column,
  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-wrap {
    justify-items: start;
  }
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .section {
    padding: 76px 0;
  }

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

  .portfolio-card {
    display: block;
    padding: 28px;
  }

  .portfolio-meta {
    margin-top: 28px;
    padding: 24px 0 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .footer-wrap {
    display: block;
  }

  .footer-wrap p + p {
    margin-top: 8px;
  }
}