:root {
  --navy: #0C2340;
  --navy-mid: #0F2A45;
  --navy-light: #1A3A5C;
  --navy-muted: #4A6480;
  --navy-pale: #8BA5C4;
  --navy-ghost: #C0D0E0;
  --gold: #B8860B;
  --gold-light: #D4A017;
  --gold-pale: #F5EDD8;
  --cream: #F8F6F0;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-muted: #7A7A7A;
  --border: rgba(0,0,0,0.1);
  --border-light: rgba(0,0,0,0.06);
  --blue-pale: #E6F1FB;
  --blue-mid: #185FA5;
  --green-pale: #EAF3DE;
  --green-mid: #3B6D11;
  --amber-pale: #FAEEDA;
  --amber-mid: #854F0B;
  --red-soft: #E24B4A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── Navigation ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-light);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.3s var(--ease);
}

.site-nav.scrolled {
  background: rgba(12,35,64,0.97);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.nav-cta) {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.nav-links a:not(.nav-cta):hover { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a:not(.nav-cta).active { color: var(--white); }
.nav-links a:not(.nav-cta).active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 3px;
  border: none;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--gold-light); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-links.nav-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #0C2340;
  padding: 16px 20px 20px;
  border-bottom: 1px solid #1A3A5C;
}

body.nav-menu-open { overflow: hidden; }

/* ─── Utility ─── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.eyebrow-gold { color: var(--gold); }
.eyebrow-pale { color: var(--navy-pale); }
.eyebrow-blue { color: var(--blue-mid); }
.eyebrow-green { color: var(--green-mid); }

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

.section-title-light { color: var(--white); }

.body-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
}

.body-text-pale { color: var(--navy-pale); }

.gold-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 3px;
  border: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy-ghost);
  font-size: 13px;
  font-weight: 400;
  padding: 12px 24px;
  border-radius: 3px;
  border: 1px solid var(--navy-muted);
  letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--navy-pale);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-dark {
  border-color: var(--border);
  color: var(--text-mid);
}

.btn-outline-dark:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-green {
  background: #2D5A0E;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 3px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-green:hover { background: #3B6D11; transform: translateY(-1px); }

/* ─── Section wrapper ─── */
.section { padding: 80px 40px; }
.section-narrow { max-width: 740px; margin: 0 auto; }
.section-wide { max-width: 1160px; margin: 0 auto; }

/* ─── Dark section ─── */
.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-cream { background: var(--cream); }
.section-navy-mid { background: var(--navy-mid); }

/* ─── Quote strip ─── */
.quote-strip {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 40px;
  text-align: center;
}

.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 10px;
}

.quote-attr {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ─── Recognition bar ─── */
.rec-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rec-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.rec-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}

.rec-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  flex: 1;
  min-width: 180px;
  max-width: 280px;
  transition: border-color 0.2s;
}

.rec-badge:hover { border-color: var(--gold); }

.rec-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rec-icon svg { width: 14px; height: 14px; }
.rec-icon-blue { background: var(--blue-mid); }

.rec-text strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1px;
}

.rec-text span {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--navy);
  color: var(--navy-pale);
  padding: 48px 40px 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--navy-light);
}

.footer-brand-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--navy-pale);
  max-width: 240px;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-ghost);
  font-weight: 500;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: var(--navy-pale);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-disc {
  font-size: 10px;
  line-height: 1.6;
  color: #4A6480;
  max-width: 680px;
  flex: 1;
}

.footer-contact {
  font-size: 12px;
  color: var(--navy-pale);
  text-align: right;
  flex-shrink: 0;
}

.footer-contact a { color: var(--navy-pale); }
.footer-contact a:hover { color: var(--white); }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-up { animation: fadeUp 0.65s var(--ease) both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim-fade-up,
  [data-reveal] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--navy-muted);
  padding: 10px 40px;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-light);
}

.breadcrumb a { color: var(--navy-pale); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--navy-muted); }

/* ─── Page top offset ─── */
.page-body { padding-top: 64px; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .section { padding: 60px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .rec-bar { padding: 16px 20px; }
  .breadcrumb { padding: 10px 20px; }
  .quote-strip { padding: 40px 20px; }
  .quote-text { font-size: 18px; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-contact { text-align: left; }
  .rec-badges { flex-direction: column; }
  .rec-badge { max-width: 100%; }
}
