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

:root {
  --navy: #0a1628;
  --navy-mid: #112040;
  --navy-light: #1a3060;
  --gold: #b8963e;
  --gold-light: #d4a94e;
  --gold-pale: #f5e9cc;
  --cream: #f8f5ef;
  --cream-dark: #ede8df;
  --text-dark: #0d1a2e;
  --text-mid: #374a6b;
  --text-muted: #6b7d9a;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 150, 62, 0.18);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.logo-mark {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  transform: rotate(45deg); flex-shrink: 0;
}

.logo-mark span {
  transform: rotate(-45deg);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 17px; color: var(--gold);
}

.logo-text { font-weight: 500; font-size: 18px; color: var(--white); letter-spacing: 0.12em; text-transform: uppercase; }
.logo-sub { font-size: 9px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; font-weight: 400; display: block; margin-top: -3px; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: transparent !important; border: 1px solid var(--gold) !important;
  color: var(--gold) !important; padding: 8px 20px;
  transition: all 0.25s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* TICKER */
.ticker {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: var(--gold); padding: 9px 0; overflow: hidden;
}
.ticker-inner { display: flex; animation: ticker-scroll 50s linear infinite; white-space: nowrap; }
.ticker-item { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); padding: 0 32px; flex-shrink: 0; }
.ticker-sep { color: rgba(10,22,40,0.35); }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* PAGE HERO */
.page-hero {
  min-height: 52vh;
  background: var(--navy);
  display: flex; align-items: flex-end;
  padding: calc(72px + 36px + 60px) 5vw 72px;
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,150,62,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(184,150,62,0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-hero-accent {
  position: absolute; right: 5vw; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px; font-weight: 300;
  color: rgba(255,255,255,0.025);
  pointer-events: none; white-space: nowrap;
  letter-spacing: -0.02em;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.page-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.page-eyebrow span { font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.page-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(44px, 6vw, 82px); line-height: 1.05; color: var(--white); }
.page-title em { font-style: italic; color: var(--gold-light); }
.page-subtitle { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 560px; margin-top: 20px; font-weight: 300; line-height: 1.75; }

/* SECTION */
section { padding: 90px 5vw; }
.section-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.section-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.section-eyebrow span { font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.section-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(32px, 4vw, 54px); line-height: 1.1; color: var(--navy); }
.section-title.light { color: var(--white); }
.section-body { font-size: 15px; line-height: 1.85; color: var(--text-muted); font-weight: 300; margin-top: 20px; }

.gold-divider { width: 48px; height: 1px; background: var(--gold); margin: 28px 0; }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(10,22,40,0.1); }
.card { background: var(--white); padding: 36px 32px; transition: background 0.25s; }
.card:hover { background: var(--gold-pale); }
.card-num { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 14px; }
.card-title { font-size: 15px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.card-body { font-size: 13.5px; color: var(--text-muted); line-height: 1.72; font-weight: 300; }

/* DARK CARD GRID */
.dark-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(184,150,62,0.1); }
.dark-card { background: var(--navy-mid); padding: 36px 32px; transition: background 0.25s; }
.dark-card:hover { background: var(--navy-light); }
.dark-card-title { font-size: 15px; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.dark-card-body { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.72; font-weight: 300; }

/* FOOTER */
footer { background: #060e1c; padding: 60px 5vw 36px; border-top: 1px solid rgba(184,150,62,0.12); }
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 80px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.32); line-height: 1.75; margin-top: 16px; font-weight: 300; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col-title { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
.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.38); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-col-links a:hover { color: rgba(255,255,255,0.72); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); font-weight: 300; letter-spacing: 0.04em; }
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a { font-size: 11.5px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* FADE */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .card-grid, .dark-card-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .card-grid, .dark-card-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
