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

:root {
  --navy:  #0E2340;
  --navy2: #1A3A5C;
  --navy3: #243F63;
  --gold:  #C8A84B;
  --gold2: #E8C96A;
  --gold3: #A07830;
  --cream: #F5F1EA;
  --lgray: #F0EDE8;
  --white: #FFFFFF;
  --gray:  #6B7280;
  --text:  #222233;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Crimson Pro', Georgia, serif; background: var(--navy); color: var(--white); overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 72px;
  background: rgba(14,35,64,0.97);
  border-bottom: 1px solid rgba(200,168,75,0.25);
  backdrop-filter: blur(16px);
  transition: border-color 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-emblem { width: 36px; height: 42px; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-wordmark .nw1 { font-family: 'Marcellus', serif; font-size: 14px; letter-spacing: 4px; color: var(--white); }
.nav-wordmark .nw2 { font-family: 'Marcellus', serif; font-size: 8px; letter-spacing: 5px; color: var(--gold); margin-top: 2px; }
.nav-wordmark .nw3 { font-family: 'Crimson Pro', serif; font-size: 8px; letter-spacing: 3px; color: rgba(255,255,255,0.4); margin-top: 3px; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: 'Crimson Pro', serif; font-size: 12px; letter-spacing: 3px;
  color: rgba(255,255,255,0.65); 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.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-family: 'Crimson Pro', serif; font-size: 11px; letter-spacing: 3px;
  color: var(--navy); background: var(--gold); padding: 10px 24px;
  text-transform: uppercase; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold2); }

/* ── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  padding: 160px 4rem 80px;
  background: linear-gradient(135deg, #08121E 0%, var(--navy) 60%, #0A1828 100%);
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 70px 70px;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 1.5rem; }
.page-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.page-eyebrow span { font-size: 10px; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 6vw, 80px); font-weight: 300; line-height: 1.05; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-rule { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1.5rem 0; }
.page-hero p { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 600px; line-height: 1.75; }

/* ── SECTION UTILITIES ──────────────────────────────────── */
.sec { padding: 100px 0; }
.sec-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.sec-label { display: block; font-size: 10px; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 1.5rem; }
.sec-label--gold { color: var(--gold); }
.sec-label--gold3 { color: var(--gold3); }
.sec-rule { width: 52px; height: 2px; background: var(--gold); margin: 1.75rem 0; }
.sec-rule--dark { background: var(--gold3); }
h2.display { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 54px); font-weight: 400; line-height: 1.12; }
h2.display em { font-style: italic; color: var(--gold); }
h2.display--dark { color: var(--navy); }
h2.display--dark em { color: var(--gold3); }
.body-text { font-size: 17px; line-height: 1.8; font-weight: 300; }
.body-text--light { color: rgba(255,255,255,0.6); }
.body-text--dark { color: #3a3a4a; }
.body-text + .body-text { margin-top: 1rem; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-gold { display: inline-block; font-family: 'Crimson Pro', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 14px 36px; transition: background 0.2s; }
.btn-gold:hover { background: var(--gold2); }
.btn-outline { display: inline-block; font-family: 'Crimson Pro', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(200,168,75,0.4); padding: 14px 36px; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--gold); background: rgba(200,168,75,0.06); }
.btn-navy { display: inline-block; font-family: 'Crimson Pro', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--white); background: var(--navy); padding: 14px 36px; border: 1px solid rgba(200,168,75,0.3); transition: all 0.2s; }
.btn-navy:hover { border-color: var(--gold); }

/* ── CARDS ──────────────────────────────────────────────── */
.card-navy { background: var(--navy); padding: 2.5rem; }
.card-white { background: var(--white); padding: 2.5rem; }
.card-border { position: relative; }
.card-border::before { content: ''; position: absolute; top: -10px; right: -10px; width: 100%; height: 100%; border: 1px solid var(--gold); z-index: -1; }

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar { background: linear-gradient(90deg, var(--gold3), var(--gold), var(--gold3)); }
.stats-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 1.75rem 1.5rem; text-align: center; border-right: 1px solid rgba(14,35,64,0.2); }
.stat-item:last-child { border-right: none; }
.stat-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: var(--navy); line-height: 1; }
.stat-label { display: block; font-size: 10px; letter-spacing: 3px; color: rgba(14,35,64,0.65); text-transform: uppercase; margin-top: 4px; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: #060D18; padding: 0 4rem 2rem; }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; padding: 4rem 0 3rem; border-bottom: 1px solid rgba(200,168,75,0.12); }
.footer-brand .nav-wordmark { margin-top: 1rem; }
.footer-tagline { font-size: 13px; font-style: italic; color: rgba(255,255,255,0.4); margin-top: 1rem; line-height: 1.6; }
.footer-col h4 { font-family: 'Marcellus', serif; font-size: 11px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }
.footer-italic { font-size: 13px; font-style: italic; color: var(--gold); opacity: 0.6; }
.footer-conf { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 2rem; }
  .page-hero { padding: 140px 2rem 60px; }
  .sec-inner { padding: 0 2rem; }
  .stats-bar-inner { padding: 0 2rem; grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 3rem 2rem 2.5rem; }
  footer { padding: 0 2rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
}
