/* Volunteer Pilot Group — offline static site v2
   Elementor-look polish pass. Parallel preview only — not for production. */

@import url("../fonts/noto-local.css");

:root {
  --vpg-blue: #3D84C6;
  --vpg-blue-dark: #2f6eaa;
  --vpg-heading: #0B5394;
  --vpg-navy: #063662;
  --vpg-ice: #B5CAE6;
  --vpg-text: #333333;
  --vpg-muted: #555;
  --vpg-border: #d0dce8;
  --vpg-bg-alt: #f4f8fc;
  --header-h: 88px;
  --max: 1140px;
  --font: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--vpg-text);
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vpg-heading); text-decoration: none; }
a:hover { text-decoration: underline; }
main { flex: 1; }
p { margin: 0 0 1rem; }

.offline-banner {
  background: #5a4a10;
  color: #fff8e6;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.75rem;
  z-index: 200;
  position: relative;
}

/* ========== Header / Nav (Elementor sticky blue bar) ========== */
.site-header {
  background: var(--vpg-blue);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; opacity: .97; }
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.brand-text {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(255,255,255,.75);
  color: #fff;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  font-size: 1.15rem;
  cursor: pointer;
  line-height: 1;
}
.nav-toggle:hover { background: rgba(255,255,255,.12); }

.header-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.site-nav { display: flex; align-items: center; }
.site-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.site-nav > ul > li { position: relative; }
.site-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.7rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, background .15s ease;
}
.site-nav a:hover,
.site-nav a.active {
  text-decoration: none;
  border-bottom-color: #fff;
}
.site-nav .caret::after {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  margin-left: 2px;
  opacity: .9;
}
.site-nav ul.dropdown {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
  border-radius: 0 0 6px 6px;
  padding: 0.45rem 0;
  z-index: 120;
}
.dropdown a {
  color: var(--vpg-heading);
  display: block;
  padding: 0.65rem 1.1rem;
  border-bottom: none;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.dropdown a:hover {
  background: #eef5fb;
  border-bottom: none;
  text-decoration: none;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-dropdown.open > .dropdown {
  display: flex;
}
.search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.search-btn:hover { background: rgba(255,255,255,.15); }
.search-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ========== Layout ========== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow { max-width: 920px; }
.section { padding: 3.25rem 0; }
.section-alt { background: var(--vpg-bg-alt); }
.section-tight { padding: 2.25rem 0; }
.section h1, .section h2, .page-title {
  color: var(--vpg-heading);
  font-style: italic;
  font-weight: 700;
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.25;
}
.page-title { margin-top: 0.5rem; }
.page-sub {
  text-align: center;
  color: var(--vpg-heading);
  font-weight: 600;
  max-width: 780px;
  margin: 0 auto 1.85rem;
  font-size: 1.05rem;
  font-style: normal;
}
.lead { font-size: 1.08rem; color: var(--vpg-muted); }
.prose { max-width: 820px; margin: 0 auto 1.5rem; }
.prose p { font-size: 1.02rem; }

/* Page hero strip (subpages) */
.page-hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  background: #0a2a44;
  line-height: 0;
}
.page-hero-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ========== Home hero slideshow ========== */
.hero-slideshow {
  position: relative;
  min-height: min(62vh, 560px);
  height: 520px;
  max-height: 70vh;
  overflow: hidden;
  background: #0a2a44;
  color: #fff;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 4.5s ease;
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 45%, rgba(0,0,0,.15) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 0 1.25rem 3.5rem;
}
.hero-copy { max-width: 900px; }
.hero-copy h1 {
  margin: 0 0 0.45rem;
  font-family: var(--font);
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  font-weight: 900;
  text-transform: capitalize;
  line-height: 1.05;
  color: #fff;
  font-style: normal;
  text-shadow: 2px 5px 10px #000;
  letter-spacing: -0.01em;
}
.hero-copy p {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  text-shadow: 1px 3px 8px rgba(0,0,0,.65);
  color: #fff;
}
.hero-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.hero-nav:hover { background: rgba(0,0,0,.55); }
.hero-nav.prev { left: 14px; }
.hero-nav.next { right: 14px; }
.hero-dots {
  position: absolute;
  z-index: 3;
  left: 0; right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.hero-dots button.is-active { background: #fff; }

.blue-band {
  height: 36px;
  background: var(--vpg-blue);
  position: relative;
}
.blue-band::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -18px;
  height: 36px;
  background: var(--vpg-blue);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Two-column sections */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: center;
}
.two-col h2 { text-align: left; margin-bottom: 1rem; }
.two-col .media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(6,54,98,.18);
  background: #0a2a44;
  min-height: 280px;
}
.two-col .media > img,
.two-col .media .carousel-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Side image carousel (What is VPG) */
.side-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(6,54,98,.18);
  background: #0a2a44;
  aspect-ratio: 4 / 3;
}
.side-carousel .carousel-track {
  position: absolute;
  inset: 0;
}
.side-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.side-carousel .carousel-slide.is-active { opacity: 1; z-index: 1; }
.side-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-carousel .carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(61,132,198,.85);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}
.side-carousel .carousel-arrow.prev { left: 10px; }
.side-carousel .carousel-arrow.next { right: 10px; }
.side-carousel .carousel-dots {
  position: absolute;
  z-index: 2;
  left: 0; right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.side-carousel .carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.side-carousel .carousel-dots button.is-active { background: #fff; }

.aca-inline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.aca-inline img {
  width: 120px;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid var(--vpg-border);
}

/* ========== Tracker table (HT Mega look) ========== */
.tracker-updated {
  text-align: center;
  font-size: 0.9rem;
  color: var(--vpg-muted);
  margin: -0.35rem 0 1rem;
  letter-spacing: 0.02em;
}
.tracker-wrap {
  overflow-x: auto;
  margin: 1.5rem auto 0;
  max-width: 900px;
}
table.tracker {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 4px 18px rgba(6,54,98,.1);
}
table.tracker th, table.tracker td {
  padding: 0.85rem 1rem;
  border: 5px solid #fff;
  text-align: center;
  font-family: var(--font);
}
table.tracker th:first-child,
table.tracker td:first-child {
  text-align: left;
  font-weight: 700;
  min-width: 110px;
}
table.tracker thead th {
  background: var(--vpg-navy);
  color: var(--vpg-ice);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.2;
}
table.tracker tbody td {
  color: var(--vpg-heading);
  font-weight: 600;
  background: #f7fafc;
}
table.tracker tbody tr:nth-child(even) td { background: #eaf1f8; }
table.tracker tfoot td {
  background: var(--vpg-navy);
  color: var(--vpg-ice);
  font-weight: 700;
}

/* ========== Gallery ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  padding: 0.5rem 0 1rem;
}
.gallery-grid a {
  display: block;
  overflow: hidden;
  background: #0a2a44;
  position: relative;
}
.gallery-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11,83,148,.0);
  transition: background .2s;
}
.gallery-grid a:hover::after { background: rgba(11,83,148,.25); }
.gallery-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery-grid a:hover img { transform: scale(1.05); }

/* ========== Testimonials ========== */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
  margin: 1.75rem 0 1rem;
}
.card {
  border: 2px solid var(--vpg-blue);
  border-radius: 8px;
  padding: 1.5rem 1.55rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(6,54,98,.06);
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 8px 22px rgba(6,54,98,.12);
  transform: translateY(-2px);
}
.card blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: #333;
  text-align: center;
  line-height: 1.55;
}
.card .who {
  font-weight: 700;
  color: var(--vpg-heading);
  text-align: center;
}
.card .role {
  font-size: 0.85rem;
  color: var(--vpg-muted);
  text-align: center;
  margin-top: 0.15rem;
}

/* ========== Forms / Donate ========== */
.form-box {
  max-width: 560px;
  margin: 0 auto 2rem;
  background: #fff;
  border: 1px solid var(--vpg-border);
  border-radius: 10px;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 4px 18px rgba(6,54,98,.07);
}
.form-box label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0.85rem 0 0.35rem;
  color: var(--vpg-heading);
}
.form-box input,
.form-box textarea,
.form-box select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid #bcc9d6;
  border-radius: 4px;
  font: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.form-box input:focus,
.form-box textarea:focus {
  outline: none;
  border-color: var(--vpg-blue);
  box-shadow: 0 0 0 3px rgba(61,132,198,.2);
}
.form-box textarea { min-height: 130px; resize: vertical; }
.btn {
  display: inline-block;
  background: var(--vpg-heading);
  color: #fff !important;
  border: none;
  padding: 0.8rem 1.7rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none !important;
  text-align: center;
  margin-top: 1.1rem;
  font-family: var(--font);
  transition: background .15s, transform .1s;
}
.btn:hover { background: var(--vpg-navy); }
.btn-outline {
  background: transparent;
  color: var(--vpg-heading) !important;
  border: 2px solid var(--vpg-blue);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1rem 0; }
.amount-btn {
  background: #eef5fb;
  border: 2px solid var(--vpg-blue);
  color: var(--vpg-heading);
  padding: 0.55rem 0.95rem;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
}
.amount-btn.selected,
.amount-btn:hover {
  background: var(--vpg-blue);
  color: #fff;
}
.pay-placeholder {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: #fff8e6;
  border: 1px dashed #c9a227;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #5a4a10;
}
.contact-meta {
  text-align: center;
  margin-bottom: 1.75rem;
  color: var(--vpg-muted);
  line-height: 1.7;
}
.contact-meta a { font-weight: 600; }

.donate-callout {
  background: linear-gradient(135deg, #e8f2fa, #f7fafc);
  border-left: 4px solid var(--vpg-blue);
  padding: 1.25rem 1.4rem;
  margin: 1.5rem auto;
  max-width: 820px;
  border-radius: 0 8px 8px 0;
}
.portal-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.portal-card .lock-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--vpg-ice);
  color: var(--vpg-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

/* Stories map */
.map-frame {
  display: block;
  width: 100%;
  /* Adobe Animate stage is 1200×1818 — size iframe to that ratio so it isn't crushed */
  aspect-ratio: 1200 / 1818;
  height: auto;
  min-height: 70vh;
  border: 0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(6,54,98,.08);
  overflow: hidden;
}
.map-fallback {
  text-align: center;
  margin: 0.5rem 0 0;
}
.map-fallback a {
  font-weight: 600;
  color: var(--vpg-blue);
  text-decoration: underline;
}
.map-note {
  font-size: 0.85rem;
  color: var(--vpg-muted);
  text-align: center;
  margin: 0.85rem 0 1.5rem;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--vpg-blue);
  color: #fff;
  padding: 2.5rem 0 1.75rem;
  margin-top: auto;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.75rem;
  align-items: start;
}
.footer-brand {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
}
.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.footer-brand address {
  font-style: normal;
  font-size: 0.78rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-brand strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}
.footer-brand a { color: #fff; }
.footer-aca {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-aca img {
  max-width: 210px;
  background: #fff;
  padding: 0.45rem;
  border-radius: 4px;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.footer-links a {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  display: block;
  padding: 0.3rem 0;
  letter-spacing: 0.03em;
}
.footer-links a:hover { text-decoration: underline; }
.footer-copy {
  max-width: 1280px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: 0.72rem;
  text-align: center;
  opacity: .9;
  letter-spacing: 0.03em;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1rem 4.5rem;
  gap: 0.75rem;
}
.lightbox.open { display: flex; }
.lightbox-stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  max-width: min(96vw, 1200px);
}
.lightbox img {
  max-height: 82vh;
  max-width: min(92vw, 1100px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  border-radius: 2px;
}
.lightbox-counter {
  color: rgba(255,255,255,.85);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.lightbox-close {
  position: absolute;
  top: 0.85rem; right: 1.1rem;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0.25rem 0.5rem;
}
.lightbox-close:hover { opacity: 0.8; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.85);
  background: rgba(6,54,98,.55);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 0 0.15rem;
}
.lightbox-nav:hover { background: rgba(6,54,98,.85); }
.lightbox-prev { left: 0.85rem; }
.lightbox-next { right: 0.85rem; }
@media (max-width: 700px) {
  .lightbox { padding: 3.5rem 0.75rem 1rem; }
  .lightbox-nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.6rem;
  }
  .lightbox-prev { left: 0.35rem; }
  .lightbox-next { right: 0.35rem; }
  .lightbox img { max-height: 72vh; }
}

/* Search modal (visual only) */
.search-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(6,54,98,.55);
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
}
.search-modal.open { display: flex; }
.search-modal-inner {
  background: #fff;
  width: min(520px, 92vw);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.search-modal-inner input {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  border: 2px solid var(--vpg-blue);
  border-radius: 4px;
}
.search-modal-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--vpg-muted);
}

@media (max-width: 980px) {
  .page-hero-strip { grid-template-columns: repeat(2, 1fr); }
  .page-hero-strip img { height: 150px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 1.75rem; }
  .two-col h2 { text-align: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; text-align: left; }
  .footer-links { text-align: center; }
  .cards { grid-template-columns: 1fr; }
  .hero-slideshow { height: 420px; }
}
@media (max-width: 1100px) {
  .brand-text { display: none; }
  .nav-toggle { display: block; }
  .header-right { flex: 0; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--vpg-blue-dark);
    padding: 0.5rem 0 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
  }
  .site-nav.open { display: block; }
  .site-nav > ul { flex-direction: column; align-items: stretch; }
  .site-nav a { padding: 0.8rem 1.35rem; border-bottom: none; }
  .site-nav ul.dropdown {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(0,0,0,.15);
    border-radius: 0;
    min-width: 0;
  }
  .has-dropdown.open > .dropdown { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-strip img { height: 120px; }
  .site-header { position: relative; }
  .header-inner { position: static; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.35rem; }
  .gallery-grid img { height: 130px; }
  .hero-copy h1 { font-size: 2rem; }
  .hero-nav { display: none; }
}
