:root {
  --navy: #0a1628;
  --deep: #0f2847;
  --blue: #1a6fb5;
  --sky: #3a9fd8;
  --teal: #2ec4b6;
  --gold: #e8b931;
  --warm: #f4ede4;
  --cream: #faf8f5;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #556170;
  --light-border: rgba(26, 111, 181, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --focus-ring: 0 0 0 3px rgba(26, 111, 181, 0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; height: auto; }

/* ========== ACCESSIBILITY ========== */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  background: var(--navy); color: var(--white);
  padding: 12px 24px; border-radius: 0 0 8px 8px;
  font-weight: 700; font-size: 0.9rem; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; outline: 3px solid var(--gold); outline-offset: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ========== LAYOUT ========== */
.container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 28px; }

/* ========== SITE HEADER / NAV ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,22,40,0.1);
  box-shadow: 0 6px 24px rgba(10,22,40,0.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0; padding-bottom: 0; height: 72px;
}
.site-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900; font-size: 1.3rem; color: var(--navy);
}
.site-logo img { height: 42px; width: auto; }
.site-logo .gold { color: var(--gold); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--navy); font-size: 1.5rem; line-height: 1;
}

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: var(--muted); font-size: 0.88rem; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--navy); background: rgba(26,111,181,0.1);
}
.site-nav a.active {
  color: var(--blue);
  background: rgba(26,111,181,0.12);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ' \25BE'; font-size: 0.7em; opacity: 0.65;
}
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid rgba(10,22,40,0.12);
  border-radius: var(--radius-sm); padding: 8px 0;
  min-width: 240px; box-shadow: 0 16px 36px rgba(10,22,40,0.14);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.85rem;
  color: var(--muted);
}
.nav-dropdown-menu a:hover {
  background: rgba(26,111,181,0.08); color: var(--navy);
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 60%, #0d2040 100%);
  padding: 100px 0 70px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(46,196,182,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(232,185,49,0.06) 0%, transparent 60%);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white); margin-bottom: 16px; font-weight: 900;
}
.page-hero h1 .gold { color: var(--gold); }
.page-hero p {
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
  max-width: 640px; margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 24px; font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }

/* ========== CONTENT SECTIONS ========== */
.page-content {
  padding: 80px 0;
  background: var(--cream);
}
.page-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--navy); margin-bottom: 20px;
}
.page-content h3 {
  font-size: 1.3rem; color: var(--navy);
  margin: 32px 0 12px;
}
.page-content p {
  color: var(--muted); font-size: 1.05rem;
  margin-bottom: 16px; line-height: 1.75;
}
.page-content ul, .page-content ol {
  color: var(--muted); font-size: 1.02rem;
  padding-left: 24px; margin-bottom: 16px;
}
.page-content li { margin-bottom: 8px; line-height: 1.65; }
.page-content a:not(.btn) {
  color: var(--blue); font-weight: 500;
  transition: color 0.2s;
}
.page-content a:not(.btn):hover { color: var(--teal); }
.page-content img {
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(10,22,40,0.1);
  margin: 24px 0;
}

.content-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(10,22,40,0.04);
}

.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}

/* ========== CARDS GRID ========== */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin: 32px 0;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10,22,40,0.08);
}
.info-card .card-icon { font-size: 2rem; margin-bottom: 14px; }
.info-card h3 {
  font-size: 1.15rem; color: var(--navy);
  margin: 0 0 10px; font-family: 'DM Sans', sans-serif; font-weight: 700;
}
.info-card p { color: var(--muted); font-size: 0.93rem; margin-bottom: 0; }

/* Link cards (clickable) */
a.info-card { display: block; }
a.info-card:hover { border-color: var(--blue); }
a.info-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-weight: 600; font-size: 0.88rem;
  margin-top: 14px; transition: gap 0.2s ease;
}
a.info-card:hover .card-link { gap: 10px; }

/* ========== HIGHLIGHT BANNER ========== */
.highlight-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 100%);
  border-radius: 20px; padding: 60px 48px;
  text-align: center; position: relative; overflow: hidden;
  margin: 48px 0;
}
.highlight-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 70% 30%, rgba(46,196,182,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(232,185,49,0.08) 0%, transparent 60%);
}
.highlight-banner > * { position: relative; z-index: 1; }
.highlight-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white); margin-bottom: 16px;
}
.highlight-banner p {
  color: rgba(255,255,255,0.75); font-size: 1.08rem;
  max-width: 560px; margin: 0 auto 28px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 34px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.3s cubic-bezier(.22,.68,.36,1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer; border: none; letter-spacing: 0.01em;
  font-family: 'DM Sans', sans-serif; min-height: 48px; min-width: 48px;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 8px 32px rgba(232,185,49,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,185,49,0.5);
  background: #f0c84a;
}
.btn-blue {
  background: var(--blue); color: var(--white);
  box-shadow: 0 8px 32px rgba(26,111,181,0.25);
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,111,181,0.4);
  background: #1d7ac4;
}
.btn-outline-dark {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--light-border);
}
.btn-outline-dark:hover {
  background: var(--navy); color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

.btn-group {
  display: flex; gap: 16px;
  flex-wrap: wrap; margin-top: 24px;
}

/* ========== NEWSLETTER LIST ========== */
.newsletter-list { list-style: none; padding: 0; }
.newsletter-list li {
  padding: 0; margin-bottom: 0;
  border-bottom: 1px solid var(--light-border);
}
.newsletter-list li:last-child { border-bottom: none; }
.newsletter-list a {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 8px;
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.newsletter-list a:hover {
  background: rgba(26,111,181,0.04);
  padding-left: 16px;
}
.newsletter-list .nl-icon { font-size: 1.3rem; flex-shrink: 0; }
.newsletter-list .nl-title { font-weight: 600; color: var(--navy); }
.newsletter-list .nl-arrow { margin-left: auto; color: var(--blue); opacity: 0.5; transition: opacity 0.2s; }
.newsletter-list a:hover .nl-arrow { opacity: 1; }

/* ========== NEWS ARTICLE ========== */
.news-article {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
  transition: box-shadow 0.3s ease;
}
.news-article:hover { box-shadow: 0 8px 28px rgba(10,22,40,0.06); }
.news-article h3 {
  font-size: 1.2rem; color: var(--navy); margin: 0 0 12px;
}
.news-article p { font-size: 0.95rem; margin-bottom: 12px; }
.news-article .meta { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* ========== CONTACT CARD ========== */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 48px; text-align: center;
  box-shadow: 0 8px 32px rgba(10,22,40,0.06);
}
.contact-info-card .contact-icon { font-size: 3rem; margin-bottom: 16px; }
.contact-info-card h2 { margin-bottom: 24px; }
.contact-detail {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 14px 0;
  font-size: 1.05rem; color: var(--muted);
}
.contact-detail .detail-icon { font-size: 1.3rem; }
.contact-detail a {
  color: var(--blue); font-weight: 600;
}

/* ========== EXTERNAL LINKS LIST ========== */
.link-list { list-style: none; padding: 0; }
.link-list li {
  margin-bottom: 0; padding: 0;
  border-bottom: 1px solid var(--light-border);
}
.link-list li:last-child { border-bottom: none; }
.link-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 8px; font-weight: 500; color: var(--blue);
  transition: background 0.2s, padding-left 0.2s;
}
.link-list a:hover {
  background: rgba(26,111,181,0.04);
  padding-left: 16px;
}
.link-list a::after { content: '\2192'; margin-left: auto; opacity: 0.4; }
.link-list a:hover::after { opacity: 1; }

/* ========== SITE FOOTER ========== */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; text-align: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
}

/* ========== BRAND VIDEO KIT ========== */
/* Reusable, on-brand video presentation. Pair with .content-card on inner pages. */
.brand-video { margin: 8px 0 4px; }
.brand-video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--light-border);
  box-shadow: 0 24px 60px rgba(10,22,40,0.18);
}
.brand-video-frame::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; z-index: 2;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
}
.brand-video-frame video {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 9; background: #000;
}
.brand-video-caption {
  display: flex; align-items: center; gap: 10px;
  margin: 16px 0 0; font-size: 0.9rem; color: var(--muted);
}
.brand-video-caption .bv-dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(46,196,182,0.15);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.68,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 16px; gap: 4px;
    border-bottom: 1px solid rgba(10,22,40,0.1);
    box-shadow: 0 16px 34px rgba(10,22,40,0.14);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; width: 100%; }
  .nav-dropdown-menu {
    position: static; box-shadow: none;
    border: none; padding-left: 16px;
    background: rgba(26,111,181,0.04);
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }

  .page-hero { padding: 80px 0 50px; }
  .page-hero h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }

  .page-content { padding: 50px 0; }
  .content-card { padding: 28px 22px; }
  .contact-info-card { padding: 32px 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards-grid { grid-template-columns: 1fr; }

  .highlight-banner { padding: 40px 24px; margin: 32px 0; }

  .btn-group { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 20px; }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ========== PRINT ========== */
@media print {
  .site-header, .site-footer { display: none; }
  .page-hero { background: #fff; padding: 20px 0; }
  .page-hero h1 { color: #000; }
  .page-hero p { color: #333; }
  .page-content { padding: 20px 0; }
  .content-card, .info-card, .news-article {
    background: #f5f5f5; border: 1px solid #ddd;
    box-shadow: none; break-inside: avoid;
  }
  .highlight-banner { background: #f5f5f5; }
  .highlight-banner h2 { color: #000; }
  .highlight-banner p { color: #333; }
  .reveal { opacity: 1; transform: none; }
}

/* Logo — identical treatment in navbar (header) AND footer */
.site-header .header-inner .site-branding .site-logo img,
.site-footer .footer-inner .site-branding .site-logo img {
  display: block;
  height: 50px;   /* same height in both places — adjust to taste */
  width: auto;    /* preserve the logo's real proportions (no stretching) */
}

/* Main navigation links (unchanged from the previous Custom CSS) */
.site-navigation ul.menu li a {
  display: block;
  padding: 8px 15px;
  color: black;
  font-weight: bold;
  font-size: 1.1em;
}

