@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700;900&display=swap');

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

:root {
  --navy:    #0B1F3A;
  --deep:    #071529;
  --gold:    #B8933E;
  --lgold:   #D4AF6A;
  --pale:    #F2E6CC;
  --cream:   #FDFBF6;
  --gray:    #9A9488;
  --light:   #F5F2EC;
  --white:   #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--navy); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7, 21, 41, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,147,62,0.2);
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--cream); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(253,251,246,0.7);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 10px 22px;
  border-radius: 2px; text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--lgold); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--cream); display: block; transition: all 0.3s; }
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--deep); flex-direction: column; padding: 24px 32px; gap: 20px;
    border-bottom: 1px solid rgba(184,147,62,0.2); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
}

/* ── SHARED ── */
.gold-bar-top { height: 5px; background: linear-gradient(90deg, var(--gold), var(--lgold), var(--gold)); }
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 44px); font-weight: 700;
  line-height: 1.15; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.divider { width: 50px; height: 2px; background: var(--gold); margin-bottom: 40px; }
section { padding: 88px 24px; }

/* ── BUTTONS ── */
.btn { display: inline-block; text-decoration: none; border-radius: 2px; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; padding: 15px 34px; transition: all 0.3s; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--lgold); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,147,62,0.35); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(253,251,246,0.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: #0d2548; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--deep);
  border-top: 3px solid var(--gold);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(184,147,62,0.15);
}
@media (max-width: 680px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--cream); margin-bottom: 12px; }
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(253,251,246,0.5); max-width: 280px; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(253,251,246,0.55); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--lgold); }
.footer-bottom { max-width: 960px; margin: 28px auto 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(253,251,246,0.3); letter-spacing: 1px; }

/* ── CREDENTIALS STRIP ── */
.creds-strip { background: var(--navy); border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); padding: 48px 24px; }
.creds-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; max-width: 960px; margin: 0 auto; }
@media (max-width: 680px) { .creds-grid { grid-template-columns: repeat(2,1fr); } }
.cred-card {
  border: 1px solid rgba(184,147,62,0.25);
  border-top: 3px solid var(--gold);
  padding: 24px 16px; border-radius: 4px; text-align: center;
  transition: all 0.3s; background: rgba(255,255,255,0.02);
}
.cred-card:hover { background: rgba(184,147,62,0.07); transform: translateY(-3px); }
.cred-icon { font-size: 26px; margin-bottom: 10px; display: block; }
.cred-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--cream); margin-bottom: 4px; line-height: 1.3; }
.cred-sub { font-size: 10px; color: rgba(253,251,246,0.45); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; display: block; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes shine { 0%{left:-100%} 100%{left:200%} }
.fade-up { opacity:0; animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
