/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:       #1E90FF;
  --blue-dark:  #1265cc;
  --blue-light: #e8f4ff;
  --black:      #111111;
  --white:      #ffffff;
  --linecolor:  #b4b4b4;
  --border:     1.5px solid var(--linecolor);
  --header-h:   80px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', Arial, sans-serif;
}

html, body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  scroll-behavior: smooth;
}

/* Offset anchor targets so sticky header doesn't cover them */
[id] {
  scroll-margin-top: var(--header-h);
}

/* Subtle grid overlay on the body background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(71, 71, 71, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(80, 80, 80, 0.045) 1px, transparent 1px);
  background-size: 30px 30px;
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }


/* ============================================================
   SPLASH SCREEN — white, editorial, grid texture, progress bar
   ============================================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: clip-path 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0s;
  clip-path: inset(0 0 0% 0);
}

.splash.is-done {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}

/* ── Subtle grid texture ── */
.splash-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Radial vignette — subtle fade toward edges */
.splash-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 75% at 50% 50%, transparent 45%, rgba(255,255,255,0.85) 100%);
}

/* ── Corner bracket marks ── */
.splash-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0;
  animation: cornerFadeIn 0.5s ease 0.1s forwards;
}
@keyframes cornerFadeIn { to { opacity: 1; } }

.splash-corner--tl { top: 32px; left: 32px; border-top: 1.5px solid rgba(0,0,0,0.18); border-left: 1.5px solid rgba(0,0,0,0.18); }
.splash-corner--tr { top: 32px; right: 32px; border-top: 1.5px solid rgba(0,0,0,0.18); border-right: 1.5px solid rgba(0,0,0,0.18); }
.splash-corner--bl { bottom: 52px; left: 32px; border-bottom: 1.5px solid rgba(0,0,0,0.18); border-left: 1.5px solid rgba(0,0,0,0.18); }
.splash-corner--br { bottom: 52px; right: 32px; border-bottom: 1.5px solid rgba(0,0,0,0.18); border-right: 1.5px solid rgba(0,0,0,0.18); }

/* ── Top meta bar ── */
.splash-meta {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 64px;
  opacity: 0;
  animation: splashMetaIn 0.6s ease 0.15s forwards;
}
@keyframes splashMetaIn { to { opacity: 1; } }

.splash-meta-left,
.splash-meta-right {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

/* ── Center content ── */
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

/* ── Acronym rows ── */
.splash-acronym {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.splash-row {
  display: flex;
  align-items: baseline;
  gap: 0;
  overflow: hidden;
  line-height: 1;
}

/* Bold blue letter */
.splash-letter {
  font-family: 'Barlow Condensed', Arial Narrow, sans-serif;
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 0.95;
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

/* Expanding word — slides in from left, dark */
.splash-expand {
  font-family: 'Barlow Condensed', Arial Narrow, sans-serif;
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  font-weight: 700;
  font-style: normal;
  color: var(--black);
  line-height: 0.95;
  display: inline-block;
  opacity: 0;
  transform: translateX(-32px);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* Row 1 — Y */
#splashRow1 .splash-letter  { animation: splashLetterIn 0.55s cubic-bezier(0.16,1,0.3,1) 0.25s forwards; }
#splashRow1 .splash-expand  { animation: splashExpandIn 0.65s cubic-bezier(0.16,1,0.3,1) 0.5s forwards; }

/* Row 2 — E */
#splashRow2 .splash-letter  { animation: splashLetterIn 0.55s cubic-bezier(0.16,1,0.3,1) 0.7s forwards; }
#splashRow2 .splash-expand  { animation: splashExpandIn 0.65s cubic-bezier(0.16,1,0.3,1) 0.95s forwards; }

/* Row 3 — S */
#splashRow3 .splash-letter  { animation: splashLetterIn 0.55s cubic-bezier(0.16,1,0.3,1) 1.15s forwards; }
#splashRow3 .splash-expand  { animation: splashExpandIn 0.65s cubic-bezier(0.16,1,0.3,1) 1.4s forwards; }

@keyframes splashLetterIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes splashExpandIn {
  to { opacity: 1; transform: translateX(0); }
}

/* ── Divider line ── */
.splash-divider {
  width: 0;
  height: 1px;
  background: rgba(0,0,0,0.14);
  margin: 28px 0 24px;
  animation: splashDividerIn 0.7s ease 1.75s forwards;
}
@keyframes splashDividerIn {
  to { width: clamp(200px, 30vw, 420px); }
}

/* ── Tagline ── */
.splash-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  opacity: 0;
  animation: splashTagIn 0.8s ease 2.05s forwards;
}

@keyframes splashTagIn {
  to { opacity: 1; }
}

/* ── Bottom progress bar ── */
.splash-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0,0,0,0.07);
}

.splash-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--blue);
  animation: splashProgressIn 2.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

@keyframes splashProgressIn {
  0%   { width: 0%; }
  60%  { width: 72%; }
  100% { width: 100%; }
}


/* ============================================================
   PAGE WRAPPER
   The whole page content is inset — white margin left & right.
   This is what creates those side spaces in the UI.
   ============================================================ */
.page-wrap {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}


/* ============================================================
   HEADER — transparent over hero, frosted-glass nav pill
   ============================================================ */
.site-header {
  display: flex;
  height: var(--header-h);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  justify-content: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header-center {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  padding: 0 40px;
}

/* ── Logo: two versions swap on state ── */
.header-logo a { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-img--white { display: block; }
.logo-img--dark  { display: none;  }

/* ── Over-hero: transparent header ── */
.site-header.over-hero { background: transparent; }

.site-header.over-hero .header-nav a       { color: rgba(255,255,255,0.9); }
.site-header.over-hero .header-nav a:hover { color: var(--white); opacity: 1; }
.site-header.over-hero .header-util-link   { color: rgba(255,255,255,0.8); }
.site-header.over-hero .header-donate-btn  {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header.over-hero .mobile-toggle span { background: var(--white); }

/* ── Scrolled: frosted white ── */
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.08);
}

.site-header.scrolled .logo-img--white { display: none;  }
.site-header.scrolled .logo-img--dark  { display: block; }

.site-header.scrolled .header-nav a       { color: var(--black); }
.site-header.scrolled .header-nav a:hover { color: var(--black); opacity: 0.65; }
.site-header.scrolled .header-util-link   { color: var(--black); }
.site-header.scrolled .header-donate-btn  {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  backdrop-filter: none;
}
.site-header.scrolled .mobile-toggle span  { background: var(--black); }
.site-header.scrolled .header-nav-pill {
  background: rgba(230,230,230,0.7);
  border-color: rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.site-header.scrolled .header-nav-pill a { color: var(--black); }

/* ── Logo ── */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 32px;
}

/* ── Primary nav — frosted glass pill ── */
.header-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.header-nav-pill {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  padding: 0 6px;
  transition: background 0.4s, border-color 0.4s;
}

.header-nav-pill ul {
  display: flex;
  gap: 2px;
  list-style: none;
  padding: 5px 0;
}

.header-nav a {
  display: block;
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 7px 15px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.header-nav a:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

/* ── Right util ── */
.header-util {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: 32px;
}

.header-util-link {
  font-size: 0.83rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: opacity 0.2s;
}
.header-util-link:hover { opacity: 0.6; }

.header-donate-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  padding: 8px 20px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.header-donate-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ── Mobile toggle ── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

/* Hamburger → X animation */
.mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-drawer {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px 28px 40px;
  /* Hidden by default */
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.mobile-drawer.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.2s;
  letter-spacing: 0.01em;
}

.mobile-nav a:hover {
  color: var(--white);
  padding-left: 8px;
}

.mobile-donate-btn {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 28px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  border: none;
  border-radius: 100px;
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.mobile-donate-btn:hover {
  background: var(--blue);
  color: var(--white);
}


/* ============================================================
   RESPONSIVE — page-wrap + header
   ============================================================ */
@media (max-width: 1400px) { .page-wrap { max-width:100%; margin: 0 80px; } }
@media (max-width: 1100px) {
  .page-wrap { margin: 0 60px; }
  .header-nav-pill ul { gap: 0; }
  .header-nav a { padding: 7px 11px; font-size: 0.79rem; }
}
@media (max-width: 900px) {
  .header-nav  { display: none; }
  .header-util { display: none; }
  .mobile-toggle { display: flex; }
  .site-header-center { padding: 0 20px; }
}
@media (max-width: 768px) {
  .page-wrap { margin: 0 16px; }
}

/* ============================================================
   HERO — full-screen, heading bottom-left, two pill CTAs
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: calc(-1 * var(--header-h));
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Dark gradient + blur overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,   rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 55%),
    linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 55%),
    rgba(0,0,0,0.28);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

/* SVG lines */
.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hl {
  stroke: var(--linecolor);
  fill: none;
  opacity: 0;
}

/* ── Vertical rule — draws top to bottom ── */
.hl-vr {
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  opacity: 1;
  animation: drawDown 1.2s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

/* ── Horizontal top rule ── */
.hl-hr-top {
  stroke-width: 0.8;
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  opacity: 1;
  animation: drawDown 1.0s cubic-bezier(0.16,1,0.3,1) 0.8s both;
}

/* ── Horizontal bottom partial ── */
.hl-hr-bot {
  stroke-width: 0.8;
  stroke-dasharray: 320;
  stroke-dashoffset: -320;
  opacity: 1;
  animation: drawUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.0s both;
}

/* ── Tick crossing the vertical ── */
.hl-tick {
  stroke-width: 0.8;
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  opacity: 1;
  animation: drawDown 0.5s cubic-bezier(0.34,1.56,0.64,1) 1.3s both;
}

/* ── Large circle ── */
.hl-circle {
  stroke-width: 0.7;
  stroke-dasharray: 1700;
  stroke-dashoffset: 1700;
  opacity: 1;
  animation: drawDown 1.8s cubic-bezier(0.4,0,0.2,1) 0.4s both;
}

/* ── Small circle ── */
.hl-circle-sm {
  stroke-width: 0.5;
  stroke-dasharray: 1050;
  stroke-dashoffset: 1050;
  opacity: 1;
  animation: drawDown 1.5s cubic-bezier(0.4,0,0.2,1) 0.7s both;
}

/* ── Tick marks ── */
.hl-tm1, .hl-tm2, .hl-tm3 {
  stroke-width: 1;
  stroke-dasharray: 12;
  stroke-dashoffset: 12;
  opacity: 1;
}
.hl-tm1 { animation: drawDown 0.3s ease 1.4s both; }
.hl-tm2 { animation: drawDown 0.3s ease 1.55s both; }
.hl-tm3 { animation: drawDown 0.3s ease 1.7s both; }

/* ── Corner notch ── */
.hl-notch {
  stroke-width: 1;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  opacity: 1;
  animation: drawDown 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.05s both;
}

@keyframes drawDown {
  from { stroke-dashoffset: 9999; }
  to   { stroke-dashoffset: 0; }
}
@keyframes drawUp {
  from { stroke-dashoffset: -320; }
  to   { stroke-dashoffset: 0; }
}
@keyframes hlFade { from { opacity:0; } to { opacity:1; } }
@keyframes drawIn { from { stroke-dashoffset:90; } to { stroke-dashoffset:0; } }

/* Content layer */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 56px 64px;
  gap: 40px;
}

/* ── Left column ── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 60%;
  flex-shrink: 0;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-tagline-wrap {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.95s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero-tagline em {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 420px;
  opacity: 0;
  animation: fadeUp 0.95s cubic-bezier(0.16,1,0.3,1) 0.7s forwards;
}

/* CTA row */
.hero-cta-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.95s cubic-bezier(0.16,1,0.3,1) 0.9s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 100px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.hero-cta--fill {
  background: var(--white);
  border: 1.5px solid var(--white);
  color: var(--black);
}
.hero-cta--fill:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.hero-cta--outline {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-cta--outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--white);
}

/* ── Right column — staggered pill tags ── */
.hero-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 6px;
  opacity: 0;
  animation: fadeUp 0.95s cubic-bezier(0.16,1,0.3,1) 1.0s forwards;
  width: 40%;
  flex-shrink: 0;
}

.hero-tags-row {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  /* No padding offsets — rows grow naturally leftward as more pills are added */
}

.hero-tag {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 8px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  cursor: default;
  transition: background 0.2s, border-color 0.2s;
}

.hero-tag:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive — hero ── */
@media (max-width: 1000px) {
  .hero-content { padding: 0 32px 52px; gap: 24px; }
  .hero-tagline { font-size: 3rem; }
}
@media (max-width: 700px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 20px 40px;
    gap: 20px;
  }
  .hero-tags    { display: none; }
  .hero-left    { width: 100%; }
  .hero-tagline { font-size: 2.2rem; }
  .hero-sub     { font-size: 0.82rem; }
  .hero-cta     { padding: 11px 20px; font-size: 0.8rem; }
}

/* ============================================================
   ABOUT ALT (about2) — new layout above original about
   Left: sticky label + headline  |  Right: text + 2 images + CTA
   ============================================================ */
.about2 {
  display: grid;
  grid-template-columns: 380px 1fr;
  border-top: var(--border);
  border-left: var(--border);
  border-right: var(--border);
  min-height: 600px;
}

/* Left column — sticky label + stacked heading */
.about2-left {
  border-right: var(--border);
  padding: 56px 40px 56px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: var(--header-h);
  align-self: start;
}

.about2-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
}

.about2-heading {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.0;
  color: var(--black);
}

.about2-heading span {
  color: var(--linecolor); /* second line lighter, like the UI */
}

/* Right column */
.about2-right {
  padding: 56px 56px 64px 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Intro text block */
.about2-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

.about2-intro-lead {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--black);
}

.about2-intro-body {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: #000000;
}

/* Two images — side by side, different heights */
.about2-imgs {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
}

.about2-img-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about2-img-wrap:first-child {
  border-right: var(--border);
  padding-right: 24px;
}

.about2-img-wrap:last-child {
  padding-left: 24px;
  padding-top: 48px; /* offset — second image starts lower, like the UI */
}

.about2-img-wrap img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.about2-img-wrap:first-child img { height: 340px; }
.about2-img-wrap:last-child  img { height: 280px; }

.about2-img-caption {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #aaa;
}

/* Closing body copy */
.about2-body-sm {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: #000000;
  max-width: 560px;
}

/* CTA — arrow box + label */
.about2-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.04em;
  transition: gap 0.2s, color 0.2s;
  width: fit-content;
}

.about2-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--black);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.about2-cta:hover { gap: 20px; color: var(--blue); }
.about2-cta:hover .about2-cta-arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
  .about2 { grid-template-columns: 280px 1fr; }
  .about2-heading { font-size: 3rem; }
}

@media (max-width: 768px) {
  .about2 { grid-template-columns: 1fr; }

  .about2-left {
    position: static;
    border-right: none;
    border-bottom: var(--border);
    padding: 40px 24px 32px;
  }

  .about2-heading { font-size: 3.2rem; }

  .about2-right { padding: 40px 24px 48px; }

  .about2-imgs { grid-template-columns: 1fr 1fr; }

  .about2-img-wrap:first-child { padding-right: 12px; }
  .about2-img-wrap:last-child  { padding-left: 12px; padding-top: 32px; }

  .about2-img-wrap:first-child img { height: 240px; }
  .about2-img-wrap:last-child  img { height: 200px; }
}

@media (max-width: 480px) {
  .about2-imgs { grid-template-columns: 1fr; gap: 0; }

  .about2-img-wrap:first-child { padding-right: 0; border-right: none; border-bottom: var(--border); padding-bottom: 24px; }
  .about2-img-wrap:last-child  { padding-left: 0; padding-top: 24px; }

  .about2-img-wrap:first-child img,
  .about2-img-wrap:last-child  img { height: 220px; }
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  width: 100%;
  background: var(--white);
}

/* --- Top: label + heading -------------------------------- */
.about-top {
  padding: 72px 27px 48px 30px;
  border-bottom: 1.5px solid var(--linecolor);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left:  1.5px solid var(--linecolor);
  border-right: 1.5px solid var(--linecolor);
}

.about-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.about-heading {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  max-width: 640px;
}

/* --- Split panel ----------------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 400px;
  border-left:  1.5px solid var(--linecolor);
  border-right: 1.5px solid var(--linecolor);
}

/* --- Left colored column --------------------------------- */
.about-left {
  /* background: var(--blue); */
  position: relative;
}

.about-img-wrap {
  position: absolute;
  bottom: 0;
  left: 63%;
  transform: translateX(-50%);
  width: 279px;
  z-index: 2;
}

.about-img-wrap img,
.about-img-wrap video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* --- Right: content area --------------------------------- */
.about-right {
  border-left: 1.5px solid var(--linecolor);
  border-bottom: 1.5px solid var(--linecolor);
  padding: 30px 42px 30px 109px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  position: relative;
}

/* Meta — established date + location */
.about-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-meta-item {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

.about-meta-sep {
  color: var(--linecolor);
}

/* Quote mark */
.about-quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--linecolor);
  display: block;
  margin-bottom: -12px;
}

/* Quote text */
.about-quote {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
  max-width: 580px;
  font-style: normal;
}

/* Focus pillars — tag chips */
.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-pillar {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 5px 12px;
}

/* Footer row — CTA + reg number */
.about-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--linecolor);
  margin-top: 4px;
}

.about-cta {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.about-cta:hover {
  color: var(--blue);
}

.about-reg {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: #aaa;
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE — about
   ============================================================ */
@media (max-width: 900px) {
  .about-heading { font-size: 2.2rem; }
  .about-split { grid-template-columns: 160px 1fr; }
  .about-right { padding: 40px 32px 44px 100px; }
  .about-img-wrap { width: 190px; }
}

@media (max-width: 640px) {
  .about-split { grid-template-columns: 1fr; }
  .about-left { height: 260px; }
  .about-img-wrap {
    width: 100%;
    left: 0px;
    transform: none;
  }
  .about-img-wrap img,
.about-img-wrap video {
  height: 262px;
}

  .about-right {
    padding: 40px 24px 44px;
    border-left: none;
    border-top: 1.5px solid var(--linecolor);
  }
  .about-heading { font-size: 1.8rem; }
  .about-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
}


/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
}


/* ============================================================
   PROGRAMS / WHAT WE DO
   WORK SHOWCASE — split panel with horizontal image scroll
   ============================================================ */

.work {
  border-top: var(--border);
  border-left: var(--border);
  border-right: var(--border);
}

.work-wrap {
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 600px;
}

/* ── LEFT PANEL ── */
.work-left {
  display: flex;
  flex-direction: column;
  border-right: var(--border);
  padding: 52px 36px 40px 48px;
  gap: 36px;
  justify-content: space-between;
}

.work-left-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.work-heading {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.12;
  color: var(--black);
}

.work-sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: #aaa;
}

/* Nav list — vertical, full click area */
.work-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.work-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 16px;
  cursor: pointer;
  border-top: 1px solid #eee;
  position: relative;
  transition: background 0.2s, padding-left 0.35s cubic-bezier(0.16,1,0.3,1);
}

.work-nav-item:last-child {
  border-bottom: 1px solid #eee;
}

.work-nav-item:hover {
  background: #f8faff;
}

/* Active indicator — left blue bar */
.work-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--blue);
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1);
}

.work-nav-item.is-active::before {
  width: 4px;
}

.work-nav-item.is-active {
  padding-left: 24px;
  background: #f0f7ff;
}

.work-nav-num {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue);
  opacity: 0.6;
  min-width: 22px;
  transition: opacity 0.2s;
}

.work-nav-item.is-active .work-nav-num {
  opacity: 1;
}

.work-nav-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: #666;
  transition: color 0.2s;
}

.work-nav-item.is-active .work-nav-label {
  color: var(--black);
  font-weight: 500;
}

/* ── RIGHT PANEL ── */
.work-right {
  position: relative;
  overflow: hidden;
  background: #fafbfc;
  min-height: 600px;
}

.work-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}

.work-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* ── Image section: Swiper carousel ── */
.work-panel-images {
  position: relative;
  height: 465px;
  background: #f5f5f5;
  flex-shrink: 0;
}

.work-panel-images .swiper {
  width: 100%;
  height: 100%;
}

.work-panel-images .swiper-slide {
  overflow: hidden;
}

.work-panel-images .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pagination dots — white on image */
.work-panel-images .swiper-pagination-bullet {
  background: rgba(255,255,255,0.6);
  opacity: 1;
  width: 9px;
  height: 9px;
  transition: background 0.3s, transform 0.3s;
}

.work-panel-images .swiper-pagination-bullet-active {
  background: var(--blue);
  transform: scale(1.3);
}

/* Navigation arrows */
.work-panel-images .swiper-button-next,
.work-panel-images .swiper-button-prev {
  color: var(--white);
  background: rgba(0,0,0,0.35);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.work-panel-images .swiper-button-next::after,
.work-panel-images .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 700;
}

/* Counter fraction */
.work-panel-images .swiper-pagination-fraction {
  position: absolute;
  top: 14px;
  right: 16px;
  bottom: auto;
  left: auto;
  width: auto;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 4px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* Info bar at bottom — 3-column: desc | impact | stat */
.work-panel-info {
  padding: 28px 32px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 32px;
  align-items: start;
  border-top: var(--border);
  background: var(--white);
}

.work-panel-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: 8px;
  display: block;
}

.work-panel-text {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
}

/* Impact highlights column */
.work-panel-impact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.work-panel-impact-title {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.work-panel-impact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-panel-impact li {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  color: #444;
  padding-left: 14px;
  position: relative;
}

.work-panel-impact li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

/* Big stat callout */
.work-panel-stat {
  background: var(--blue);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 160px;
}

.work-panel-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
}

.work-panel-stat-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 6px;
  opacity: 0.85;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .work-wrap { grid-template-columns: 36% 1fr; }
  .work-left { padding: 44px 28px 36px 36px; }
  .work-heading { font-size: 2rem; }
}

@media (max-width: 900px) {
  .work-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .work-left {
    border-right: none;
    border-bottom: var(--border);
    padding: 40px 24px 32px;
    gap: 24px;
  }
  .work-right {
    min-height: 400px;
  }
  .work-panel {
    position: absolute;
  }
  .work-panel.is-active {
    position: relative;
  }
  .work-panel-images { height: 240px; }
  .work-panel-slides { width: 92%; height: 80%; }
  .work-panel-info { grid-template-columns: 1fr; gap: 20px; padding: 20px 24px; }
  .work-panel-stat { flex-direction: row; gap: 12px; min-width: 0; padding: 16px 20px; }
}

@media (max-width: 480px) {
  .work-left { padding: 32px 16px 24px; }
  .work-heading { font-size: 1.7rem; }
  .work-nav-item { padding: 14px 12px; gap: 12px; }
  .work-nav-label { font-size: 0.8rem; }
  .work-panel-images { min-height: 260px; }
  .work-panel-slides { width: 94%; height: 78%; }
}

/* ============================================================
   SHOWCASE — hero inside col A, col E fills full height
   ============================================================ */
.showcase {
  position: relative;
  padding: 72px 0px 80px;
  background: var(--white);
  border-top: 1.5px solid var(--linecolor);
  overflow: hidden;
}

/* ── Mosaic: 5-col grid, rows sum to a fixed total height ── */
.showcase-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1.1fr 1.1fr 0.95fr;
  grid-template-rows: 220px 200px;   /* two explicit rows = 420px total */
  gap: 12px;
  align-items: start;
  width: 100%;
}

.showcase-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── All photos share base styles ───────────────────────── */
.showcase-photo {
  overflow: hidden;
  border-radius: 12px;
  background: #e0e0e0;
  flex-shrink: 0;
}

.showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.showcase-photo:hover img {
  transform: scale(1.06);
}

/* ── Column A: hero text on top, one photo below ─────────── */
.showcase-col--a {
  /* spans both grid rows via the flex column */
}

.showcase-hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 4px;
}

.showcase-heading {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -0.01em;
}

.showcase-sub {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
}

.showcase-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black);
  background: var(--white);
  padding: 9px 20px;
  border: 1.5px solid var(--black);
  border-radius: 100px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}

.showcase-cta:hover {
  background: var(--black);
  color: var(--white);
}

/* Photo below hero in col A */
.showcase-photo--tall-a {
  height: 307px;
}

/* ── Column B: tall + small ──────────────────────────────── */
.showcase-photo--tall-b {
  height: 260px;
}

.showcase-photo--sm {
  height: 152px;
}

/* ── Column C: two equal mediums ────────────────────────── */
.showcase-photo--med {
  height: 206px;
}

/* ── Column D: arrow list top + square photo bottom ─────── */
.showcase-col--d {
  justify-content: space-between;
}

.showcase-list {
  list-style: none;
  padding: 0;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-list li {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
}

.showcase-photo--sq {
  height: 294px;
}

/* ── Column E: 3 equal stacked photos filling the full grid height ── */
.showcase-col--e {
  /* flex column + flex:1 on each photo = equal thirds of total height */
  height: calc(220px + 200px + 12px); /* matches 2 grid rows + gap */
}

.showcase-photo--stack {
  flex: 1;                 /* each of the 3 takes equal share */
  min-height: 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .showcase-mosaic {
    grid-template-columns: 1.2fr 1.1fr 1.1fr 1.1fr 0.95fr;
    gap: 10px;
  }
  .showcase-heading { font-size: 2.4rem; }
}

@media (max-width: 900px) {
  .showcase-mosaic {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
  }

  .showcase-col--d,
  .showcase-col--e { display: none; }

  .showcase-photo--tall-a  { height: 160px; }
  .showcase-photo--tall-b  { height: 240px; }
  .showcase-photo--sm      { height: 120px; }
  .showcase-photo--med     { height: 180px; }

  .showcase-col--e { height: auto; }
}

@media (max-width: 600px) {
  .showcase { padding: 48px 16px 56px; }
  .showcase-heading { font-size: 1.9rem; }

  .showcase-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .showcase-col--c { display: none; }

  .showcase-photo--tall-b { height: 200px; }
  .showcase-photo--sm     { height: 110px; }
}


/* ============================================================
   OUR PARTNERS
   ============================================================ */
.partners {
  border-top: var(--border);
  border-left: var(--border);
  border-right: var(--border);
}

/* Top row: label+heading left | descriptor right */
.partners-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--border);
}

.partners-top-left {
  padding: 48px 48px 48px 32px;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partners-heading {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
}

.partners-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: #666;
  padding: 48px 48px 48px 48px;
  align-self: center;
  max-width: 480px;
}

/* Logo grid — 3 per row, each cell bordered */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.partners-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  border-right: var(--border);
  border-bottom: var(--border);
  min-height: 140px;
  transition: background 0.2s;
}

/* Remove right border on every 3rd cell */
.partners-logo-cell:nth-child(3n) {
  border-right: none;
}

/* Remove bottom border on last row */
.partners-logo-cell:nth-last-child(-n+3) {
  border-bottom: none;
}

.partners-logo-cell:hover {
  background: #fafafa;
}

/* Fixed box — every logo rendered identically */
.partners-logo-cell img {
  display: block;
  width: 120px;        /* fixed width — all logos same box */
  height: 60px;        /* fixed height */
  object-fit: contain; /* scales inside without cropping */
  object-position: center;
  /* filter: grayscale(100%); */
  opacity: 1;
  transition: filter 0.3s, opacity 0.3s;
}

.partners-logo-cell:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── Per-logo size overrides — adjust width/height freely ── */
.partner--tourism   img { width: 130px; height: 90px;  }
.partner--aranyak   img { width: 130px; height: 100px;  }
.partner--beti      img { width: 130px; height: 96px;  }
.partner--nasha     img { width: 130px; height: 75px;  }
.partner--women     img { width: 170px; height: 96px;  }
.partner--justice   img { width: 130px; height: 143px;  }
.partner--arnikeme  img { width: 130px; height: 96px;  }
.partner--kache     img { width: 130px; height: 96px;  }
.partner--anglong   img { width: 130px; height: 96px;  }
.partner--sankalp   img { width: 130px; height: 126px;  }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .partners-top {
    grid-template-columns: 1fr;
  }

  .partners-top-left {
    border-right: none;
    border-bottom: var(--border);
    padding: 36px 24px 32px;
  }

  .partners-desc {
    padding: 28px 24px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-logo-cell:nth-child(3n) {
    border-right: var(--border);
  }

  .partners-logo-cell:nth-child(2n) {
    border-right: none;
  }

  .partners-logo-cell:nth-last-child(-n+3) {
    border-bottom: var(--border);
  }

  .partners-logo-cell:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .partners-heading { font-size: 1.9rem; }
}


/* ============================================================
   MISSION BANNER — quote block, blue band
   ============================================================ */
.mission-banner {
  background: var(--blue);
  border-top: 1.5px solid var(--linecolor);
  padding: 72px 48px 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Large decorative opening quote mark */
.mission-banner-mark {
  font-family: var(--font-serif);
  font-size: 9rem;
  line-height: 0.75;
  color: rgba(255,255,255,0.18);
  display: block;
  margin-bottom: 16px;
  user-select: none;
}

.mission-banner-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  max-width: 820px;
  margin: 0;
  padding: 0;
  border: none;
}

.mission-banner-cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-style: normal;
  margin-top: 28px;
  text-align: right;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  align-self: flex-end;
  min-width: 260px;
}

@media (max-width: 768px) {
  .mission-banner { padding: 52px 28px 44px; }
  .mission-banner-mark { font-size: 6rem; }
  .mission-banner-cite { align-self: flex-end; min-width: 0; }
}

@media (max-width: 480px) {
  .mission-banner { padding: 40px 20px 36px; }
  .mission-banner-cite { font-size: 0.72rem; }
}

/* ============================================================
   SDG ALIGNMENT — full-bleed card layout
   ============================================================ */
.sdg {
  border-top: var(--border);
  border-left: var(--border);
  border-right: var(--border);
  padding: 64px 48px 72px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* ── Header row: label+heading LEFT, desc RIGHT ── */
.sdg-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: var(--border);
}

.sdg-header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sdg-heading {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  max-width: 460px;
}

.sdg-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: #666;
  max-width: 420px;
  align-self: end;
}

/* ── Cards grid: 4 across desktop ── */
.sdg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: var(--border);
}

.sdg-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 28px 36px;
  border-right: var(--border);
  border-top: var(--border);
  transition: background 0.25s;
  cursor: default;
}

.sdg-card:nth-child(4n + 1) { border-left: var(--border); }

.sdg-card:hover { background: #f7f9ff; }

.sdg-card-icon {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
}

.sdg-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.sdg-card:hover .sdg-card-icon img { transform: scale(1.08); }

.sdg-card-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
  flex: 1;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .sdg { padding: 52px 36px 60px; }
  .sdg-grid { grid-template-columns: repeat(3, 1fr); }
  .sdg-card:nth-child(4n + 1) { border-left: none; }
  .sdg-card:nth-child(3n + 1) { border-left: var(--border); }
}

@media (max-width: 900px) {
  .sdg { padding: 44px 24px 52px; gap: 36px; }
  .sdg-header { grid-template-columns: 1fr; gap: 16px; }
  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
  .sdg-card:nth-child(3n + 1) { border-left: none; }
  .sdg-card:nth-child(2n + 1) { border-left: var(--border); }
  .sdg-heading { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .sdg { padding: 36px 16px 44px; }
  .sdg-grid { grid-template-columns: 1fr; }
  .sdg-card { border-left: var(--border) !important; }
  .sdg-heading { font-size: 1.5rem; }
  .sdg-card-icon { width: 56px; height: 56px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  width: 100%;
  background: #f0f6ff;
}

/* Full-width image strip — parallax fixed background */
.footer-img {
  position: relative;
  height: 480px;
  overflow: hidden;
  background-image: url('../../sunset.jpeg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center 30%;
}

/* Hide the <img> tag — we're using CSS background instead */
.footer-img img {
  display: none;
}

.footer-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.40) 100%
  );
}

.footer-img-logo {
  position: absolute;
  bottom: 32px;
  left: 40px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

/* Footer body */
.footer-body {
  padding: 0 80px;
}

/* Large statement heading */
.footer-statement {
  padding: 64px 0 48px;
  border-bottom: 1.5px solid #ccc;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
  max-width: 800px;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 0 48px;
  gap: 32px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
}

.footer-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.7;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom-center {
  text-align: center;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.footer-bottom-right {
  text-align: right;
}

.footer-back-top {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-back-top:hover {
  color: var(--blue);
}


/* ============================================================
   RESPONSIVE — footer
   ============================================================ */
@media (max-width: 768px) {

  /* background-attachment: fixed breaks on iOS — fall back to scroll */
  .footer-img {
    background-attachment: scroll;
    background-position: center center;
    height: 320px;
  }

  .footer-body { padding: 0 24px; }
  .footer-heading { font-size: 1.6rem; }
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }
  .footer-bottom-center,
  .footer-bottom-right {
    text-align: left;
  }

  .section-heading { font-size: 2rem; }
}


/* ============================================================
   VIDEO SLIDES — heading tile lives INSIDE the scrolling track
   ============================================================ */

.vslides {
  position: relative;
}

.vslides-sticky {
  position: sticky;
  top: 0;
  height: 80vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
}

/* Track wrapper — full height, no padding, clips overflow */
.vslides-track-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-top: var(--border);

}

/* Horizontal track — JS drives translateX */
.vslides-track {
  display: flex;
  gap: 0;
  height: 100%;
  will-change: transform;
  align-items:flex-end;
  gap: 25px;
}

/* ── TITLE TILE — first item in the track, white, full height ── */
.vslide-title-card {
  flex-shrink: 0;
  width: 320px;
  height: 100%;
  background: var(--white);
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 36px 44px 36px;
  gap: 20px;
  position: relative;
}

/* Count sits top-left of the tile */
.vslide-title-count {
  position: absolute;
  top: 36px;
  left: 36px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.vslides-count-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
}

.vslides-count-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  line-height: 1.5;
}

.vslides-heading {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.05;
  color: var(--black);
}

.vslide-title-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.75;
  color: #777;
}

.vslides-head-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--black);
  width: fit-content;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}

.vslides-head-cta:hover {
  color: var(--blue);
  border-color: var(--blue);
  gap: 14px;
}

/* ── Individual media card ──────────────────────────────── */
.vslide-card {
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: #111;
  
}

.vslide-card[data-size="sm"]    { width: 278px; height: 346px; }
.vslide-card[data-size="md"]    { width: 300px; height: 420px; }
.vslide-card[data-size="lg"]    { width: 350px; height: 490px; }
.vslide-card[data-size="xl"]    { width: 360px; height: 520px; }
.vslide-card[data-size="extra"] { width: 400px; height: 380px; }

.vslide-card video,
.vslide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.vslide-card:hover video,
.vslide-card:hover img {
  transform: scale(1.04);
}

.vslide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 18px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vslide-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.vslide-meta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}


/* ============================================================
   RESPONSIVE — video slides
   ============================================================ */

@media (max-width: 900px) {
  .vslides { height: auto !important; }

  .vslides-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .vslides-track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
  }

  .vslides-track-wrap::-webkit-scrollbar { display: none; }

  .vslides-track {
    height: 420px;
    transform: none !important;
    will-change: auto;
  }

  /* Title tile shorter on mobile */
  .vslide-title-card {
    width: 260px;
    padding: 20px 24px 28px;
  }

  .vslide-title-count { top: 20px; left: 24px; }
  .vslides-heading { font-size: 2rem; }

  .vslide-card[data-size="sm"],
  .vslide-card[data-size="md"],
  .vslide-card[data-size="lg"],
  .vslide-card[data-size="xl"],
  .vslide-card[data-size="extra"] { height: 100%; }

  .vslide-card[data-size="sm"]    { width: 200px; }
  .vslide-card[data-size="md"]    { width: 260px; }
  .vslide-card[data-size="lg"]    { width: 300px; }
  .vslide-card[data-size="xl"]    { width: 340px; }
  .vslide-card[data-size="extra"] { width: 320px; }
}

@media (max-width: 480px) {
  .vslides-track { height: 340px; }

  .vslide-title-card {
    width: 220px;
    padding: 16px 18px 24px;
  }

  .vslide-title-count { top: 16px; left: 18px; }
  .vslides-heading { font-size: 1.6rem; }
  .vslides-count-num { font-size: 2.2rem; }

  .vslide-card[data-size="sm"]    { width: 160px; }
  .vslide-card[data-size="md"]    { width: 200px; }
  .vslide-card[data-size="lg"]    { width: 240px; }
  .vslide-card[data-size="xl"]    { width: 280px; }
  .vslide-card[data-size="extra"] { width: 260px; }
}


/* ============================================================
   CONTACT POPUP
   ============================================================ */
.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.contact-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.contact-popup-box {
  position: relative;
  background: var(--white);
  border-radius: 10px;
  padding: 44px 40px 36px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  text-align: center;
}

.contact-popup.is-open .contact-popup-box {
  transform: translateY(0) scale(1);
}

.contact-popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.contact-popup-close:hover { color: var(--black); }

.contact-popup-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}

.contact-popup-sub {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: #777;
  margin-bottom: 28px;
}

.contact-popup-email {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.contact-popup-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
}

.contact-popup-link {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-popup-link:hover { opacity: 0.7; }

.contact-popup-gmail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  background: #ea4335;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.contact-popup-gmail-btn:hover {
  background: #d33426;
  transform: translateY(-1px);
}
