:root {
  --font-main: 'Times New Roman', Times, serif;
  --forest: #0d2818;
  --deep: #071a0e;
  --leaf: #1a4f2a;
  --sage: #4a7c5e;
  --mint: #6db88a;
  --lime: #a8d5a2;
  --ivory: #f4f1e8;
  --warm: #e8dfc9;
  --amber: #c8923a;
  --rust: #8b4513;
  --charcoal: #1c1c1c;
  --muted: #6b7280;
  --accent: #e8a020;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Times New Roman', Times, serif;
  background: var(--deep);
  color: var(--ivory);
  min-height: 100vh;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 26, 14, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(109, 184, 138, 0.15);
  transition: all 0.3s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--mint), var(--amber));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.nav-title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ivory);
  line-height: 1.1;
}

.nav-title span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--mint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--warm);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--mint);
  background: rgba(109, 184, 138, 0.1);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--mint);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: all 0.3s;
}

/* PAGE HERO */
.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26, 79, 42, 0.5) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 20%, rgba(200, 146, 58, 0.15) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(109, 184, 138, 0.15);
  border: 1px solid rgba(109, 184, 138, 0.3);
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

h1.page-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 1rem;
}

h1.page-title .highlight {
  color: var(--mint);
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--warm);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

/* SECTION */
.section {
  padding: 4rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

/* CARDS */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(109, 184, 138, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.card:hover {
  background: rgba(109, 184, 138, 0.07);
  border-color: rgba(109, 184, 138, 0.35);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.88rem;
  color: var(--warm);
  line-height: 1.65;
}

/* GRID */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109,184,138,0.3), transparent);
  margin: 0 2rem;
}

/* FOOTER */
footer {
  background: rgba(7, 26, 14, 0.8);
  border-top: 1px solid rgba(109,184,138,0.15);
  padding: 2rem;
  text-align: center;
}

footer p {
  font-size: 0.82rem;
  color: var(--muted);
}

footer p span { color: var(--mint); }

/* BTN */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--mint), var(--sage));
  color: var(--deep);
}

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

.btn-outline {
  background: transparent;
  color: var(--mint);
  border: 1px solid rgba(109,184,138,0.4);
}

.btn-outline:hover {
  background: rgba(109,184,138,0.1);
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge-green { background: rgba(109,184,138,0.2); color: var(--mint); }
.badge-amber { background: rgba(200,146,58,0.2); color: var(--amber); }
.badge-red { background: rgba(220,80,80,0.15); color: #ff8080; }

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeIn 0.7s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

/* MOBILE NAV */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(7,26,14,0.97);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(109,184,138,0.2);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 0.75rem 1rem; border-radius: 8px; }
}

/* PARTICLE BG */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0;
  animation: float linear infinite;
}

@keyframes float {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-10vh) translateX(30px); opacity: 0; }
}
