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

:root {
  --navy: #0B1F3A;
  --navy-mid: #122847;
  --navy-light: #1a3560;
  --gold: #C9922A;
  --gold-light: #E8B84B;
  --gold-pale: #F5D98A;
  --cream: #F7F3EC;
  --white: #FFFFFF;
  --text-muted: #8A9BB5;
  --border: rgba(201,146,42,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(11,31,58,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.83rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 2px;
  font-weight: 600 !important;
  border-bottom: none !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ── PAGE HERO BANNER ── */
.page-banner {
  padding: 9rem 5% 5rem;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,146,42,0.07) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy) 0%, #0e2a4f 100%);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-banner-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,146,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,146,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-banner-inner { position: relative; z-index: 2; max-width: 680px; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.08;
  margin-bottom: 1rem;
}
.page-banner h1 em { font-style: italic; color: var(--gold-light); }
.page-banner p {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.75;
  max-width: 520px;
}

/* ── SHARED LAYOUT ── */
.page-content { padding: 5rem 5%; }
.section-label {
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1rem;
}
h2 em { font-style: italic; color: var(--gold-light); }
.section-intro { font-size: 1rem; color: var(--text-muted); max-width: 520px; line-height: 1.75; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 0.85rem 1.8rem; border-radius: 2px;
  font-weight: 600; font-size: 0.88rem;
  text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  padding: 0.85rem 1.8rem; border-radius: 2px;
  font-weight: 500; font-size: 0.88rem;
  text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
footer {
  background: #06131F; padding: 3rem 5%;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); }
.footer-brand span { color: var(--gold); }
.footer-tagline {
  font-family: 'DM Mono', monospace; font-size: 0.68rem;
  color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.3rem;
}
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; }
.social-btn {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; font-size: 0.85rem;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy {
  width: 100%; text-align: center; font-size: 0.72rem;
  color: rgba(138,155,181,0.4); margin-top: 2rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column; padding: 5rem 5% 3rem;
    gap: 1.5rem; border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .hamburger { display: flex; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}
