/* ── SHARED STYLES ── */
:root {
  --navy: #1A2B4A;
  --navy-deep: #0F1C30;
  --navy-mid: #243860;
  --gold: #C9A84C;
  --gold-light: #DFC27A;
  --gold-pale: #F5EDD4;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-light: #EEECE8;
  --gray-mid: #8C8880;
  --text: #1A1A1A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15, 28, 48, 0.97); backdrop-filter: blur(8px);
  padding: 0 48px; display: flex; align-items: center;
  justify-content: space-between; height: 68px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.nav-brand { text-decoration: none; display: flex; flex-direction: row; align-items: center; gap: 0; }
.nav-brand-text { display: flex; flex-direction: column; position: relative; }
.nav-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: 0.08em; line-height: 1.15; }
.nav-brand-sub { font-size: 7.5px; font-weight: 500; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-top: 4px; display: block; }
.nav-falcon { height: 22px; width: auto; display: block; margin-left: 4px; margin-bottom: 1px; align-self: flex-end; }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 11px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; padding: 4px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 8px 16px; font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy-deep); padding: 140px 48px 72px; border-bottom: 2px solid var(--gold); }
.page-hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.page-hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 5vw, 64px); font-weight: 300; color: var(--white); line-height: 1.1; letter-spacing: -0.01em; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }

/* ── BUTTONS ── */
.btn-primary { background: var(--gold); color: var(--navy-deep); padding: 14px 36px; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary { color: var(--navy); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid var(--navy); padding-bottom: 2px; transition: all 0.2s; }
.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

/* ── SECTION LABELS ── */
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 14px; }
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 3.5vw, 48px); font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; color: var(--navy); margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }
.section-body { font-size: 15px; line-height: 1.8; color: var(--gray-mid); max-width: 580px; }

/* ── FOOTER ── */
footer { background: var(--navy-deep); padding: 40px 48px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(201,168,76,0.2); }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: 0.08em; }
.footer-tagline { font-size: 10px; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px; }
.footer-details { font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; line-height: 1.7; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.45); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 110px 24px 56px; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
