@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* ── PALETTE ── */
  --bg:           #0F2419;       /* very deep forest */
  --surface:      #162E20;       /* card/section bg  */
  --surface-2:    #1B3A28;       /* hover/alt surface */
  --border:       rgba(184,134,11,0.22);
  --green-mid:    #2A5A38;
  --green-accent: #3A7D4F;

  --gold:         #B8860B;       /* dark goldenrod    */
  --gold-bright:  #D4A017;       /* hover gold        */
  --gold-pale:    #F0D080;       /* light text on dark */
  --gold-glow:    rgba(184,134,11,0.12);

  --white:        #FFFFFF;
  --text:         #E8F5EC;       /* near-white, slightly green-tinted */
  --text-muted:   #92B99E;       /* muted body text   */
  --text-dim:     #5A8068;       /* very dim / meta   */
  --black:        #070E09;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════
   NAV
════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  background: rgba(15,36,25,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--gold-pale);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.2;
  max-width: 240px;
}
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  font-size: 0.8rem; font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-bright); }

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.page-hero {
  padding: 120px 10% 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.breadcrumb {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem; font-weight: 500;
}
.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--gold); }

.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.page-hero h1 .accent { color: var(--gold-bright); }
.page-hero .lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 400;
}

/* ════════════════════════════════
   SECTION UTILITIES
════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.9rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.75; font-weight: 400;
  margin-bottom: 2.5rem;
}
.body-p {
  font-size: 1.02rem; color: var(--text-muted);
  line-height: 1.8; font-weight: 400; margin-bottom: 1.1rem;
}

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer; border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-outline {
  background: transparent;
  color: var(--gold-pale);
  border: 2px solid rgba(240,208,128,0.35);
  margin-left: 1rem;
}
.btn-outline:hover { border-color: var(--gold-pale); color: var(--white); }

/* ════════════════════════════════
   GOLD DIVIDER
════════════════════════════════ */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, transparent);
  opacity: 0.3; margin: 0;
}

/* ════════════════════════════════
   CALLOUT BOX
════════════════════════════════ */
.callout {
  background: var(--surface);
  border-left: 5px solid var(--gold);
  padding: 2.5rem 3rem;
  margin: 0 0 3.5rem;
}
.callout h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold-pale); margin-bottom: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.callout p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 2.5rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  color: var(--gold); line-height: 1.3;
}
.footer-links {
  display: flex; justify-content: center;
  gap: 1.5rem; list-style: none; flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-dim); font-size: 0.78rem;
  text-decoration: none; letter-spacing: 0.06em;
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--gold-pale); }
.footer-copy { color: var(--text-dim); font-size: 0.72rem; text-align: center; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
}
