@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --navy:       #0C3660;
  --navy-mid:   #185FA5;
  --navy-light: #EAF1F8;
  --gold:       #C8A84B;
  --gold-dark:  #9E7E2A;
  --gold-light: #FDF6E3;
  --white:      #ffffff;
  --gray-bg:    #F4F6F8;
  --gray-border:#D6DCE4;
  --text-dark:  #0C1F35;
  --text-mid:   #3D5068;
  --text-light: #7A8899;
  --green:      #1A7A4A;
  --red:        #C0392B;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12,54,96,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
}
.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}
.logo-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--white); }
.logo-tag { font-size: 10px; color: #8FB5D8; font-weight: 400; display: block; margin-top: -2px; }

/* Nav */
nav { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
nav a {
  color: #8FB5D8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
nav a:hover { color: var(--gold); background: rgba(200,168,75,0.08); }
nav a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 10px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 8px;
  min-width: 200px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
/* Hover bridge: spans the 8px gap between "Initiatives" and the menu so the
   dropdown stays open while the cursor travels down onto the items. Without
   this, crossing the gap drops :hover and the menu vanishes before you click. */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  height: 12px;
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
}
.dropdown-menu a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  nav { display: none; }
  .mobile-menu-btn { display: flex; }
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(160deg, #0a2540 0%, #0C3660 60%, #0d4a8a 100%);
  padding: 120px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A84B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { max-width: 800px; margin: auto; position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 17px;
  color: #8FB5D8;
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* ── SECTIONS ── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: auto; }
.section-inner-narrow { max-width: 800px; margin: auto; }
.section-alt { background: var(--gray-bg); }
.section-navy { background: var(--navy); }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title-white { color: var(--white); }
.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.section-sub-white { color: #8FB5D8; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px) { .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(12,54,96,0.12); transform: translateY(-3px); }
.card-navy {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 14px;
  padding: 28px 24px;
  transition: background 0.2s;
}
.card-navy:hover { background: rgba(255,255,255,0.08); }

.card-icon {
  width: 44px; height: 44px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card-icon-navy { background: rgba(200,168,75,0.15); }
.card-icon-navy svg { stroke: var(--gold); }

.card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card-navy h3 { color: var(--white); }
.card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.card-navy p { color: #8FB5D8; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-mid);
  text-decoration: none;
  transition: gap 0.15s;
}
.card-link:hover { gap: 8px; }
.card-link-gold { color: var(--gold); }

/* ── INITIATIVE CARD ── */
.initiative-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.initiative-card:hover { box-shadow: 0 8px 32px rgba(12,54,96,0.12); transform: translateY(-3px); }
.initiative-card-head {
  background: var(--navy);
  padding: 20px 24px;
  border-bottom: 2px solid var(--gold);
}
.initiative-card-head .eyebrow { margin-bottom: 6px; }
.initiative-card-head h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.initiative-card-head p { font-size: 13px; color: #8FB5D8; }
.initiative-card-body { padding: 20px 24px; }
.initiative-card-body p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  cursor: pointer;
  border: none;
  font-family: 'Source Sans 3', sans-serif;
}
.btn:active { transform: scale(0.98); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 2px 12px rgba(200,168,75,0.3); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #0a2d50; }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy-mid); }
.btn-outline:hover { background: var(--navy-light); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: var(--gold); background: rgba(200,168,75,0.1); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ── NOTE / CALLOUT ── */
.note {
  background: var(--gold-light);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 20px 0;
}
.note strong { color: var(--navy); }
.note-warning {
  background: #fff8e6;
  border-left-color: #e6a817;
}
.note-info {
  background: var(--navy-light);
  border-left-color: var(--navy-mid);
}

/* ── QUOTE ── */
.blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  background: var(--gold-light);
  border-radius: 0 10px 10px 0;
  margin: 32px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* ── PROCESS STEPS ── */
.process-steps { display: flex; flex-direction: column; gap: 20px; }
.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step-num {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.step-content h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-content p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ── COMPARISON TABLE ── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
@media (max-width: 600px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col { border-radius: 12px; overflow: hidden; }
.compare-head { padding: 16px 20px; font-weight: 700; font-size: 15px; }
.compare-head-bad { background: #f8e8e8; color: var(--red); }
.compare-head-good { background: #e8f3de; color: var(--green); }
.compare-body { padding: 16px 20px; background: var(--white); border: 1.5px solid var(--gray-border); border-top: none; border-radius: 0 0 12px 12px; }
.compare-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.compare-item:last-child { margin-bottom: 0; }
.compare-dot { width: 6px; height: 6px; min-width: 6px; border-radius: 50%; margin-top: 7px; }
.compare-dot-bad { background: var(--red); }
.compare-dot-good { background: var(--green); }

/* ── FORMS ── */
.form-section { max-width: 700px; margin: auto; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(24,95,165,0.12);
}
.form-group textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-success {
  display: none;
  background: #EAF3DE;
  border: 1.5px solid #3B6D11;
  border-radius: 10px;
  padding: 18px 22px;
  color: #3B6D11;
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
}
.form-success.visible { display: block; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand .logo-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: #5a7a9a; line-height: 1.6; margin-top: 10px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: #8FB5D8; text-decoration: none; margin-bottom: 8px; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: #5a7a9a;
  text-align: center;
  line-height: 1.7;
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.divider { height: 1px; background: var(--gray-border); margin: 40px 0; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-gold { background: rgba(200,168,75,0.15); color: var(--gold); border: 1px solid rgba(200,168,75,0.3); }
.badge-navy { background: var(--navy-light); color: var(--navy); }
.badge-green { background: #eaf3de; color: var(--green); }
