/* =====================================================
   ANCHOR POINT SUPPORTS
   Layout: Two-tier nav (white header bar + blue nav bar)
   Font: Montserrat (all text)
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

:root {
  --orange:    #F5820D;
  --orange-dk: #D4690A;
  --orange-lt: #FEF3E6;
  --blue:      #1B5FA8;
  --blue-dk:   #0C2D55;
  --blue-md:   #1A7AAD;
  --blue-lt:   #E3F3FB;
  --sky:       #5BB8D4;
  --sky-lt:    #A8D8EA;
  --teal:      #1A8FA0;
  --black:     #111;
  --gray:      #555;
  --gray-lt:   #F5F5F5;
  --border:    #E0E0E0;
  --white:     #fff;
  --bar-h:     190px;
  --nav-h:     50px;
  --total-h:   calc(var(--bar-h) + var(--nav-h));
  --max:       1480px;
  --radius:    8px;
  --gutter:    56px;
}

a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange); outline-offset: 3px;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 9999;
  background: var(--orange); color: #fff;
  padding: 10px 18px; border-radius: 5px; font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* =====================================================
   HEADER BAR — full-bleed image background
===================================================== */
.header-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--bar-h); z-index: 500;
  background: #f0f0f0;
  overflow: hidden;
}

/* The header image fills the entire bar as a background */
.header-bar-bg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  z-index: 2;
}
/* Fallback bg shown when no image loaded */
.header-bar-bg-fallback {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: #f0f0f0;
  z-index: 1;
}

.header-bar-inner {
  position: relative; z-index: 3;
  max-width: var(--max); margin: 0 auto; height: 100%;
  padding: 0 var(--gutter);
  display: flex; align-items: center;
  pointer-events: none;
}

/* =====================================================
   BLUE NAV BAR
===================================================== */
.nav-bar {
  position: fixed; top: var(--bar-h); left: 0; right: 0;
  height: var(--nav-h); z-index: 600;
  background: linear-gradient(90deg, #0C2D55 0%, #0D3560 60%, #0C2D55 100%);
  border-bottom: 3px solid var(--orange);
}
.nav-bar-inner {
  max-width: var(--max); margin: 0 auto; height: 100%;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

/* Nav items */
.nav-items { display: flex; align-items: stretch; justify-content: center; flex: 0 1 auto; }

.nav-item { position: relative; display: flex; align-items: stretch; }

.nav-item-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 0 15px; height: 100%;
  background: none; border: none;
  font-size: 0.78rem; font-weight: 700;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase; letter-spacing: 0.07em;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap; cursor: pointer;
}
.nav-item-btn .chevron {
  width: 9px; height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
  flex-shrink: 0; margin-top: 1px;
}
.nav-item.open .nav-item-btn .chevron,
.nav-item:hover .nav-item-btn .chevron { transform: rotate(-135deg) translateY(-2px); }
.nav-item-btn:hover,
.nav-item.open .nav-item-btn { background: rgba(255,255,255,0.12); color: #fff; }

/* Plain link (no dropdown) */
.nav-link-plain {
  display: flex; align-items: center;
  padding: 0 15px; height: 100%;
  font-size: 0.78rem; font-weight: 700;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase; letter-spacing: 0.07em;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-link-plain:hover { background: rgba(255,255,255,0.12); color: #fff; }
.nav-link-plain.active { color: var(--orange); }

/* Dropdown panel */
.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 210px; z-index: 800;
  background: #fff;
  border-top: 3px solid var(--orange);
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  border-radius: 0 0 var(--radius) var(--radius);
  display: none; flex-direction: column;
}
.nav-item.open .dropdown,
.nav-item:hover .dropdown { display: flex; }
.dropdown a {
  padding: 11px 18px;
  font-size: 0.87rem; font-weight: 600;
  color: var(--gray); background: #fff;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s, color 0.12s;
  display: block;
}
.dropdown a:last-child { border-bottom: none; border-radius: 0 0 var(--radius) var(--radius); }
.dropdown a:hover { background: var(--orange-lt); color: var(--orange-dk); }

/* Nav Connect button */
.nav-connect-btn {
  margin-left: 18px;
  min-height: 34px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 12px; cursor: pointer;
  align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.28s; }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none; flex-direction: column;
  position: fixed; top: var(--total-h); left: 0; right: 0;
  background: var(--blue-dk); z-index: 610;
  max-height: calc(100vh - var(--total-h));
  overflow-y: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer-section { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-drawer-section-title {
  padding: 14px 20px;
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.07em; color: rgba(255,255,255,0.6);
}
.mobile-drawer a {
  display: block; padding: 12px 28px;
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-drawer a:hover { color: var(--orange); background: rgba(255,255,255,0.05); }
.mobile-drawer .mobile-cta {
  margin: 16px 20px; padding: 13px;
  background: var(--orange); color: #fff; text-align: center;
  border-radius: 4px; font-weight: 800; font-size: 0.9rem; text-transform: uppercase;
}

/* =====================================================
   PAGE WRAP
===================================================== */
.page-wrap { padding-top: var(--total-h); }

/* =====================================================
   FULL-BLEED HERO (image background)
===================================================== */
.hero-fullbleed {
  position: relative;
  width: 100%; min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0C2D55 0%, #0E3A6A 40%, #1A6B8A 75%, #1A8FA0 100%);
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,45,85,0.78) 0%, rgba(12,45,85,0.45) 55%, rgba(12,45,85,0.1) 100%);
}
.hero-fullbleed-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: 72px var(--gutter);
}
.hero-fullbleed h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400; color: #fff; line-height: 1.15;
  max-width: 560px; margin-bottom: 18px;
}
.hero-fullbleed h1 em { font-style: italic; color: #FFD580; font-weight: 800; }
.hero-fullbleed p {
  font-size: 1.05rem; color: rgba(255,255,255,0.88);
  max-width: 460px; line-height: 1.8; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* No-image hero fallback (has gradient instead) */
.hero-fullbleed .hero-fullbleed-inner { }

/* Header Connect Box — orange button in top-right of header banner */
.header-connect-box {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  transform: translateY(-50%);
  z-index: 4;
  background: linear-gradient(90deg, #C95A08 0%, #F5820D 60%, #F5A623 100%);
  color: #fff;
  font-size: 0.82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 12px 22px;
  border-radius: 5px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.25);
  transition: opacity 0.15s, box-shadow 0.15s;
}
.header-connect-box:hover {
  opacity: 0.9;
  box-shadow: 0 5px 20px rgba(0,0,0,0.32);
}

/* =====================================================
   ANNOUNCE BAR
===================================================== */
.announce-bar {
  background: linear-gradient(90deg, #C95A08 0%, #F5820D 50%, #F5A623 100%);
  padding: 13px var(--gutter); text-align: center;
}
.announce-bar p {
  color: #fff; font-size: 0.95rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; max-width: var(--max); margin: 0 auto;
}
.announce-btn {
  display: inline-flex; align-items: center;
  background: #fff; color: var(--orange-dk);
  font-weight: 800; font-size: 0.85rem;
  padding: 6px 16px; border-radius: 4px;
  transition: all 0.15s; white-space: nowrap;
}
.announce-btn:hover { background: var(--blue-dk); color: #fff; }

/* =====================================================
   LAYOUT HELPERS
===================================================== */
.section { padding: 72px var(--gutter); }
.section-gray  { background: var(--gray-lt); }
.section-blue  { background: linear-gradient(135deg, #0C2D55 0%, #0E3A6A 60%, #1A6B8A 100%); }
.section-orange { background: linear-gradient(90deg, #C95A08 0%, #F5820D 50%, #F5A623 100%); }
.inner { max-width: var(--max); margin: 0 auto; }
.inner-sm { max-width: 680px; margin: 0 auto; }

/* Scroll target offset (so anchor links clear the fixed nav) */
/* Scroll offset for all anchor targets — clears fixed nav + centers content */
.scroll-target { scroll-margin-top: calc(var(--total-h) + 48px); }
[id] { scroll-margin-top: calc(var(--total-h) + 32px); }

/* =====================================================
   TYPOGRAPHY
===================================================== */
.eyebrow {
  display: block; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange); margin-bottom: 10px;
}
.eyebrow-white { color: rgba(255,255,255,0.65); }
h1, h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 1.05rem; font-weight: 700; }
.lead { font-size: 1rem; color: var(--gray); line-height: 1.8; }
.white { color: #fff; }
.rule { width: 36px; height: 3px; background: var(--orange); border-radius: 2px; margin: 12px 0 18px; }

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 12px 26px;
  border-radius: 5px; border: 2px solid transparent;
  font-size: 0.95rem; font-weight: 700;
  transition: all 0.15s; cursor: pointer; white-space: nowrap;
}
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dk); border-color: var(--orange-dk); }
.btn-blue   { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dk); border-color: var(--blue-dk); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: #fff; color: var(--blue-dk); border-color: #fff; }
.btn-outline-orange { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }
.btn-full { width: 100%; }
.btn-lg { min-height: 54px; font-size: 1rem; }

/* =====================================================
   PAGE-SPECIFIC HERO (inner pages — no image)
===================================================== */
.page-hero {
  background: linear-gradient(135deg, #0C2D55 0%, #0E3A6A 50%, #1A6B8A 100%);
  padding: 52px var(--gutter) 44px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; top: -40px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245,130,13,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 0.97rem; max-width: 560px; line-height: 1.75; }

/* =====================================================
   SERVE CARDS
===================================================== */
.serve-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
.serve-card {
  border: 2px solid var(--border); border-radius: var(--radius); padding: 28px 22px;
  transition: border-color 0.15s, box-shadow 0.15s; background: #fff;
}
.serve-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.sc-tag {
  display: inline-block; margin-bottom: 12px;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 3px 10px; border-radius: 4px;
}
.sc-tag-orange { background: rgba(245,130,13,0.11); color: var(--orange); }
.sc-tag-blue   { background: rgba(59,168,216,0.13);  color: var(--blue-md); }
.sc-tag-gray   { background: rgba(0,0,0,0.06);       color: var(--gray); }
.serve-card h3 { margin-bottom: 8px; }
.serve-card p  { font-size: 0.92rem; color: var(--gray); line-height: 1.7; }

/* =====================================================
   CREDENTIAL BAND
===================================================== */
.cred-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: 680px; margin: 0 auto;
}
.cred-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); padding: 22px 20px;
}
.cred-label {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); margin-bottom: 6px;
}
.cred-title { font-size: 0.97rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.cred-sub   { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* =====================================================
   MISSION BAND
===================================================== */
.mission-band {
  background: linear-gradient(90deg, #C95A08 0%, #F5820D 50%, #F5A623 100%);
  padding: 32px var(--gutter); text-align: center;
}
.mission-band p {
  color: #fff; font-size: 1.05rem; font-weight: 600;
  max-width: 780px; margin: 0 auto; line-height: 1.75;
}

/* =====================================================
   CTA BAND
===================================================== */
.cta-band {
  background: linear-gradient(135deg, #1A8FA0 0%, #1A6B8A 40%, #0E3A6A 75%, #0C2D55 100%);
  padding: 60px var(--gutter); text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p  { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.contact-line { margin-top: 18px; font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.contact-line a { color: rgba(255,255,255,0.78); font-weight: 700; }
.contact-line a:hover { color: var(--orange); }
.contact-line span { margin: 0 10px; opacity: 0.35; }

/* =====================================================
   ABOUT LAYOUT
===================================================== */
.about-grid {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 52px; align-items: start;
}
.about-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  object-position: top; border-radius: var(--radius);
}
.about-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--gray-lt); border: 2px dashed var(--border);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; color: var(--gray); font-size: 0.82rem; text-align: center; padding: 20px;
}
.cert-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border: 2px solid var(--border);
  border-radius: var(--radius); margin-bottom: 10px;
  transition: border-color 0.15s;
}
.cert-item:hover { border-color: var(--blue); }
.cert-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 6px;
}
.cert-item strong { display: block; font-size: 0.95rem; color: var(--black); margin-bottom: 2px; }
.cert-item span   { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

.values-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.value-item {
  padding: 20px 18px; border: 2px solid var(--border);
  border-radius: var(--radius); transition: border-color 0.15s;
}
.value-item:hover { border-color: var(--orange); }
.value-item h3 { font-size: 0.97rem; margin-bottom: 6px; }
.value-item p  { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* =====================================================
   SERVICES
===================================================== */
.service-group { margin-bottom: 36px; }
.service-group-header {
  padding: 22px 26px; border-radius: var(--radius) var(--radius) 0 0;
}
.sgh-orange { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%); }
.sgh-blue   { background: linear-gradient(135deg, #0C2D55 0%, #0E3A6A 60%, #1A6B8A 100%); }
.service-group-header h2 { color: #fff; font-size: 1.2rem; }
.service-group-header p  { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin-top: 4px; }
.service-list {
  border: 2px solid var(--border); border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.service-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 26px; border-bottom: 1px solid var(--border);
  background: #fff;
}
.service-item:last-child { border-bottom: none; }
.si-bar { width: 3px; border-radius: 2px; flex-shrink: 0; margin-top: 5px; align-self: stretch; }
.si-bar-orange { background: var(--orange); }
.si-bar-blue   { background: var(--blue); }
.service-item strong { display: block; font-size: 0.97rem; color: var(--black); margin-bottom: 2px; }
.service-item span   { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.and-more {
  padding: 14px 26px; background: var(--gray-lt);
  font-size: 0.88rem; color: var(--gray);
  border: 2px solid var(--border); border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.and-more a { color: var(--orange); font-weight: 700; }

/* =====================================================
   FORMS
===================================================== */
.form-box {
  background: #fff; border-radius: var(--radius);
  border: 2px solid var(--border); padding: 36px 32px;
  border-top: 4px solid var(--orange);
}
.form-box.blue-top { border-top-color: var(--blue); }
.form-box h2 { margin-bottom: 4px; }
.form-box .sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 26px; line-height: 1.6; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: #333; margin-bottom: 6px;
}
.form-control {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--border); border-radius: 5px;
  font-size: 0.97rem; color: var(--black);
  background: #fff; outline: none; min-height: 48px;
  transition: border-color 0.15s;
}
.form-control:focus { border-color: var(--blue); }
textarea.form-control { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check-row {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
}
.check-row input { width: 18px; height: 18px; accent-color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.check-row span { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }
.form-note { font-size: 0.78rem; color: var(--gray); line-height: 1.6; }

/* =====================================================
   REFERRAL LAYOUT
===================================================== */
.referral-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.ref-step {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.ref-step:last-child { border-bottom: none; }
.ref-num {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange); color: #fff;
  font-weight: 900; font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.ref-step h3 { font-size: 0.95rem; margin-bottom: 3px; }
.ref-step p  { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* =====================================================
   CONTACT
===================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.ci-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; margin-top: 7px;
}
.ci-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 3px; }
.ci-value { font-size: 0.97rem; font-weight: 700; color: var(--black); }
.ci-value a { color: var(--blue); }
.ci-value a:hover { color: var(--orange); text-decoration: underline; }

/* =====================================================
   NEW LAYOUT — B12-inspired sections
===================================================== */

/* Hero split */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: stretch;
  padding: 80px var(--gutter);
  max-width: var(--max); margin: 0 auto;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-split h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 20px; color: var(--black);
}
.hero-split p { font-size: 1rem; color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.hero-split-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-split-btns .btn { min-width: 0; }
.hero-img-wrap {
  position: relative;
  display: flex;
  align-self: stretch;
  min-height: 600px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  background: var(--gray-lt);
}
.about-media-wrap,
.idd-media-wrap,
.seniors-media-wrap {
  position: relative;
  display: flex;
  align-self: center;
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 460px;
  max-height: 620px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  background: var(--gray-lt);
}
.single-image-panel {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: inherit;
  overflow: hidden;
}
.section-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero-slide.is-active {
  opacity: 1;
}
.section-photo-portrait {
  object-position: center top;
}
.hero-overlay-card {
  position: absolute; bottom: -28px; left: -16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 22px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  min-width: 220px;
}
.hero-overlay-card ul { display: flex; flex-direction: column; gap: 10px; }
.hero-overlay-card li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--black);
}
.hero-overlay-card .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* Section headers centered */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 12px; color: var(--black); }
.section-header p { font-size: 1rem; color: var(--gray); max-width: 580px; margin: 0 auto; line-height: 1.8; }
.section-header-left { text-align: left; margin-bottom: 28px; }
.section-header-left p { margin: 0; max-width: none; }

/* Three col service cards */
.three-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-feature-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: 14px; padding: 32px 26px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.service-feature-card:hover { border-color: var(--orange); box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-3px); }
.sfc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(245,130,13,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.5rem;
}
.service-feature-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; color: var(--black); }
.service-feature-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.75; }

/* Who we serve split */
.serve-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.serve-split-media-right .idd-content { order: 1; }
.serve-split-media-right .idd-media-wrap { order: 2; }
.serve-split-media-right .seniors-content { order: 1; }
.serve-split-media-right .seniors-media-wrap { order: 2; }
.serve-split-media-right .about-content { order: 1; }
.serve-split-media-right .about-media-wrap { order: 2; }
.serve-split-media-right .idd-content,
.serve-split-media-right .seniors-content,
.serve-split-media-right .about-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.serve-split h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; letter-spacing:-0.02em; margin-bottom: 18px; color: var(--black); }
.serve-split p { font-size: 0.97rem; color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.serve-highlight {
  background: #fff; border: 2px solid var(--border);
  border-radius: 12px; padding: 24px 22px; margin-bottom: 16px;
  transition: border-color 0.18s;
}
.serve-highlight:hover { border-color: var(--orange); }
.serve-highlight:last-child { margin-bottom: 0; }
.serve-highlight h3 { font-size: 1rem; font-weight: 800; color: var(--orange); margin-bottom: 12px; }
.serve-highlight ul { display: flex; flex-direction: column; gap: 8px; }
.serve-highlight li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--gray); line-height: 1.6;
}
.serve-highlight li::before {
  content: '\2022'; color: var(--orange); font-weight: 900;
  flex-shrink: 0; margin-top: 0px;
}

/* Process steps */
.process-grid { display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; gap: 0; align-items: start; }
.process-connector { display: flex; align-items: flex-start; justify-content: center; padding-top: 36px; }
.process-connector div { width: 32px; height: 2px; background: rgba(245,130,13,0.3); }
.process-step { text-align: center; padding: 0 8px; }
.process-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 1.2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--black); }
.process-step p  { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* Contact section */
.contact-section-wrap { max-width: 680px; margin: 0 auto; text-align: center; }
.contact-section-wrap h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; letter-spacing:-0.02em; margin-bottom: 12px; color: var(--black); }
.contact-section-wrap > p { font-size: 1rem; color: var(--gray); line-height: 1.8; margin-bottom: 36px; }
.contact-form-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: 14px; padding: 36px 32px;
  text-align: left; margin-bottom: 24px;
}
.contact-info-row {
  display: flex; gap: 48px; justify-content: center;
  flex-wrap: wrap; margin-top: 8px;
}
.contact-info-row div { text-align: center; }
.contact-info-row h4 { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 4px; }
.contact-info-row a { font-size: 0.97rem; font-weight: 700; color: var(--orange); }
.contact-info-row a:hover { text-decoration: underline; }

/* bg tint section */
.section-tint { background: rgba(245,130,13,0.04); }

/* =====================================================
   FOOTER
===================================================== */
footer {
  background: linear-gradient(160deg, #071422 0%, #0A2040 50%, #0C2D55 100%);
  color: rgba(255,255,255,0.6);
  padding: 52px var(--gutter) 28px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 36px; margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-name {
  font-size: 0.98rem; font-weight: 800; color: #fff;
  margin-bottom: 10px; display: block;
}
.footer-brand .brand-name span { color: var(--orange); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 260px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.footer-forms-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700; color: var(--orange);
  border: 1px solid rgba(242,101,34,0.35); padding: 7px 14px; border-radius: 4px;
  transition: all 0.15s;
}
.footer-forms-link:hover { background: var(--orange); color: #fff; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: #fff; margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col a:hover { color: var(--orange); }
.footer-col a,
.contact-band a {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-col span { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--orange); }


/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 960px) {
  :root { --bar-h: 150px; --nav-h: 48px; --total-h: calc(var(--bar-h) + var(--nav-h)); }

  /* Nav */
  .nav-items { display: none; }
  .nav-connect-btn { display: none; }
  .header-connect-box { display: none; }
  .nav-hamburger {
    display: flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  /* Disable hover dropdowns on mobile */
  .nav-item:hover .dropdown { display: none; }
  .nav-item.open .dropdown { display: flex; }

  /* Grids */
  .serve-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .referral-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; max-width: 400px; }

  /* New layout grids */
  .hero-split { grid-template-columns: 1fr; gap: 48px; padding: 52px var(--gutter) 80px; }
  .hero-split-btns .btn { flex: 1 1 240px; }
  .hero-img-wrap { min-height: 500px; }
  .about-media-wrap,
  .idd-media-wrap,
  .seniors-media-wrap {
    min-height: 420px;
    max-height: none;
    aspect-ratio: 16 / 10;
  }
  .hero-overlay-card { position: static; margin-top: 20px; }
  .three-grid { grid-template-columns: 1fr !important; }
  .serve-split { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-connector { display: none; }
  .process-step { text-align: left; display: flex; gap: 18px; align-items: flex-start; }
  .process-step-num { margin: 0; flex-shrink: 0; }
  .credentials-grid { grid-template-columns: 1fr 1fr !important; }
  .contact-band { padding: 22px 18px !important; }
  .contact-band .inner { gap: 20px !important; }
  .contact-band a[href^="mailto:"] { font-size: 0.95rem !important; }

  /* Inline grid overrides */
  #seniors > .inner > div,
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Old layout */
  .services-card-grid { grid-template-columns: 1fr 1fr; }
  .benefits-split { grid-template-columns: 1fr; }
  .about-bio-grid { grid-template-columns: 1fr; }
  .bio-photo, .bio-photo-placeholder { max-width: 260px; }
  .bio-name-card { position: static; transform: none; margin-top: 12px; display: inline-block; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .about-photo, .about-photo-placeholder { max-width: 280px; }
}

@media (max-width: 820px) {
  .credentials-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  html { font-size: 17px; }
  :root { --bar-h: 125px; --nav-h: 48px; --total-h: calc(var(--bar-h) + var(--nav-h)); }
  body { line-height: 1.75; }
  .section { padding: 48px 18px; }
  .page-hero { padding: 44px 18px 38px; }
  footer { padding: 40px 18px 24px; }
  .form-box { padding: 26px 18px; }
  .contact-form-card { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .values-row { grid-template-columns: 1fr; }
  .hero-fullbleed { min-height: 400px; }
  .hero-fullbleed-inner { padding: 52px 18px; }
  .hero-split { padding: 40px 18px 60px; }
  .hero-img-wrap { min-height: 380px; }
  .about-media-wrap,
  .idd-media-wrap,
  .seniors-media-wrap {
    min-height: 340px;
    aspect-ratio: 5 / 4;
  }
  .credentials-grid,
  .mobile-two-col-grid,
  .mobile-two-col-grid-tight { grid-template-columns: 1fr !important; }
  .hero-split-btns { width: 100%; }
  .hero-split-btns .btn,
  .contact-section-wrap .btn.btn-lg { width: 100%; }
  .mobile-drawer-section-title { font-size: 0.84rem; }
  .mobile-drawer a { font-size: 1rem; }
  .announce-bar p { font-size: 1rem; flex-direction: column; align-items: stretch; }
  .announce-btn { width: 100%; justify-content: center; }
  .contact-band { padding: 20px 16px !important; }
  .contact-band .inner { gap: 12px !important; }
  .contact-band a[href^="tel:"] { font-size: 1.25rem !important; }
  .contact-band a[href^="mailto:"] { font-size: 0.98rem !important; }
  .btn { white-space: normal; text-align: center; }
  .btn,
  .btn-lg { font-size: 1rem; line-height: 1.35; }
  .eyebrow { font-size: 0.8rem; }
  .hero-split p,
  .section-header p,
  .serve-split p,
  .service-feature-card p,
  .serve-highlight li,
  .process-step p,
  .contact-section-wrap > p,
  .lead,
  .check-row span,
  .form-note { font-size: 0.98rem; }
  .service-feature-card h3,
  .serve-highlight h3,
  .process-step h3 { font-size: 1.05rem; }
  .footer-brand p,
  .footer-col a,
  .footer-col span { font-size: 0.95rem; }
  .footer-bottom { font-size: 0.88rem; }
  #hero p[style*="font-size:0.92rem"],
  #about p[style*="font-size:0.93rem"],
  #about p[style*="font-size:0.95rem"],
  #idd p[style*="font-size:0.88rem"] { font-size: 1rem !important; }
  #idd h3[style*="font-size:0.9rem"] { font-size: 1rem !important; }
  #credentials div[style*="font-size:0.7rem"],
  .contact-band div[style*="font-size:0.68rem"] { font-size: 0.82rem !important; }
  #credentials div[style*="font-size:0.85rem"],
  #credentials p[style*="font-size:0.78rem"],
  footer p[style*="font-size:0.75rem"] { font-size: 0.92rem !important; }
  .contact-band-divider { display: none; }
  .services-card-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .contact-info-row { flex-direction: column; gap: 20px; }
}

/* =====================================================
   SERVICES — Card grid layout
===================================================== */
.service-category {
  padding: 72px var(--gutter);
}
.service-category + .service-category {
  padding-top: 0;
}
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.svc-card {
  background: #fff;
  border-radius: 12px;
  border: 2px solid var(--border);
  padding: 32px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.11);
  border-color: transparent;
}
.svc-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px; flex-shrink: 0;
}
.svc-card-icon.orange { background: rgba(245,130,13,0.12); }
.svc-card-icon.blue   { background: rgba(26,95,156,0.10); }
.svc-card-icon.teal   { background: rgba(26,143,160,0.12); }
.svc-card h3 {
  font-size: 1rem; font-weight: 800;
  color: var(--black); margin-bottom: 10px;
}
.svc-card p {
  font-size: 0.88rem; color: var(--gray);
  line-height: 1.75; flex: 1;
}
.svc-card-tag {
  display: inline-block; margin-top: 16px;
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: 4px;
  align-self: flex-start;
}
.svc-card-tag.orange { background: rgba(245,130,13,0.11); color: var(--orange); }
.svc-card-tag.blue   { background: rgba(26,95,156,0.10);  color: var(--blue);   }
.svc-card-tag.teal   { background: rgba(26,143,160,0.12); color: var(--teal);   }

/* Category header strip */
.cat-header {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 32px; border-radius: 10px;
  margin-bottom: 4px;
}
.cat-header.orange { background: linear-gradient(90deg, #C95A08 0%, #F5820D 60%, #F5A623 100%); }
.cat-header.blue   { background: linear-gradient(135deg, #0C2D55 0%, #0E3A6A 60%, #1A6B8A 100%); }
.cat-header.teal   { background: linear-gradient(135deg, #1A6B8A 0%, #1A8FA0 100%); }
.cat-header h2 { color: #fff; font-size: 1.3rem; margin: 0; }
.cat-header p  { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin: 4px 0 0; }

/* Benefits management band */
.benefits-band {
  background: var(--gray-lt);
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  padding: 52px var(--gutter);
}
.benefits-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.benefits-creds { display: flex; flex-direction: column; gap: 14px; }
.bcred {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border-radius: 10px; padding: 20px 22px;
  border: 2px solid var(--border); transition: border-color 0.18s;
}
.bcred:hover { border-color: var(--blue); }
.bcred-label {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); margin-bottom: 4px;
}
.bcred-title { font-size: 0.95rem; font-weight: 800; color: var(--black); margin-bottom: 2px; }
.bcred-sub   { font-size: 0.8rem; color: var(--gray); }
.bcred-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; margin-top: 6px;
}

/* =====================================================
   ABOUT — Bio + Credentials layout
===================================================== */
.about-bio-section {
  padding: 72px var(--gutter);
}
.about-bio-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start;
}
.bio-photo-col { position: relative; }
.bio-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  object-position: top; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.bio-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--gray-lt); border: 2px dashed var(--border);
  border-radius: 12px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; color: var(--gray); font-size: 0.82rem;
  text-align: center; padding: 20px;
}
.bio-name-card {
  position: absolute; bottom: -18px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange); color: #fff;
  padding: 12px 20px; border-radius: 8px;
  text-align: center; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245,130,13,0.4);
}
.bio-name-card .name { font-size: 0.95rem; font-weight: 800; }
.bio-name-card .title { font-size: 0.72rem; font-weight: 600; opacity: 0.88; margin-top: 2px; }

.bio-content { padding-top: 8px; }
.bio-quote {
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  background: var(--gray-lt);
  border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
}
.bio-quote p {
  font-size: 1rem; color: var(--blue); font-weight: 600;
  line-height: 1.7; font-style: italic;
}
.bio-text {
  font-size: 0.95rem; color: var(--gray); line-height: 1.85;
  margin-bottom: 14px;
}
.bio-text.placeholder { font-style: italic; color: #999; }

/* Credentials section */
.certs-section {
  background: linear-gradient(135deg, #0C2D55 0%, #0E3A6A 60%, #1A6B8A 100%);
  padding: 64px var(--gutter);
}
.certs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px;
}
.cert-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 28px 24px;
  transition: background 0.18s;
}
.cert-card:hover { background: rgba(255,255,255,0.12); }
.cert-card-badge {
  display: inline-block; background: var(--orange);
  color: #fff; font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 4px; margin-bottom: 14px;
}
.cert-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.cert-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.cert-card .cert-issuer {
  margin-top: 12px; font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em;
}

/* =====================================================
   ANIMATIONS — simple & clean
===================================================== */

/* Page fade in on load */
.page-wrap {
  animation: pageFadeIn 0.35s ease both;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Page fade out when navigating away */
.page-exit {
  animation: pageFadeOut 0.25s ease forwards;
  pointer-events: none;
}
@keyframes pageFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* Scroll reveal — simple fade up */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }

/* Dropdown open */
.nav-item.open .dropdown {
  animation: fadeDown 0.18s ease both;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}