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

:root {
  --deep-blue: #0B1D3A;
  --mid-blue: #1A3A6B;
  --saffron: #E8870A;
  --saffron-light: #F5A623;
  --cream: #FAF7F2;
  --warm-gray: #8C8278;
  --border: rgba(11,29,58,0.1);
  --white: #FFFFFF;
}

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

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(250,247,242,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: padding 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; z-index: 201; position: relative; }
.logo-mark { width: 48px; height: 48px; min-width: 48px; background: transparent; border-radius: 0; display: flex; align-items: center; justify-content: center; }
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; letter-spacing: 0.03em; color: var(--deep-blue); line-height: 1.15; }
.logo-text span { display: block; font-size: 10px; font-weight: 300; letter-spacing: 0.12em; color: var(--warm-gray); text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.nav-links { display: flex; gap: 4px; align-items: center; list-style: none; }
.nav-links a { font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--deep-blue); text-decoration: none; font-weight: 400; padding: 7px 11px; border-radius: 2px; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--saffron); }
.nav-links a.active { color: var(--saffron); }
.nav-cta { background: var(--saffron) !important; color: var(--white) !important; padding: 9px 18px !important; border-radius: 2px !important; margin-left: 8px; }
.nav-cta:hover { background: var(--saffron-light) !important; }

/* HAMBURGER */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; z-index: 201; background: none; border: none; padding: 8px; position: relative; }
.nav-hamburger span { display: block; height: 2px; background: var(--deep-blue); border-radius: 2px; transition: transform 0.3s, opacity 0.3s, width 0.3s; }
.nav-hamburger span:nth-child(3) { width: 70%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* MOBILE MENU */
.nav-mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--cream); z-index: 199; flex-direction: column; align-items: flex-start; padding: 100px 28px 40px; overflow-y: auto; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--deep-blue); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; display: block; transition: color 0.2s; }
.nav-mobile-menu a:hover, .nav-mobile-menu a.active { color: var(--saffron); }
.nav-mobile-cta { margin-top: 20px !important; background: var(--saffron) !important; color: var(--white) !important; padding: 16px 24px !important; border-radius: 2px; font-size: 13px !important; text-align: center; border-bottom: none !important; font-family: 'DM Sans', sans-serif !important; font-weight: 500 !important; letter-spacing: 0.08em; text-transform: uppercase; }
.mobile-footer-info { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); width: 100%; font-size: 13px; color: var(--warm-gray); line-height: 1.8; }

/* PAGE HERO */
.page-hero { padding: 140px 60px 80px; background: var(--deep-blue); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(232,135,10,0.4), transparent); }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--saffron); font-weight: 500; margin-bottom: 16px; }
.page-hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--saffron); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 5vw, 60px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--saffron); }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 560px; line-height: 1.75; font-weight: 300; }
.page-hero-deco { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); font-family: 'Cormorant Garamond', serif; font-size: 180px; font-weight: 300; line-height: 1; color: rgba(232,135,10,0.06); pointer-events: none; user-select: none; }

/* SECTIONS */
.section { padding: 90px 60px; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--deep-blue); }

/* Responsive grid helpers */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.two-col-end { align-items: end; }
.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.four-col { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--saffron); font-weight: 500; margin-bottom: 14px; }
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--saffron); }
.eyebrow-light { color: var(--saffron-light); }
.eyebrow-light::before { background: var(--saffron-light); }
.eyebrow-center { justify-content: center; }

.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 46px); font-weight: 300; line-height: 1.15; color: var(--deep-blue); margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--saffron); }
.section-title-light { color: var(--white); }
.section-title-center { text-align: center; }
.section-lead { font-size: 15px; line-height: 1.85; color: var(--warm-gray); max-width: 600px; font-weight: 300; margin-bottom: 56px; }
.section-lead-light { color: rgba(255,255,255,0.5); }

/* PHOTO PLACEHOLDER */
.photo-placeholder { background: linear-gradient(135deg, rgba(11,29,58,0.06) 0%, rgba(11,29,58,0.03) 100%); border: 1.5px dashed rgba(11,29,58,0.15); border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--warm-gray); text-align: center; padding: 24px; }
.photo-placeholder svg { opacity: 0.3; }
.ph-label { font-size: 12px; letter-spacing: 0.06em; opacity: 0.6; }
.ph-name { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600; color: var(--deep-blue); opacity: 0.7; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 2px; text-decoration: none; font-size: 12.5px; letter-spacing: 0.07em; text-transform: uppercase; font-weight: 500; transition: all 0.2s; cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; }
.btn-dark { background: var(--deep-blue); color: var(--white); }
.btn-dark:hover { background: var(--mid-blue); transform: translateY(-1px); }
.btn-saffron { background: var(--saffron); color: var(--white); }
.btn-saffron:hover { background: var(--saffron-light); transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--border); color: var(--deep-blue); background: transparent; }
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); }

/* DIVIDER */
.divider { height: 1px; background: var(--border); margin: 0 60px; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* FOOTER */
footer { background: #07121F; padding: 60px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; align-items: start; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.3); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 16px; max-width: 260px; }
.footer-heading { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--saffron); }
.footer-links a.active-page { color: var(--saffron); }
.footer-bottom { background: #07121F; padding: 20px 60px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: rgba(232,135,10,0.45); }

/* ══════════════════
   TABLET  ≤1100px
══════════════════ */
@media (max-width: 1100px) {
  nav { padding: 18px 32px; }
  .nav-links a { font-size: 11px; padding: 6px 8px; }
  .section { padding: 72px 40px; }
  .page-hero { padding: 120px 40px 70px; }
  .divider { margin: 0 40px; }
  footer { padding: 48px 40px; }
  .footer-bottom { padding: 16px 40px; }
  .two-col { gap: 40px; }
  .four-col { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════
   MOBILE  ≤768px
══════════════════ */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }

  .page-hero { padding: 90px 20px 50px; }
  .page-hero-deco { display: none; }

  .section { padding: 52px 20px; }
  .two-col { grid-template-columns: 1fr !important; gap: 24px; }
  .three-col { grid-template-columns: 1fr !important; }
  .four-col { grid-template-columns: 1fr 1fr !important; }

  .divider { margin: 0 20px; }

  footer { grid-template-columns: 1fr; padding: 36px 20px; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { padding: 14px 20px; flex-direction: column; text-align: center; }

  .section-lead { margin-bottom: 32px; }
  .page-hero p { font-size: 14px; }
}

/* ═══════════════════════════════
   DROPDOWN NAV
═══════════════════════════════ */
.nav-dropdown-wrap { position: relative; list-style: none; }

.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  cursor: pointer;
}
.dropdown-chevron {
  width: 10px; height: 7px; flex-shrink: 0;
  transition: transform 0.25s;
}
.nav-dropdown-wrap.open .dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-wrap.open .nav-dropdown-trigger { color: var(--saffron); }

.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(11,29,58,0.12), 0 2px 8px rgba(11,29,58,0.06);
  min-width: 260px; padding: 8px 0;
  list-style: none;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 300;
}
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* little arrow pointing up */
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 6px;
  background: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.dropdown-header {
  font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm-gray); padding: 6px 16px 8px; opacity: 0.6;
}

.nav-dropdown li a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; text-decoration: none;
  font-size: 13px; text-transform: none; letter-spacing: 0;
  color: var(--deep-blue); transition: background 0.15s;
  border-radius: 0;
}
.nav-dropdown li a:hover { background: var(--cream); color: var(--deep-blue); }
.nav-dropdown li a.active { color: var(--saffron); background: rgba(232,135,10,0.04); }

.dd-dot {
  width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0;
}
.nav-dropdown li a span:last-child {
  display: flex; flex-direction: column; gap: 2px;
}
.nav-dropdown li a strong { font-weight: 500; font-size: 13px; line-height: 1.2; }
.nav-dropdown li a small { font-size: 11px; color: var(--warm-gray); font-weight: 300; }

.dropdown-all { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 4px; }
.dropdown-all a {
  font-size: 12px !important; color: var(--saffron) !important;
  font-weight: 500 !important; letter-spacing: 0.04em !important;
}
.dropdown-all a:hover { background: rgba(232,135,10,0.04) !important; }

/* ═══════════════════════════════
   MOBILE ACCORDION (Initiatives)
═══════════════════════════════ */
.mobile-accordion { width: 100%; }

.mobile-accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; border-bottom: 1px solid var(--border);
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300;
  color: var(--deep-blue); padding: 14px 0; cursor: pointer; text-align: left;
  transition: color 0.2s;
}
.mobile-accordion-trigger.open { color: var(--saffron); }
.mobile-accordion-trigger svg {
  width: 14px; height: 10px; flex-shrink: 0;
  stroke: currentColor; transition: transform 0.25s;
}
.mobile-accordion-trigger.open svg { transform: rotate(180deg); }

.mobile-accordion-body {
  display: none; flex-direction: column;
  background: rgba(11,29,58,0.03); border-radius: 0 0 4px 4px;
  overflow: hidden;
}
.mobile-accordion-body.open { display: flex; }
.mobile-accordion-body a {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important; font-weight: 300 !important;
  color: var(--deep-blue) !important; padding: 12px 0 12px 20px !important;
  border-bottom: 1px solid var(--border) !important; width: 100%;
  display: block; text-decoration: none; transition: color 0.2s;
}
.mobile-accordion-body a:last-child { border-bottom: none !important; }
.mobile-accordion-body a:hover, .mobile-accordion-body a.active { color: var(--saffron) !important; }

/* ═══════════════════════════════
   NAV SOCIAL ICONS
═══════════════════════════════ */
.nav-social-sep {
  width: 1px; height: 18px;
  background: var(--border);
  margin: 0 4px;
  list-style: none;
}
.nav-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  color: var(--warm-gray);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-social-icon svg { width: 16px; height: 16px; }
.nav-social-icon:hover { color: var(--saffron); background: rgba(232,135,10,0.08); }

/* MOBILE SOCIAL ROW */
.mobile-social-row {
  display: flex; gap: 10px; width: 100%;
  margin-top: 8px; padding: 16px 0;
  border-top: 1px solid var(--border);
}
.mobile-social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  text-decoration: none; transition: transform 0.2s, opacity 0.2s;
  border: 1.5px solid transparent;
}
.mobile-social-btn:hover { transform: translateY(-1px); opacity: 0.9; }
.mobile-social-btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* Facebook — outlined blue */
.mobile-social-btn-fb {
  background: rgba(24,119,242,0.07);
  border-color: rgba(24,119,242,0.25);
  color: #1877F2;
}
.mobile-social-btn-fb svg { fill: #1877F2; }

/* Instagram — outlined gradient */
.mobile-social-btn-ig {
  background: rgba(220,39,67,0.06);
  border-color: rgba(220,39,67,0.2);
  color: #c13584;
}
.mobile-social-btn-ig svg { stroke: #c13584; fill: none; }
