
:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #161616;
  --bg-card: #1e1e1e;
  --green: #1a6b35;
  --green-light: #2a9d52;
  --gold: #c9a227;
  --gold-light: #e2b93b;
  --white: #f0f0f0;
  --muted: #a0a0a0;
  --border: #2a2a2a;
  --font-main: 'Inter', 'Segoe UI', sans-serif;
  --font-display: 'Georgia', serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-main);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
}

.nav-logo img { height: 48px; }

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-light) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, #1a3a22 0%, #0d0d0d 65%);
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 2rem; }
.hero-content img { width: 160px; margin-bottom: 1.5rem; filter: drop-shadow(0 0 24px rgba(201,162,39,0.4)); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 span { color: var(--gold-light); }

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0d0d0d;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--green-light);
  color: var(--green-light);
  padding: 0.72rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 1rem;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--green); color: var(--white); }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }

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

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

h2 span { color: var(--gold-light); }

/* ── NEWS CARDS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); }

.card-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

.card-body { padding: 1.4rem; }
.card-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.4; }
.card-body p { color: var(--muted); font-size: 0.88rem; }
.card-date { color: var(--gold); font-size: 0.75rem; margin-top: 1rem; display: block; }

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}

.stat-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label { color: var(--muted); font-size: 0.85rem; margin-top: 0.4rem; }

/* ── TIMELINE ── */
.timeline { position: relative; padding: 3rem 0; }

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--gold));
  transform: translateX(-50%);
}

.tl-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2.5rem);
  margin-bottom: 3rem;
  position: relative;
}

.tl-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2.5rem);
}

.tl-dot {
  position: absolute;
  left: 50%;
  top: 1.1rem;
  transform: translate(-50%, 0);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 8px rgba(201,162,39,0.6);
  z-index: 2;
}

.tl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  max-width: 420px;
  transition: border-color 0.2s;
}
.tl-card:hover { border-color: var(--gold); }

.tl-year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.tl-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.tl-card p { color: var(--muted); font-size: 0.87rem; }

.tl-future .tl-dot { background: var(--green-light); box-shadow: 0 0 10px rgba(42,157,82,0.7); }
.tl-future .tl-year { color: var(--green-light); }
.tl-future .tl-card { border-color: var(--green); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap { text-align: center; }
.about-img-wrap img { width: 220px; filter: drop-shadow(0 0 30px rgba(201,162,39,0.35)); }

.pillar-list { list-style: none; margin-top: 1.5rem; }
.pillar-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.pillar-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0f2a18 0%, #0d0d0d 100%);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero p { color: var(--muted); margin-top: 0.8rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── NEWS LIST PAGE ── */
.news-list { max-width: 860px; margin: 0 auto; }
.news-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.5rem;
  transition: border-color 0.2s;
}
.news-item:hover { border-color: var(--gold); }
.news-item-meta { min-width: 100px; }
.news-item-date { color: var(--gold); font-size: 0.8rem; display: block; }
.news-item-tag { display: inline-block; background: var(--green); color: var(--white); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 3px; margin-top: 0.4rem; }
.news-item-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.news-item-body p { color: var(--muted); font-size: 0.87rem; }

/* ── FOOTER ── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
footer img { height: 40px; margin-bottom: 1rem; opacity: 0.7; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--gold-light); }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; margin: 1rem 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-secondary); padding: 1rem 2rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .timeline::before { left: 20px; }
  .tl-item, .tl-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: 3.5rem; }
  .tl-dot { left: 20px; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-img-wrap { order: -1; }
}
