/* =========================================================
   Inspiring Together — Main Stylesheet
   Layout: Flexbox only (no frameworks)
   ========================================================= */

:root {
  --orange: #F26623;
  --orange-dark: #d9531a;
  --text: #1A1B1B;
  --text-soft: #68736F;
  --muted: #8a8a8a;
  --beige: #F7F6F2;
  --cream: #faf9f5;
  --white: #fff;
  --border: #D4D9D3;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .06);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, .12);
  --container: 1284px;
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: "InterDisplay", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
}

h1 {
  font-size: clamp(35.2px, 4.4vw, 57.6px);
}

h2 {
  font-size: clamp(28px, 3vw, 46px);
}

h3 {
  font-size: 17.6px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
}

.bg-beige {
  background: var(--beige);
}

.bg-cream {
  background: var(--cream);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 11.2px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.eyebrow-accent {
  color: var(--orange) !important;
}

.eyebrow-light {
  color: rgba(255, 255, 255, .8);
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14.4px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), color .25s;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 101, 34, .3);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.btn .arrow,
.link-arrow .arrow {
  transition: transform .25s var(--ease);
}

.btn:hover .arrow,
.link-arrow:hover .arrow {
  transform: translateX(4px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.12px;
  font-weight: 500;
  color: var(--text);
}

.link-arrow .arrow {
  color: var(--orange);
}

.link-arrow:hover {
  color: var(--orange);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  width: 166px;
}

.logo-text {
  font-size: 15.2px;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -.01em;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 0;
  transition: color .2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-donate-mobile {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-donate {
  padding: 10px 24px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 90;
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 64%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .85) 18%, rgba(255, 255, 255, 0) 50%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
}

.hero-content {
  flex: 0 1 520px;
  padding: 60px 0;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-text {
  font-size: 15.2px;
  color: var(--text-soft);
  max-width: 420px;
  margin-bottom: 30px;
}

/* ---------- Mission ---------- */
.mission {
  padding: 140px 0;
}

.mission-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mission-inner h2 {
  max-width: 720px;
  margin-bottom: 24px;
}

.mission-inner p {
  max-width: 640px;
  font-size: 15px;
  color: var(--text-soft);
}

/* ---------- Section head (title left / text right) ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.section-head-title {
  flex: 1 1 55%;
}

.section-head-title h2 {
  max-width: 560px;
}

.section-head-text {
  flex: 0 1 495px;
  font-size: 16px;
  color: var(--text-soft);
}

.section-head-text strong {
  color: var(--text);
  font-weight: 600;
}

/* ---------- Cards ---------- */
.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card-row-center {
  justify-content: center;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #E7E5DF;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-media {
  overflow: hidden;
  aspect-ratio: 16 / 9.5;
  background: var(--beige);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 22px 26px;
}

.card-body h3 {
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 500;
}

.card-body p {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 20px;
  flex: 1;
}

.pillar-card {
  flex: 1 1 300px;
}

.card-num {
  font-size: 11.52px;
  color: var(--muted);
  margin-bottom: 8px;
}

.pillar-card .card-body {
  border-top: 0;
}

.connect-card {
  flex: 0 1 380px;
}

/* ---------- Stats ---------- */
.stats {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}

.stat {
  flex: 1 1 25%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: 0;
}

.stat-num {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Stories ---------- */
.stories {
  padding-top: 40px;
}

.stories-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.stories-content {
  flex: 1 1 420px;
  max-width: 440px;
}

.stories-content h2 {
  margin-bottom: 20px;
}

.stories-content p {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.stories-media {
  position: relative;
  flex: 0 1 560px;
  padding-bottom: 20px;
}

.stories-media>img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.quote-card {
  position: absolute;
  right: -20px;
  bottom: 40px;
  width: 250px;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.quote-mark {
  font-size: 22.4px;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 4px;
}

.quote-card p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
}

.quote-card cite {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Video ---------- */
.video-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7.5;
  background: #ddd;
}

.video-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.video-frame:hover img {
  transform: scale(1.03);
}

.play-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding-left: 4px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .22);
  border: 1.5px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .3s var(--ease), background .3s;
}

.play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .5);
  animation: pulse 2.2s infinite;
}

.play-btn:hover {
  transform: scale(1.08);
  background: var(--orange);
  border-color: var(--orange);
}

@keyframes pulse {
  0% {
    transform: scale(.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .85);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
}

.video-embed {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  color: #ccc;
  font-size: 14.4px;
  text-align: center;
  padding: 20px;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-close {
  position: absolute;
  top: -44px;
  right: 0;
  font-size: 32px;
  line-height: 1;
  color: var(--white);
}

/* ---------- Ways ---------- */
.ways {
  background-color: #FCFBF8;
}
.way-card {
  flex: 1 1 280px;
  padding: 28px 24px 22px;
}

.way-icon {
  display: flex;
  color: var(--orange);
  margin-bottom: 18px;
}

.way-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 500;
}

.way-card p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 26px;
  flex: 1;
}

.way-card .link-arrow {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 0 0 100px;
}

.cta-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 64px 60px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.cta-content h2 {
  margin-bottom: 18px;
}

.cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  max-width: 400px;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
}

.cta-shape {
  position: absolute;
  left: 44%;
  bottom: 0;
  color: rgba(255, 255, 255, .18);
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 50px 0 30px;
  background-color: #FCFBF8;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-nav a,
.footer-legal a {
  font-size: 16px;
  color: var(--text-soft);
  transition: color .2s;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--orange);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  color: var(--orange);
  transition: background .25s, color .25s;
}

.socials a:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

/* ---------- Nav dropdown ---------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle svg {
  transition: transform .25s var(--ease);
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 210px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}

/* keeps hover alive across the gap under the toggle */
.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, color .2s;
}

.dropdown-menu a:hover {
  background: var(--beige);
  color: var(--orange);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--header-h) + 100px) 0 100px;
}

.page-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.page-hero-inner h1 {
  font-size: 53px;
  font-weight: 400;
}
.page-hero-content {
  flex: 1 1 440px;
  max-width: 549px;
}

.page-hero-content h1 {
  margin-bottom: 24px;
}

.page-hero-text {
  font-size: 15px;
  color: var(--text-soft);
}

.page-hero-tagline {
  margin-top: 44px;
  font-size: 13px;
  font-style: italic;
  color: var(--orange);
}

.page-hero-media {
  flex: 0 1 560px;
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ---------- Events ---------- */
.events-list h2 {
  font-size: 35px;
}
.event-tabs {
  display: flex;
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 12px;
  background: #F7F6F2;
  border: 1px solid #E6E6E6;
  border-radius: 999px;
}

.event-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s, box-shadow .25s;
}

.event-tab:hover {
  color: var(--orange);
}

.event-tab.active {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  line-height: 1;
}

.event-card {
  flex: 0 1 calc((100% - 48px) / 3);
}

.event-card[hidden],
.tab-count[hidden] {
  display: none;
}

.event-tag {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 3px 10px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}

.card-body .event-date {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  margin-bottom: 13px;
  font-size: 12px;
}

.event-card .card-body h3 {
  font-size: 21px;
  font-weight: 600;
}

.event-card .card-body p:not(.event-date) {
  font-size: 14px;
}

.events-empty {
  text-align: center;
  color: var(--text-soft);
  padding: 40px 0;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, .8);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ---------- About: intro ---------- */
.about-intro .mission-inner h2 {
  max-width: 900px;
  font-size: 35px;
}

.about-intro .mission-inner p {
  max-width: 1186px;
  font-size: 18px;
}

.about-intro .mission-inner p + p {
  margin-top: 20px;
}

/* ---------- About: banner ---------- */
.about-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding: 100px 0;
  overflow: hidden;
}

.about-banner-media {
  position: absolute;
  inset: 0;
}

.about-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-banner-icon {
  display: flex;
  color: var(--orange);
  margin-bottom: 18px;
}

.about-banner-inner h2 {
  max-width: 760px;
  margin-bottom: 32px;
  font-size: clamp(32px, 4.4vw, 64px);
  font-weight: 400;
}

/* ---------- About: four C's ---------- */
.values-head {
  text-align: center;
  margin-bottom: 70px;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}

.value-item {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value-icon {
  display: flex;
  color: var(--text);
  margin-bottom: 14px;
}

.value-item h3 {
  margin-bottom: 8px;
  font-size: 26px;
  font-weight: 600;
}

.value-item p {
  max-width: 260px;
  font-size: 18px;
  color: var(--text-soft);
}

/* ---------- About: FAQ ---------- */
.faq-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.faq-media {
  flex: 0 1 520px;
}

.faq-media img {
  width: 100%;
  aspect-ratio: 16 / 15;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.faq-content {
  flex: 1 1 480px;
}

.faq-content h2 {
  margin-bottom: 30px;
}

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

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 36px 18px 0;
  font-size: 20px;
  font-weight: 400;
  list-style: none;
  cursor: pointer;
  transition: color .2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--orange);
}

/* plus / minus icon */
.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--text);
  transition: transform .3s var(--ease);
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-num {
  font-size: 12px;
  color: var(--orange);
}

.faq-item p {
  padding: 0 36px 20px 38px;
  font-size: 20px;
  color: var(--text-soft);
}

.about-cta {
  padding-top: 110px;
}

/* ---------- Page hero: centred variant ---------- */
.page-hero-center {
  padding: calc(var(--header-h) + 80px) 0 80px;
  text-align: center;
}

.page-hero-center h1 {
  max-width: 633px;
  margin: 0 auto 24px;
  font-size: 62px;
  font-weight: 400;
}

.page-hero-center .page-hero-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
}

/* ---------- Board: leadership intro ---------- */
.leader-intro-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.leader-intro-content {
  flex: 1 1 560px;
  max-width: 680px;
}

.leader-intro-content h2 {
  margin-bottom: 24px;
}

.leader-intro-content p:not(.eyebrow) {
  font-size: 16px;
  color: var(--text-soft);
}

.leader-quote {
  flex: 0 1 400px;
  padding: 20px 0 20px 26px;
  border-left: 2px solid var(--orange);
}

.leader-quote p {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.01em;
}

/* ---------- Board: members ---------- */
.member-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 70px;
}

.member-card {
  flex: 0 1 calc((100% - 140px) / 3);
}

.member-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
  background: #EFEAE2;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

/* Photo covers the initials; if the photo is missing, main.js removes it and the initials show */
.member-photo img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.member-card:hover .member-photo img {
  transform: scale(1.04);
}

.member-initials {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: .02em;
  color: var(--orange);
  opacity: .85;
}

.member-card h3,
.founder-content h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 4px;
}
.member-card h3 {
  font-size: 25px;
}
.member-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ---------- Board: founder ---------- */
.founder-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.founder-media {
  flex: 0 1 540px;
}

.founder-media img {
  width: 100%;
  aspect-ratio: 9 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.founder-content {
  flex: 1 1 460px;
  max-width: 540px;
}

.founder-content h2 {
  margin-bottom: 24px;
}

.founder-content .member-role {
  margin-bottom: 24px;
}

.founder-text {
  font-size: 15px;
  color: var(--text-soft);
}

/* ---------- Volunteer: hero ---------- */
.volunteer-hero {
  padding: calc(var(--header-h) + 110px) 0 110px;
}

.volunteer-hero h1 {
  max-width: 920px;
  margin-bottom: 0;
}

/* ---------- Volunteer: benefits ---------- */
.benefits-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.benefits-media {
  flex: 0 1 520px;
}

.benefits-media img {
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.benefit-list {
  flex: 1 1 480px;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 20px;
  line-height: 1.4;
}

.benefit-num {
  flex-shrink: 0;
  min-width: 22px;
  font-size: 14px;
  color: var(--orange);
}

/* ---------- Volunteer: form ---------- */
.volunteer-form-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}

.volunteer-form-content {
  flex: 1 1 460px;
  max-width: 580px;
}

.volunteer-form-content h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 2.4vw, 32px);
}

.volunteer-form-text {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.step-list {
  list-style: none;
  margin-bottom: 32px;
}

.step-list li {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.step-list h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.step-list p {
  font-size: 13px;
  color: var(--text-soft);
}

.volunteer-form-note {
  font-size: 14px;
  margin-bottom: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--beige);
  color: var(--orange);
}

.contact-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list a {
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}

.contact-list a:hover {
  color: var(--orange);
}

.form-card {
  flex: 0 1 600px;
  padding: 30px;
  background: var(--white);
  border: 1px solid #EDEDE8;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-embed {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  border: 1px solid #EDEDE8;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.form-embed iframe {
  width: 100%;
  height: 700px;
  border: 0;
}

.form-placeholder {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ---------- Handbook ---------- */
.page-cream {
  --mint: #F0F4EF;
  --mint-text: #1D3B34;
  background: #FCFBF8;
}

.handbook-meta {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}

.handbook-meta dt {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.handbook-welcome {
  border-top: 1px solid #E7E5DF;
}
.handbook-meta dd {
  font-size: 15px;
}

.handbook-welcome h2 {
  margin-bottom: 24px;
}

.handbook-quote {
  margin-bottom: 32px;
  padding-left: 18px;
  border-left: 2px solid var(--orange);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.35;
  color: var(--orange);
}

.handbook-welcome p {
  font-size: 16px;
  color: var(--text-soft);
}

.handbook-welcome p + p {
  margin-top: 20px;
}

.handbook-layout {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding-bottom: 110px;
}

.handbook-toc {
  position: sticky;
  top: calc(var(--header-h) + 30px);
  flex: 0 0 250px;
}

.handbook-toc a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
  font-size: 16px;
  color: var(--text-soft);
  border-left: 2px solid transparent;
  transition: color .2s, padding .25s var(--ease), border-color .2s;
}

.handbook-toc a span {
  min-width: 16px;
  font-size: 12px;
  color: var(--muted);
}

.handbook-toc a:hover {
  color: var(--orange);
}

.handbook-toc a.active {
  padding-left: 12px;
  border-left-color: var(--orange);
  color: var(--text);
}

.handbook-toc a.active span {
  color: var(--orange);
}

.handbook-content {
  flex: 1;
  min-width: 0;
}

.handbook-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.handbook-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.handbook-section h2 {
  margin-bottom: 30px;
}

.handbook-section > p:not(.eyebrow),
.handbook-panel > p {
  margin-bottom: 24px;
  font-size: 16px;
  color: var(--text-soft);
}

.handbook-section > p:last-child {
  margin-bottom: 0;
}

.handbook-callout {
  margin: 8px 0 40px;
  padding: 32px 34px;
  background: var(--mint);
  border-radius: 12px;
}

.handbook-callout p {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  color: var(--mint-text);
}

.handbook-callout-list {
  margin: 32px 0 0;
  padding: 26px 24px;
}

.handbook-callout-list .eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-soft);
}

.handbook-callout-list li {
  font-size: 15px;
  line-height: 2;
  color: var(--mint-text);
}

.handbook-callout-list li::before {
  content: "\2014\00a0";
}

.dot-list {
  margin-bottom: 40px;
}

.dot-list li {
  position: relative;
  padding: 12px 0 12px 27px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--mint-text);
}

.dot-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.hb-steps {
  list-style: none;
}

.hb-steps li {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.hb-steps h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 400;
}

.hb-steps p {
  font-size: 16px;
  color: var(--text-soft);
}

.handbook-panel {
  padding: 44px;
  background: var(--mint);
  border: 1px solid #E3E9E2;
  border-radius: 20px;
}

/* Accordions (builds on .faq-item) */
.hb-accordion .faq-item summary {
  display: block;
  padding: 26px 40px 22px 0;
  font-size: 18px;
}

.hb-accordion .faq-item summary::before,
.hb-accordion .faq-item summary::after {
  top: 38px;
}

.hb-acc-title {
  display: block;
}

.hb-acc-preview {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  font-size: 13px;
  color: var(--text-soft);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hb-accordion .faq-item[open] .hb-acc-preview {
  display: none;
}

.hb-accordion .faq-item p {
  padding: 0 40px 24px 0;
  font-size: 16px;
}

.hb-accordion-boxed .faq-item {
  padding: 0 20px;
  border: 1px solid transparent;
  border-bottom-color: var(--border);
}

.hb-accordion-boxed .faq-item[open] {
  border-color: #D8785C;
  border-left: 3px solid var(--orange);
}

.hb-accordion-boxed .faq-item[open] summary::before {
  background: var(--orange);
}

/* ---------- Contact ---------- */
.contact-section {
  margin: calc(var(--header-h) + 30px) 0 80px;
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-top: 80px;
}

.contact-info {
  flex: 1 1 520px;
  max-width: 660px;
}

.contact-info h1 {
  margin-bottom: 16px;
  font-size: clamp(32px, 3vw, 42px);
}

.contact-intro {
  margin-bottom: 44px;
  font-size: 18px;
  color: #8F8F8F;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #FDEEE6;
  color: #F7A07A;
}

.contact-details h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
}

.contact-details p {
  font-size: 16px;
  line-height: 1.4;
  color: #5F6368;
}

.contact-details strong {
  font-weight: 600;
  color: #5F6368;
}

.contact-details a:hover {
  color: var(--orange);
}

.contact-form-card {
  flex: 0 1 518px;
  padding: 64px 24px;
  background: var(--beige);
  border-radius: var(--radius-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-field {
  flex: 1;
}

/* Label sits inside the field and floats up once the field is focused or filled */
.form-field {
  position: relative;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 22px 12px 8px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-field textarea {
  min-height: 96px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 102, 35, .12);
}

.form-field label {
  position: absolute;
  left: 13px;
  top: 14px;
  font-size: 14px;
  color: var(--text-soft);
  pointer-events: none;
  transition: top .2s var(--ease), font-size .2s var(--ease);
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 5px;
  font-size: 11px;
}

.req {
  color: #E5322D;
}

.btn-block {
  width: 100%;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
}

.form-status {
  font-size: 14px;
  color: var(--text-soft);
  text-align: center;
}

/* ---------- Partners ---------- */
.partners-hero {
  margin: calc(var(--header-h) + 30px) 0 0;
  border-top: 1px solid var(--border);
}

.partners-hero h1 {
  max-width: 780px;
  font-weight: 600;
}

.partners-hero .page-hero-text {
  max-width: 880px;
  font-size: 18px;
}

.leader-quote-text {
  flex-basis: 640px;
  padding: 8px 0 8px 26px;
}

.leader-quote-text p {
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0;
  color: var(--text-soft);
}

.leader-quote-text p + p {
  margin-top: 18px;
}

/* Logo marquee */
.logo-marquee {
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 50px;
  width: max-content;
  padding: 4px 0;
  animation: marquee 10s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(calc(-50% - 25px));
  }
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 144px;
  height: 168px;
  padding: 26px 16px;
  background: var(--cream);
  border: 1px solid #E6E3DC;
  border-radius: var(--radius);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 4px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-logo span {
  padding: 0 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: var(--text-soft);
}

/* Become a partner */
.partner-cta {
  background: #FCFBF8;
}

.partner-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.partner-cta-content {
  flex: 1 1 520px;
  max-width: 660px;
}

.partner-cta-content h2 {
  margin-bottom: 24px;
  font-size: 54px;
}

.partner-cta-content p:not(.eyebrow) {
  font-size: 15px;
  color: var(--text-soft);
}

.partner-cta-card {
  flex: 0 1 500px;
  padding: 40px;
  background: var(--white);
  border: 1px solid #E7E5DF;
  border-radius: var(--radius-lg);
}

.partner-cta-card h3 {
  margin-bottom: 28px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.2;
}

/* ---------- Leadership ---------- */
.leadership-hero {
  border-bottom: 1px solid #E7E5DF;
}
.leadership-hero h1 {
  max-width: none;
}

.leadership-hero .page-hero-text {
  max-width: 1200px;
}

.leadership .handbook-layout {
  padding-bottom: 0;
}

/* Year tabs share the look of the handbook "On this page" links */
.year-tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

.year-tabs button {
  padding: 8px 0;
  font-size: 15px;
  text-align: left;
  color: var(--text-soft);
  border-left: 2px solid transparent;
  transition: color .2s, padding .25s var(--ease), border-color .2s;
}

.year-tabs button:hover {
  color: var(--orange);
}

.year-tabs button.active {
  padding-left: 12px;
  border-left-color: var(--orange);
  color: var(--text);
}

.leadership-contact-title {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
}

.team-grid {
  gap: 40px 30px;
}

.team-grid .member-card {
  flex-basis: calc((100% - 60px) / 3);
}

.team-grid-lead {
  margin-bottom: 40px;
}

.team-grid .member-photo {
  aspect-ratio: 7 / 8;
}

.team-role {
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.team-empty {
  padding: 40px 0;
  color: var(--text-soft);
}

.leadership + .cta-section {
  padding-top: 110px;
}

/* ---------- Donate ---------- */
.donate-hero h1 {
  max-width: 760px;
}

.donate-hero .page-hero-text {
  max-width: 720px;
  margin-bottom: 32px;
  font-size: 18px;
}

.donate-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.donate-card {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 28px 26px;
  background: var(--white);
  border: 1px solid #E7E5DF;
  border-radius: var(--radius);
}

.donate-card h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.donate-card p {
  font-size: 15px;
  color: var(--text-soft);
}

.donate-card > p {
  margin-bottom: 18px;
}

.donate-cheque {
  display: flex;
  gap: 30px;
  width: 100%;
}

.donate-cheque > div {
  flex: 1;
}

.donate-address {
  padding-left: 16px;
  border-left: 1px solid var(--orange);
}

.donate-strong {
  margin-top: 12px;
  font-size: 15px;
  font-style: normal;
  line-height: 1.3;
  color: var(--text) !important;
}

/* Divider + footer row, pushed to the bottom so both cards line up */
.donate-card-foot {
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #E7E5DF;
}

.donate-cheque,
.donate-card > .btn {
  margin-bottom: 16px;
}

.donate-card-foot p {
  font-size: 14px;
}

.donate-link {
  font-size: 18px;
  font-weight: 400;
  color: var(--orange);
}

.donate-link:hover {
  color: var(--orange-dark);
}

.donate-options + .cta-section {
  padding-top: 56px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /* Static, wrapped logo grid instead of the scrolling strip */
  .logo-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 4px 24px;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .play-btn::before {
    animation: none;
  }
}

/* =========================================================
   Responsive
   ========================================================= */

/* Large tablets / small laptops */
@media (max-width: 1100px) {
  .nav-list {
    gap: 24px;
  }

  .quote-card {
    right: 16px;
  }
}

/* Tablets — mobile menu kicks in */
@media (max-width: 991px) {
  :root {
    --header-h: 68px;
  }

  .section {
    padding: 80px 0;
  }

  .mission {
    padding: 100px 0;
  }

  /* backdrop-filter would trap the fixed drawer inside the header */
  .site-header {
    background: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-donate {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding: calc(var(--header-h) + 20px) 28px 30px;
    background: var(--white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, .1);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 95;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-link {
    display: flex;
    padding: 16px 0;
    font-size: 16px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-donate-mobile {
    display: inline-flex;
  }

  .menu-toggle {
    position: relative;
    z-index: 96;
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .hero-media {
    position: relative;
    width: 100%;
    height: 420px;
  }

  .hero-media::before {
    background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 40%);
  }

  .hero-content {
    flex-basis: 100%;
    padding: 10px 0 60px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }

  .section-head-text {
    flex-basis: auto;
    max-width: 560px;
  }

  .stat {
    flex: 1 1 50%;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .stories-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .stories-content {
    max-width: 100%;
    flex-basis: auto;
  }

  .stories-media {
    flex-basis: auto;
  }

  .video-frame {
    aspect-ratio: 16 / 9;
  }

  .cta-box {
    flex-direction: column;
    padding: 50px 40px;
  }

  .cta-shape {
    left: auto;
    right: -30px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 22px;
  }

  /* Dropdown becomes an inline submenu in the drawer */
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 12px 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
    transform: none;
  }

  .page-hero {
    padding: calc(var(--header-h) + 60px) 0 70px;
  }

  .page-hero-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .page-hero-content,
  .page-hero-media {
    flex-basis: auto;
    max-width: 100%;
  }

  .page-hero-tagline {
    margin-top: 24px;
  }

  .event-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .about-banner {
    min-height: 520px;
  }

  .values-head {
    margin-bottom: 50px;
  }

  .value-item {
    flex-basis: calc((100% - 30px) / 2);
  }

  .faq-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .faq-media,
  .faq-content {
    flex-basis: auto;
  }

  .faq-media img {
    aspect-ratio: 16 / 10;
  }

  .page-hero-center {
    padding: calc(var(--header-h) + 60px) 0 60px;
  }

  .leader-intro-inner,
  .founder-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .leader-intro-content,
  .leader-quote,
  .founder-media,
  .founder-content {
    flex-basis: auto;
    max-width: 100%;
  }

  .member-grid {
    gap: 40px 24px;
  }

  .volunteer-hero {
    padding: calc(var(--header-h) + 70px) 0 70px;
  }

  .benefits-inner,
  .volunteer-form-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .benefits-media,
  .benefit-list,
  .volunteer-form-content,
  .form-card {
    flex-basis: auto;
    max-width: 100%;
  }

  .benefits-media img {
    aspect-ratio: 16 / 10;
  }

  .contact-section {
    padding: calc(var(--header-h) + 50px) 0 70px;
  }

  .partners-hero {
    padding: calc(var(--header-h) + 70px) 0 70px;
  }

  .partner-cta-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .partner-cta-content,
  .partner-cta-card {
    flex-basis: auto;
    max-width: 100%;
  }

  .logo-track {
    gap: 24px;
  }

  @keyframes marquee {
    to {
      transform: translateX(calc(-50% - 12px));
    }
  }

  .contact-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 44px;
  }

  .contact-info,
  .contact-form-card {
    flex-basis: auto;
    max-width: 100%;
  }

  .contact-form-card {
    padding: 40px 24px;
  }

  .handbook-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding-bottom: 80px;
  }

  .handbook-toc {
    position: static;
    flex-basis: auto;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  .handbook-section {
    padding: 48px 0;
  }

  .handbook-panel {
    padding: 32px 26px;
  }

  .hb-steps li {
    gap: 24px;
  }

  .member-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .team-grid .member-card {
    flex-basis: calc((100% - 30px) / 2);
  }

  .leadership + .cta-section {
    padding-top: 80px;
  }

  .about-cta {
    padding-top: 80px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 64px 0;
  }

  .mission {
    padding: 72px 0;
  }

  .hero-media {
    height: 300px;
  }

  .hero-content .btn {
    width: 100%;
  }

  .pillar-card,
  .connect-card,
  .way-card {
    flex-basis: 100%;
  }

  .stat {
    padding: 24px 16px;
  }

  .quote-card {
    position: relative;
    right: auto;
    width: auto;
    margin: -50px 16px 0;
  }

  .stories-media {
    padding-bottom: 0;
  }

  .play-btn {
    width: 58px;
    height: 58px;
  }

  .cta-section {
    padding-bottom: 64px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-box .btn {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .event-card {
    flex-basis: 100%;
  }

  .event-tab {
    padding: 10px 8px;
    font-size: 13px;
  }

  .about-banner {
    min-height: 420px;
    padding: 72px 0;
  }

  .value-item {
    flex-basis: 100%;
  }

  .member-card {
    flex-basis: 100%;
  }

  .team-grid .member-card {
    flex-basis: 100%;
  }

  .donate-hero .page-hero-text {
    font-size: 16px;
  }

  .donate-card {
    flex-basis: 100%;
    padding: 28px 20px 22px;
  }

  .donate-cheque {
    flex-direction: column;
    gap: 18px;
  }

  .donate-card > .btn {
    width: 100%;
  }

  .leadership + .cta-section {
    padding-top: 64px;
  }

  .benefit-list li {
    gap: 16px;
    padding: 16px 0;
    font-size: 16px;
  }

  .handbook-callout {
    padding: 24px 22px;
  }

  .partners-hero .page-hero-text {
    font-size: 16px;
  }

  .partner-card {
    width: 124px;
    height: 144px;
    padding: 20px 12px;
  }

  .partner-cta-card {
    padding: 28px 22px;
  }

  .contact-intro {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .contact-form-card {
    padding: 28px 16px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .handbook-panel {
    padding: 26px 18px;
  }

  .hb-steps li {
    align-items: baseline;
    gap: 16px;
    padding: 20px 0;
  }

  .hb-steps h3 {
    font-size: 19px;
  }

  .hb-accordion .faq-item summary {
    font-size: 17px;
  }

  .hb-accordion-boxed .faq-item {
    padding: 0 14px;
  }

  .form-card {
    padding: 14px;
  }

  .form-embed {
    min-height: 520px;
  }

  .member-card h3,
  .founder-content h3 {
    font-size: 22px;
  }

  .faq-item p {
    padding-left: 0;
  }

  .about-cta {
    padding-top: 64px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .stat {
    flex-basis: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .header-actions {
    gap: 8px;
  }
}