*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0D2545;
  --navy-mid: #132d55;
  --charcoal: #1e2530;
  --slate: #2d3a2e;
  --gold: #C9973A;
  --gold-light: #e8b86d;
  --white: #ffffff;
  --off-white: #f5f2eb;
  --cream: #faf7f2;
  --text: #1a1a2e;
  --text-muted: #5a6070;
}
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(14,17,23,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,151,58,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { width: 56px; }
.nav-logo-text { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-family: 'Jost', sans-serif; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 10px 24px; font-weight: 600 !important; letter-spacing: 1.5px !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--navy); padding: 16px 36px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; border: none; cursor: pointer; font-family: 'Jost', sans-serif; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 16px 36px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 400; text-decoration: none; display: inline-block; transition: border-color 0.2s, transform 0.2s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-dark { border: 1px solid rgba(13,37,69,0.3); color: var(--navy); padding: 16px 36px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 400; text-decoration: none; display: inline-block; transition: border-color 0.2s, transform 0.2s; }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* STATS BAR */
.stats { background: var(--gold); padding: 40px 60px; display: flex; justify-content: center; gap: 80px; }
.stat { text-align: center; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: var(--navy); line-height: 1; }
.stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(13,37,69,0.7); margin-top: 6px; }

/* SECTIONS */
section { padding: 100px 60px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 400; line-height: 1.1; color: var(--navy); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-title-light { color: var(--white) !important; }
.section-sub { font-size: 15px; line-height: 1.8; color: var(--text-muted); max-width: 580px; margin-bottom: 60px; }
.section-sub-light { color: rgba(255,255,255,0.55) !important; }

/* FOOTER */
footer { background: #060d0f; padding: 60px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto 40px; }
.footer-brand img { width: 52px; margin-bottom: 16px; }
.footer-brand-name { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.footer-brand-text { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 260px; }
.footer-col-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* PAGE HERO (non-home pages) */
.page-hero { background: var(--navy); padding: 160px 60px 80px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero-eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 72px; color: var(--white); font-weight: 400; line-height: 1.05; margin-bottom: 24px; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 580px; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .nav-logo img { width: 40px; }
  .nav-logo-text { font-size: 9px; letter-spacing: 2px; }
  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .nav-links a { font-size: 10px; letter-spacing: 1px; }
  .nav-cta { padding: 8px 14px; font-size: 10px !important; }

  /* SECTIONS */
  section { padding: 60px 20px; }
  .section-inner { max-width: 100%; }
  .section-title { font-size: 36px; }
  .section-sub { font-size: 14px; margin-bottom: 40px; }

  /* STATS */
  .stats {
    padding: 28px 20px;
    gap: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat { padding: 12px 8px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 9px; }

  /* PAGE HERO */
  .page-hero { padding: 120px 20px 60px; }
  .page-hero h1 { font-size: 44px; }
  .page-hero-sub { font-size: 14px; }

  /* FOOTER */
  footer { padding: 40px 20px 28px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
