   :root{
    --bg: #ffffff;
    --ink: #0b0f16;
    --muted: #5b6473;
    --line: #e9eef7;
  
    --brand: #6a9ef4; 
    --brand-ink: #3b7cf1;
    --brand-ghost: #f4f7fe;
  
    --flag-blue: #0038B8; 
    --flag-blue-dark: #002c8f;
    --flag-blue-light: #e8edff;
  
    --accent-purple: #8b61f2;
    --accent-magenta: #eb6070;
    --accent-orange: #ef8c51;
  
    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 10px 30px rgba(11,15,22,.08);
  
    --maxw: 1160px;
    --space-1: .375rem;
    --space-2: .625rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-7: 4.5rem;
  }
  
  /* =================================
     2) Base & Typography
     ================================= */
  * { box-sizing: border-box; }
  html, body { height: 100%; }
  body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font: 16px/1.6 ui-serif, Georgia, "Times New Roman", serif;

    text-rendering: optimizeLegibility;
  }
  img { max-width:100%; height:auto; display:block; }
  a { color: var(--brand); text-decoration: none; }
  .container { max-width: var(--maxw); margin-inline: auto; padding: 0 var(--space-2); }
  .visually-hidden{
    position:absolute!important; height:1px; width:1px; overflow:hidden;
    clip:rect(1px,1px,1px,1px); white-space:nowrap;
  }
  
  /* Type scale */
  h1,h2,h3{
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    line-height:1.2; margin:0 0 var(--space-3);
  }
  h1{ font-size: clamp(2rem, 1.2rem + 3vw, 3.25rem); }
  h2{ font-size: clamp(1.7rem, 1.1rem + 1.6vw, 2.25rem);}
  h3{ font-size: clamp(1.125rem, 1rem + .6vw, 1.375rem); }
  p{ margin: 0 0 1rem; }


/* Mobile/iOS: avoid fixed-attachment jank */
@media (max-width: 767px) {
  .hero {
    background-attachment: scroll, scroll;
    background-position: center top, center top;
  }
}

/* Inner content */
.hero-inner {
  width: 100%;
  max-width: 1200px; 
  padding: 5rem 1.5rem; 
  text-align: center;
}

.hero-title {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(2rem, 1.3rem + 3vw, 3.2rem);
  margin: 0 0 .5rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}

.hero-subtitle {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, .9rem + .8vw, 1.3rem);
  opacity: .95;
  margin: 0;
  text-shadow: 0 1px 10px rgba(0,0,0,.25);
}

/* Size variants (apply as classes on .hero if you want different heights) */
/* .hero.hero--short { --hero-height: clamp(30vh, 40vh, 50vh); }
.hero.hero--tall  { --hero-height: clamp(60vh, 75vh, 90vh); } */

/* Optional: ensure first section after hero has comfortable spacing */
/* .hero + .container,
.hero + main,
.hero + section { margin-top: 2rem; }
 */

  /* Header */
  .site-header{
    position: sticky; 
    top:0; 
    z-index:70;
    background:#fff;
  }

  .nav-wrap{
    display:flex; 
    align-items:center; 
    justify-content:space-between;
    /* padding:.7rem 1.25rem;  */
    position:relative;
  }
  
  /* logo */
  .brand { 
    display:flex; 
    align-items:center; 
    justify-content:flex-start; 
    flex:0 0 auto; 
  }

  .brand img {
    width: 200px;
    height: auto !important;
    object-fit: contain;    
  }

  @media (min-width:375px){ .brand img{ width: 75px; } }
  @media (min-width:768px){ .brand img{ width: 150px; } }
  @media (min-width:1024px){ .brand img{ width: 150px; } }
  
  .nav-list{
    list-style:none; margin:0; padding:0;
    display:flex; align-items:center; justify-content:center;
    gap: clamp(.75rem, 1.2vw, 1.5rem);
  }
  .nav-link{
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    font-weight:700; font-size: clamp(1.1rem, .95rem + .25vw, 1.25rem);
    line-height:1; color:#0b0f16; padding:.4rem .2rem; text-decoration:none; position:relative;
  }

  .nav-link:hover::after{ transform:scaleX(1); }
  .nav-link[aria-current="page"]{ color: var(--flag-blue); }
  .nav-link[aria-current="page"]::after{ transform:scaleX(1); background: var(--flag-blue); }
  
  /* Dropdown */
  .nav-item-has-children { position:relative; }
  .subnav {
    position: absolute;
    top: 100%;        
    left: 0;    
    min-width: 200px;
    background: #fff;
    padding: .5rem;
    display: none;
    z-index: 999;
  }
  
  .nav-item-has-children:hover > .subnav {
    display: block;
  }

  
  
  /* submenu link styles */
  .subnav .nav-link {
    display: block;
    font-family: inherit;
    font-weight: 700;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    border-radius: 0;
    white-space: nowrap;
  }

  .subnav .nav-link:hover {
    background: transparent;
    /* color: var(--flag-blue); */
    text-decoration: none;
  }
  .nav-ctas{ display:flex; gap:.6rem; }
  
  /* Nav toggle */
  .nav-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    transition: transform 0.3s ease;
  }
  
  /* Make bars thicker and longer */
  .nav-toggle .bar {
    width: 36px;          /* longer */
    height: 2px;        /* thicker */
    background-color: #0b0f16;
    border-radius: 2px;
    position: absolute;
    transition:
      top 0.3s ease,
      transform 0.3s ease,
      opacity 0.3s ease,
      background-color 0.3s ease;
  }

.nav-toggle .bar:nth-of-type(1) { top: 14px; }
.nav-toggle .bar:nth-of-type(2) { top: 21px; }
.nav-toggle .bar:nth-of-type(3) { top: 28px; }

.nav-toggle:hover .bar {
  background-color: var(--flag-blue);
}
.nav-toggle:hover {
  transform: scale(1.1);
}

body.drawer-open .nav-toggle .bar:nth-of-type(1) {
  top: 21px;
  transform: rotate(45deg);
}
body.drawer-open .nav-toggle .bar:nth-of-type(2) {
  opacity: 0;
}
body.drawer-open .nav-toggle .bar:nth-of-type(3) {
  top: 21px;
  transform: rotate(-45deg);
}


 /* Home Hero */
  .hero{
    position: relative; 
    isolation:isolate;
  }
  .hero::before{
    content:""; position:absolute; inset:0;
    background:
      url("img/israeli-flag.png") top center / cover no-repeat;

    z-index:-1;
  }
  .hero .container{
    display:grid; 
    grid-template-columns: 1.1fr 1.1fr; 
    gap: var(--space-6);
    align-items:center; 
    padding-block: clamp(2rem, 4vw, 4.5rem);
    border-bottom: 1px solid var(--brand);
  }

  .eyebrow{
    letter-spacing:.05em; 
    text-transform:uppercase; 
    color:var(--muted);
    font-weight:800; 
    font-size:.9rem; 
    margin:0 0 .75rem;
  }
  
  .keyline{ 
    font-weight:600; 
    color:#111; 
  }
  
/* Home Middle */
.intro-layout {
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
    font-family: ui-serif, Georgia, "Times New Roman", serif;

  }
  
  .intro-left h1 {
    font-size: clamp(2rem, 1.3rem + 3vw, 3.5rem);
    margin-bottom: 1rem;
    }
  
  .intro-left h2 {
    font-size: clamp(1.7rem, 1.1rem + 1.6vw, 2.25rem);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--flag-blue);

  }
  
  .intro-right {
    justify-self: end;
    width: 100%;
    max-width: 350px;
    padding-top: 10rem;
  }
  
  .intro-right h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-top: 2rem;
  }
  
  .intro-right hr {
    border: 0;
    border-top: 1px solid var(--brand);
    margin: 0.5rem 0 1rem;
  }
  
  .intro-right p {
    margin: 0 0 0.5rem;
    line-height: 1.5;
    color: var(--ink);
  }
  
  .intro-right strong {
    font-weight: 700;
  }
  
  .intro-right a {
    color: var(--flag-blue);
    text-decoration: none;
  }
  
  .intro-right a:hover {
    text-decoration: underline;
  }
  
  /* FAQ */

.faq-section {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.faq-section h1 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 1rem + 2vw, 2.5rem);
  text-align: center;
  margin-bottom: 2rem;
  color: #0b0f16;
}

.faq-section h2 {
  font-size: clamp(1.2rem, 1.1rem + 1.6vw, 2rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--flag-blue);
  padding-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--brand);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  color: #0b0f16;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--flag-blue);
}

.chevron {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #0b0f16;
  border-bottom: 2px solid #0b0f16;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .chevron {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: .5rem;
}

/* Contact Page */
/* ========== Contact Page ========== */
.contact-section {
  max-width:1000px;
  margin: 4rem auto;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  padding: 0 1.5rem;
}

.contact-section h1 {
  text-align: center;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 1rem + 2vw, 2.6rem);
  color: #0b0f16;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
  border-top: 1px solid var(--brand);
}

.contact-block h2 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  color: var(--flag-blue);
  margin-top: 2rem;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2rem);
  padding-bottom: 0.3rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.3rem 0;
}

.contact-line svg {
  color: var(--flag-blue);
  flex-shrink: 0;
}

.contact-line a {
  color: #0b0f16;
  text-decoration: none;
  font-weight: 600;
}

.contact-line a:hover {
  color: var(--flag-blue);
  /* text-decoration: unde rline; */
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .contact-section {
    text-align: center;
  }
  .contact-line {
    justify-content: center;
  }
}

/* ========== Program Page ========== */
.program-section {
  max-width:1000px;
  margin: 4rem auto;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  padding: 0 1.5rem;

}

.program-section h1 {
  text-align: center;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 1rem + 2vw, 2.6rem);
  color: #0b0f16;
}

.program-section h2 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  margin-top: 2rem;
  color: var(--flag-blue);
  border-top: 1px solid var(--brand);
  padding-top: 2rem;
  padding-bottom: 0.3rem;
}

.program-section h3 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  color: #0b0f16;
  margin-top: 1.5rem;
}

.program-section ul {
  margin-left: 1.5rem;
  line-height: 1.6;
}

.program-section p {
  color: #222;
  line-height: 1.7;
}

/* Apply Button */
.btn-apply {
  display: inline-block;
  background-color: var(--flag-blue);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-apply:hover {
  background-color: #003a82; /* darker blue */
}

/* ===== About page ===== */
.about-section {
  max-width:1000px;
  margin: 4rem auto;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  padding: 0 1.5rem;

}
.about-section h1 {
  text-align: center;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 1rem + 2vw, 2.6rem);
  color: #0b0f16;
}

.about-block { 
  margin-top: 2.25rem; 
}
.about-block h2 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  color: var(--flag-blue);
  margin-top: 2rem;
  color: var(--flag-blue);
  border-top: 1px solid var(--brand);
  padding-top: 2rem;
  padding-bottom: 0.3rem;
}
.about-section p, .about-section li { line-height: 1.7; color: #222; }

/* ===== Team page ===== */
.team-section {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.team-section h1 {
  text-align: center;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 1rem + 2vw, 2.4rem);
  color: #0b0f16;
  margin-bottom: 2.2rem;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  /* border-bottom: 1px solid var(--brand); */

}

.team-block h2 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  /* margin-top: 2rem; */
  border-top: 1px solid var(--brand);
  padding-top: 2rem;
  padding-bottom: 0.3rem;
}

/* Each team card */
.team-card {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

/* Headshot */
.team-photo {
  flex-shrink: 0;
  width: 300px;
  height: auto;
  object-fit: cover;
}

/* Info */
.team-info {
  flex: 1;
}

.team-name {
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.team-role {
  margin: 0.25rem 0 1rem;
  font-weight: 700;
  color: var(--flag-blue);
}

.team-bio {
  margin: 0 0 0.8rem;
  line-height: 1.7;
  color: #222;
}

/* Responsive layout */
@media (max-width: 700px) {
  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-photo {
    width: 200px;
    height: 200px;
  }

  .team-info {
    text-align: center;
  }
}

/* ========== Support Page ========== */

.support-section {
  max-width:1000px;
  margin: 4rem auto;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  padding: 0 1.5rem;

}
.support-section h1 {
  text-align: center;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 1rem + 2vw, 2.6rem);
  color: #0b0f16;
}

.support-block { 
  margin-top: 2.25rem; 
}
.support-block h2{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  color: var(--flag-blue);
  margin-top: 2rem;
  border-top: 1px solid var(--brand);
  padding-top: 2rem;
  padding-bottom: 0.3rem;
}

.support-block ul {
  margin-left: 1.25rem;
  line-height: 1.7;
}

.support-block p {
  line-height: 1.7;
  color: #222;
}

.btn-donate {
  display: inline-block;
  background-color: var(--flag-blue);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.75rem;
  transition: background 0.3s ease;
}

.btn-donate:hover {
  background-color: var(--brand);
}

.note {
  font-style: italic;
  margin-top: 0.5rem;
  color: #444;
}


/* Footer */
.site-footer {
  color: black;
  padding: 3rem 1.5rem;
  /* border-top: 2px solid var(--brand); */
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-rule {
  text-align: right;
  margin-bottom: 1.5rem;
}

.footer-top {
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  color: black;
}

.footer-top:hover {
  text-decoration: underline;
}

/* main columns */
.footer-primary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  color: black;
  border-top: 1px solid var(--brand);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  padding-top: 2rem;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-biglist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-biglist li {
  margin-bottom: 0.4rem;
}

.footer-biglist a {
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
  color: black;
}

.footer-biglist a:hover {
  color: var(--brand)
}

/* bottom line */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid var(--accent-purple);
  padding-top: 1.5rem;
}

.legal {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: .9rem;
  text-align: right;

}

/* ================================
   Tablet & Down (≤ 1024px)
   ================================ */
   @media (max-width: 1024px) {
    /* .container { padding: 0 var(--space-3); } */
  
    /* Header */
    /* .nav-wrap { padding: .6rem 1rem; } */
    .brand img { width: 120px; }
  
    /* Hero */
    .hero .container {
      grid-template-columns: 1fr;
      gap: var(--space-4);
      padding-block: clamp(1.25rem, 3vw, 2.5rem);
      text-align: center;
    }
  
    /* Intro split */
    .intro-layout {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .intro-right {
      justify-self: center;
      max-width: 520px;
      padding-top: 1rem;
      text-align: left;
      width: 100%;
    }
  
    /* Team spacing */
    .team-card { gap: 2rem; }
    .team-photo { width: 260px; }
  }
  
/* ----- Drawer base (desktop shows inline; mobile is off-canvas) ----- */
.primary-nav { display: block; } /* desktop default */


@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }

  /* Mobile drawer navigation */
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 30%;
    background: #fff;
    padding: 5rem 1.25rem 2rem;
    box-shadow: var(--shadow);
    z-index: 1000;

    transform: translateX(100%);   /* hidden by default */
    transition: transform .3s ease;
    display: block;                 /* ensure block to fill panel */
    overflow-y: auto;              /* allow scrolling if needed */
    
    /* Override container positioning */
    position: fixed !important;
    inset: 0 0 0 30% !important;
  }
  body.drawer-open .primary-nav { 
    transform: translateX(0); 
    z-index: 1004; 
  }
  .primary-nav a { 
    pointer-events: auto; 
    cursor: pointer;
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    text-decoration: none;
    color: #0b0f16;
  }

  .footer-primary {
    font-size: smaller;
  }
  

  /* full-screen for very small phones */
  @media (max-width: 560px) {
    .primary-nav { inset: 0; }
  }

  /* Stack nav items */
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Mobile submenu styles */
  .nav-item-has-children {
    width: 100%;
  }
  
  .subnav { 
    position: static; 
    display: none; 
    padding: .25rem 0 .5rem; 
    background: transparent;
    box-shadow: none;
    margin-left: 1rem;
    padding-left: 1rem;
  }
  
  .nav-item-has-children:hover > .subnav { display: none; }
  
  /* Show submenu on mobile when parent is clicked */
  .nav-item-has-children.open > .subnav {
    display: block;
  }
}

/* ---------- Overlay for dimming page while drawer is open ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1002; /* below the drawer (1004) but above page */
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  pointer-events: auto;
}

  @media (max-width: 700px) {
    /* Brand sizing */
    .brand img { width: 95px; } 

  
    /* General  */
    .faq-section,
    .contact-section,
    .program-section,
    .about-section,
    .team-section,
    .support-section { padding: 0 2rem; }

    .container {
      padding: 0 1rem;
    }
  
    /* Team stack */
    .team-card {
      flex-direction: column;
      align-items: left;
      text-align: left;
      gap: 1.25rem;
    }
    .team-photo {
      width: 200px;
      height: auto;
    }

    .subnav ul {
      border: none;
    }

  
    /* Footer grid */
    .footer-primary {
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }
  }
  
  /* ================================
     Small Phones (≤ 600px)
     ================================ */
  @media (max-width: 600px) {
    /* Contact layout (you already center in MQ; add spacing) */
    .contact-grid { gap: 1.5rem; 
    grid-template-columns: auto;}
  
    /* Buttons: full-width option if desired */
    .btn-apply,
    .btn-donate {
      width: 100%;
      text-align: center;
    }
  
    /* Reduce headings slightly (clamp already helps; add margins) */
    h1, h2, h3 { margin-bottom: var(--space-2); }
  
    /* Footer tweaks */
    .site-footer { padding: 2rem 1rem; }
    .footer-primary {
      grid-template-columns: 1fr;
      border-top: 1px solid var(--brand);
      padding-top: 1.25rem;
    }
    .footer-bottom { padding-top: 1rem; }
    .legal { text-align: center; }

    h2 {
      font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
    }
    h1 {
      font-size: clamp(1.8rem, 1rem + 1vw, 1.75rem);
    }
  }
  
  /* ================================
     Tiny Phones (≤ 480px)
     ================================ */
  @media (max-width: 480px) {
    /* Tighten container padding */
    /* .container { padding: 0 2rem;} */
  
    .body ul {
      margin-left: none;
    }
    /* Brand: smallest */
    .brand img { width: 100px; }
    .contact-grid {
      margin: none;
      align-items: center;
    }
  
    /* Hero text spacing */
    .hero-inner { padding: 3.5rem 1rem; }
    .hero-title { margin-bottom: .35rem; }
  
    /* FAQ tap targets */
    .faq-question { padding: 0.6rem 0; }
    .chevron { width: .6em; height: .6em; }
  
    /* Lists */
    .program-section ul,
    .support-block ul { margin-left: -1rem; }
  }

  
  /* Desktop & tablet (≥821px): hide burger */
@media (min-width: 821px) {
  .nav-toggle { display: none !important; }
}

/* Mobile (≤820px): show, position, and size burger */
@media (max-width: 820px) {
  .nav-wrap {
    display: flex;
    align-items: center;      /* centers all items vertically */
    justify-content: space-between;
    position: relative;
  }

  .nav-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;                 /* center vertically inside nav-wrap */
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    transition: transform 0.3s ease;
  }

  /* keep hover & open states consistent */
  .nav-toggle:hover {
    transform: translateY(-50%) scale(1.1);
  }
  .nav-toggle.open {
    transform: translateY(-50%);
  }

  .nav-toggle .bar {
    width: 34px;
    height: 3px;
    background-color: #0b0f16;
    border-radius: 2px;
    position: absolute;
    transition: top .3s ease, transform .3s ease, opacity .3s ease, background-color .3s ease;
  }

  .nav-toggle .bar:nth-of-type(1) { top: 18px; }
  .nav-toggle .bar:nth-of-type(2) { top: 30px; }
  .nav-toggle .bar:nth-of-type(3) { top: 42px; }
}

.primary-nav .nav-link { color: #0b0f16; }

.primary-nav .nav-link[aria-current="page"] { 
  color: var(--flag-blue);
}

.primary-nav .nav-item-has-children:hover .subnav .nav-link {
  color: #0b0f16;
}

.nav-item-has-children,
.nav-item-has-children.open,
.nav-item-has-children.active { 
  color: inherit;
}

.nav-item-has-children.open .subnav .nav-link,
.nav-item-has-children.active .subnav .nav-link {
  color: #0b0f16;
}

.primary-nav > .nav-list > li > .nav-link:hover,
.primary-nav .subnav .nav-link:hover {
  color: var(--flag-blue);
}


