/* ─── RESET / TOKENS / BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0a1628;
  --navy-mid:   #0d2847;
  --navy-light: #134268;
  --teal:       #0d9488;
  --cyan:       #5eead4;
  --cyan-pale:  #ccfbf1;
  --ice:        #f0fdfa;
  --white:      #fafffe;
  --charcoal:   #0f1c2e;
  --text-body:  #334155;
  --text-muted: #4a6070;
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--charcoal); overflow-x: hidden; }
img { display: block; max-width: 100%; }

/* ─── NAV ─── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 3rem; transition: background 0.4s, box-shadow 0.4s, padding 0.4s; }
nav.scrolled, body.solid-nav nav { background: rgba(10,22,40,0.97); box-shadow: 0 2px 24px rgba(0,0,0,0.18); }
nav.scrolled { padding: 1rem 3rem; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.nav-logo .wordmark { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.5rem; font-weight: 400; letter-spacing: 0.02em; color: #fff; }
.nav-logo .tagline-small { font-size: 0.65rem; font-weight: 300; letter-spacing: 0.28em; color: var(--cyan); text-transform: uppercase; margin-top: 3px; opacity: 0.6; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-cta { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.6rem 1.5rem; background: var(--cyan); color: var(--navy); text-decoration: none; border-radius: 3px; transition: background 0.25s; }
.nav-cta:hover { background: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 1.5px; background: #fff; transition: 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile { position: fixed; inset: 0; z-index: 99; background: var(--navy); display: none; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: 'DM Serif Display', Georgia, serif; font-size: 2.2rem; color: #fff; text-decoration: none; transition: color 0.2s; }
.nav-mobile a:hover { color: var(--cyan); }

/* ─── FOOTER ─── */
footer { background: #060e1a; padding: 3rem 3rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.3rem; font-weight: 400; letter-spacing: 0.04em; color: #fff; opacity: 0.7; }
.footer-copy { font-size: 0.62rem; font-weight: 300; letter-spacing: 0.14em; color: rgba(255,255,255,0.2); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.62rem; font-weight: 300; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-admin { margin-left: auto; }
.footer-admin a { font-size: 0.55rem; color: rgba(255,255,255,0.08); text-decoration: none; letter-spacing: 0.1em; transition: color 0.3s; }
.footer-admin a:hover { color: rgba(255,255,255,0.3); }

/* ─── CTA BAND ─── */
.cta-band { background: var(--teal); padding: 4rem 3rem; text-align: center; }
.cta-band h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 400; color: #fff; margin-bottom: 1.6rem; }
.cta-band h2 em { font-style: italic; }
.cta-band a { display: inline-block; padding: 0.85rem 2.4rem; background: var(--navy); color: #fff; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; border-radius: 3px; transition: background 0.25s; }
.cta-band a:hover { background: var(--navy-mid); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
}
