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

:root {
  --forest: #2d5a3d;
  --forest-dark: #1e3d2a;
  --forest-deeper: #152c1e;
  --silver: #b0b8b4;
  --silver-light: #d4d9d6;
  --cream: #f5f2ec;
  --cream-dark: #e8e4dc;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-muted: #5a5a5a;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 900px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--forest);
}

a:hover {
  color: var(--forest-dark);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(21, 44, 30, 0.82) 0%,
    rgba(21, 44, 30, 0.75) 60%,
    rgba(21, 44, 30, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-logo {
  width: 260px;
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
}

.hero .tagline {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--silver-light);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero .hero-description {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background-color: var(--forest);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--forest-dark);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--cream);
  border: 2px solid var(--silver);
}

.btn-outline:hover {
  background-color: var(--silver);
  color: var(--forest-dark);
}

/* Outline on light background */
.cta .btn-outline {
  color: var(--forest);
  border-color: var(--forest);
}

.cta .btn-outline:hover {
  background-color: var(--forest);
  color: var(--white);
}

/* --- About --- */
.about {
  background-color: var(--white);
  padding: 5rem 1.5rem;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.about-text strong {
  color: var(--forest-dark);
}

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

.card {
  background: var(--cream);
  border-radius: 10px;
  padding: 1.75rem;
  border: 1px solid var(--cream-dark);
}

.card h3 {
  color: var(--forest);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- CTA Section --- */
.cta {
  background-color: var(--cream);
  padding: 5rem 1.5rem;
}

.cta-content {
  max-width: 600px;
  text-align: center;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --- Divider --- */
.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--forest);
  border: none;
  margin: 0 0 2rem;
  border-radius: 2px;
}

.section-divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--forest-deeper);
  color: var(--silver);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.site-footer p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: var(--silver-light);
  text-decoration: underline;
  text-decoration-color: rgba(176, 184, 180, 0.4);
  text-underline-offset: 2px;
}

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

.footer-pa {
  font-size: 0.85rem;
  color: var(--silver);
  opacity: 0.7;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 5rem 1.25rem 4rem;
  }

  .hero-logo {
    width: 200px;
  }

  .hero .tagline {
    font-size: 1.35rem;
  }

  .hero .hero-description {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.6rem;
  }

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

  .about, .cta {
    padding: 3.5rem 1.25rem;
  }

  .hero-buttons, .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .hero .tagline {
    font-size: 1.15rem;
  }

  .hero-logo {
    width: 180px;
  }
}
