:root {
  --bg: #f5f6f7;
  --surface: #ffffff;
  --surface-soft: #eef3f1;
  --text: #1f2933;
  --muted: #5b6773;
  --primary: #1f6f50;
  --secondary: #003a70;
  --border: #e4e7eb;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(228, 231, 235, 0.8);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--secondary);
}

.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.32)),
    url("/assets/images/hero-camping.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 58, 112, 0.55), rgba(31, 111, 80, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 84px 0;
  max-width: 760px;
}

.eyebrow,
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.05;
}

.hero-text {
  max-width: 640px;
  font-size: 1.08rem;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-light {
  background: white;
  color: var(--secondary);
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: #f0f4f3;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head h2,
.intro h2,
.cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
}

.section-head p,
.intro p,
.cta-box p {
  margin: 0;
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.stats-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.stat strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--secondary);
}

.stat span {
  color: var(--muted);
}

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

.media-card,
.process-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.media-card-body {
  padding: 20px;
}

.media-card h3,
.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.media-card p,
.process-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e7f2ee;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card {
  padding: 24px;
}

.step {
  display: inline-flex;
  margin-bottom: 14px;
  font-weight: 800;
  color: var(--primary);
}

.cta-section {
  padding: 0 0 84px;
}

.cta-box {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  border-radius: 26px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 24px;
  align-items: center;
}

.section-tag-light {
  color: rgba(255, 255, 255, 0.8);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.88);
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
}

.site-footer {
  background: #0d2238;
  color: white;
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

  .intro-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 68px;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.95rem;
  }

  .hero {
    min-height: 64vh;
  }

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

  .section {
    padding: 64px 0;
  }

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

  .media-card img {
    height: 210px;
  }

  .cta-box {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

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

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

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .main-nav {
    display: none;
  }
}