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

:root {
  --navy: #0d1f3c;
  --navy-light: #152d54;
  --teal: #2a7fa5;
  --teal-light: #3a9fc8;
  --gold: #f5a800;
  --gold-dark: #c98c00;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-light: #eaecf0;
  --gray: #8a92a0;
  --text: #1a1a2e;
  --font-display: 'Cormorant Garamond', serif;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::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); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 84px;
  background: rgba(13,31,60,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,168,0,0.15);
  transition: all 0.3s ease;
}
nav.scrolled { height: 72px; box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  width: 38px; height: 38px; background: var(--teal); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 18px; color: var(--white); letter-spacing: 1px;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text span:first-child { font-family: var(--font-head); font-size: 18px; color: var(--white); letter-spacing: 2px; }
.nav-logo-text span:last-child { font-size: 9px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.75); letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 8px 20px; border-radius: 4px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* PAGE HERO */
.page-hero {
  padding-top: 84px; background: var(--navy);
  text-align: center; padding-bottom: 60px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(42,127,165,0.25) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; padding-top: 60px; }
.page-hero-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(42px,6vw,72px); color: var(--white); font-weight: 600; line-height: 1.1; }
.page-hero-line { width: 60px; height: 3px; background: var(--gold); margin: 20px auto 0; }

/* SECTIONS */
section { padding: 96px 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); color: var(--navy); font-weight: 600; line-height: 1.15; }
.section-title.light { color: var(--white); }
.section-line { width: 50px; height: 3px; background: var(--gold); margin-top: 16px; }
.section-line.center { margin: 16px auto 0; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 4px; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: all 0.25s ease; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,168,0,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* GOLD DIVIDER */
.gold-divider { height: 4px; background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal)); }

/* FOOTER */
footer { background: var(--navy); border-top: 1px solid rgba(245,168,0,0.2); }
.footer-top { padding: 64px 0 48px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 16px; max-width: 260px; }
.footer-col h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { text-decoration: none; font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--gold); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 84px; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 20px; border-bottom: 1px solid rgba(245,168,0,0.2); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  section { padding: 64px 0; }
}
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
