@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── TOKENS ── */
:root {
  --navy-deep:   #0d1b2e;
  --navy-mid:    #1a3a5c;
  --navy-light:  #2a5280;
  --gold:        #c9a84c;
  --gold-light:  #e0be78;
  --white:       #ffffff;
  --off-white:   #f4f5f8;
  --gray-light:  #e8eaf0;
  --gray-mid:    #9aa3b8;
  --text:        #1a1f2e;
  --text-soft:   #4a5570;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(13,27,46,.12);
  --shadow-lg:   0 12px 48px rgba(13,27,46,.18);
  --transition:  0.2s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-deep);
  border-bottom: 2px solid var(--gold);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy-deep) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-deep);
  border-top: 2px solid var(--gold);
  padding: 48px 32px 32px;
  color: rgba(255,255,255,.6);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 10px;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,.5); font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; transition: color var(--transition); }
.footer-social a:hover { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,.3); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy-mid); color: white; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ── SECTION UTILITIES ── */
.section { padding: 80px 32px; }
.section-sm { padding: 48px 32px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 1px;
  color: var(--navy-deep);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title-white { color: white; }
.section-body {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.75;
}

/* ── CARDS ── */
.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 64px 32px;
  text-align: center;
  border-bottom: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
}
.page-hero .section-label { display: inline-block; }
.page-hero .section-title { color: white; margin: 0 auto 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: .95rem; max-width: 520px; margin: 0 auto; }

/* ── DIVIDER ── */
.gold-rule { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 20px 0; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--navy-deep);
    z-index: 99;
    flex-direction: column;
    padding: 32px;
    gap: 24px;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-mobile a.active, .nav-mobile a:hover { color: var(--gold); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 56px 20px; }
  .section-sm { padding: 36px 20px; }
}
