/* =========================================================
   Reset & Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* =========================================================
   Tokens — Two-color system: navy + sand
   ========================================================= */
:root {
  /* Palette — only two colors */
  --sand:        #E0D5AF;
  --navy:        #00417C;
  --navy-soft:   #1A5A99;  /* slightly lighter navy for in-navy contrast */

  /* Text */
  --ink:           #00417C;
  --ink-soft:      rgba(0, 65, 124, 0.74);
  --ink-muted:     rgba(0, 65, 124, 0.55);
  --ink-faint:     rgba(0, 65, 124, 0.16);

  --light:         #E0D5AF;
  --light-soft:    rgba(224, 213, 175, 0.82);
  --light-muted:   rgba(224, 213, 175, 0.56);
  --light-faint:   rgba(224, 213, 175, 0.20);

  /* Lines */
  --line-light:   rgba(0, 65, 124, 0.16);
  --line-dark:    rgba(224, 213, 175, 0.22);

  /* Shadows */
  --shadow-sm:    0 1px 2px rgba(0, 65, 124, 0.05), 0 4px 12px rgba(0, 65, 124, 0.06);
  --shadow-md:    0 2px 6px rgba(0, 65, 124, 0.08), 0 10px 28px rgba(0, 65, 124, 0.07), 0 24px 48px rgba(0, 65, 124, 0.04);
  --shadow-lg:    0 4px 14px rgba(0, 65, 124, 0.10), 0 18px 44px rgba(0, 65, 124, 0.09), 0 36px 80px rgba(0, 65, 124, 0.06);
  --shadow-hover: 0 4px 12px rgba(0, 65, 124, 0.12), 0 18px 42px rgba(0, 65, 124, 0.12), 0 34px 70px rgba(0, 65, 124, 0.07);
  --shadow-dark:  0 4px 14px rgba(0, 0, 0, 0.22), 0 14px 40px rgba(0, 0, 0, 0.20);

  /* Type */
  --font-display: 'Fira Sans', system-ui, sans-serif;
  --font-body:    'Fira Sans', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-card:       clamp(18px, 1.8vw, 26px);
  --r-img:        clamp(12px, 1.2vw, 18px);
  --r-pill:       999px;

  /* Spacing */
  --frame:        clamp(12px, 1.4vw, 22px);
  --gap:          clamp(10px, 1vw, 16px);
  --pad-s-y:      clamp(52px, 5.4vw, 96px);
  --pad-s-x:      clamp(28px, 4vw, 88px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--sand);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding: var(--frame);
  min-height: 100vh;
  overflow-x: hidden;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
}

/* Subpages: full-bleed, no frame padding or inter-section gaps */
body.page-subpage {
  padding: 0;
  background: var(--navy);
}
body.page-subpage .layout {
  max-width: none;
  gap: 0;
}

/* =========================================================
   Layout
   ========================================================= */
.layout {
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.section {
  padding: var(--pad-s-y) var(--pad-s-x);
  position: relative;
}
.section--light { color: var(--ink); }

.section--dark {
  color: var(--light);
  position: relative;
  isolation: isolate;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--navy);
  z-index: -1;
}
.section--dark.is-last::before {
  bottom: calc(-1 * var(--frame));
}

/* =========================================================
   Glass Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  cursor: pointer;
}
button.btn { font-family: var(--font-body); border: none; }
.btn__arrow {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
}
.btn__arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.btn--accent {
  background: rgba(0, 65, 124, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 4px 14px rgba(0, 65, 124, 0.28),
    0 1px 3px rgba(0, 0, 0, 0.08);
}
.btn--accent:hover {
  background: rgba(0, 49, 96, 0.96);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 6px 20px rgba(0, 65, 124, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn--accent-lg {
  background: rgba(0, 65, 124, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 16px;
  padding: 20px 32px;
  gap: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 6px 20px rgba(0, 65, 124, 0.3);
}
.btn--accent-lg:hover {
  background: rgba(0, 49, 96, 0.98);
  transform: translateY(-1px);
}
.btn--accent-lg .btn__arrow { width: 18px; height: 18px; }
.btn--accent-lg .btn__arrow::before { width: 9px; height: 9px; }

/* Donate-large override on dark section: sand bg, navy text */
.section--dark .btn--accent-lg {
  background: var(--sand);
  color: var(--navy);
  border: 1px solid var(--sand);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.18);
}
.section--dark .btn--accent-lg:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 28px rgba(0, 0, 0, 0.22);
}

.btn--glass-light {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 65, 124, 0.14);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 2px 8px rgba(0, 65, 124, 0.06),
    0 1px 2px rgba(0, 65, 124, 0.04);
}
.btn--glass-light:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(0, 65, 124, 0.22);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 4px 14px rgba(0, 65, 124, 0.08);
}

.btn--glass-dark {
  background: rgba(224, 213, 175, 0.10);
  border: 1px solid rgba(224, 213, 175, 0.22);
  color: var(--light);
  box-shadow:
    inset 0 1px 0 rgba(224, 213, 175, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.14);
}
.btn--glass-dark:hover {
  background: rgba(224, 213, 175, 0.16);
  border-color: rgba(224, 213, 175, 0.32);
  transform: translateY(-1px);
}

.icon-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  flex-shrink: 0;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
}
.icon-btn--glass-dark {
  background: rgba(224, 213, 175, 0.10);
  border: 1px solid rgba(224, 213, 175, 0.22);
  color: var(--light);
  box-shadow: inset 0 1px 0 rgba(224, 213, 175, 0.15), 0 2px 8px rgba(0, 0, 0, 0.14);
}
.icon-btn--glass-dark:hover {
  background: rgba(224, 213, 175, 0.18);
  transform: scale(1.05);
}
.icon-btn--glass-light {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 65, 124, 0.16);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 2px 8px rgba(0, 65, 124, 0.07);
}
.icon-btn--glass-light:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.05);
}
.icon-btn--solid {
  background: rgba(224, 213, 175, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--navy);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.18);
}
.icon-btn--solid:hover {
  background: rgba(0, 65, 124, 0.92);
  color: #fff;
  transform: scale(1.05);
}
.icon-btn .arr {
  width: 9px; height: 9px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.icon-btn .arr--l { transform: rotate(-135deg); }
.icon-btn svg { width: 17px; height: 17px; fill: currentColor; }
.icon-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  transform: none;
}

/* =========================================================
   Header / Nav — Navy bg full-width
   ========================================================= */
.nav-wrap {
  padding: clamp(18px, 1.8vw, 28px) clamp(20px, 2vw, 32px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  isolation: isolate;
  color: var(--light);
}
.nav-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: -1;
}
/* Spacer pushes page content below the fixed header */
.nav-spacer {
  height: var(--nav-h, 132px);
  flex: 0 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1640px;
  margin: 0 auto;
}
.nav__brand {
  display: inline-flex;
  align-items: flex-start;
  color: var(--light);
  position: relative;
}
.nav__logo {
  width: auto;
  height: 96px;
  display: block;
}
.nav__logo img {
  height: 100%;
  width: auto;
  display: block;
}
.nav__brand-tm {
  font-size: 19px;
  font-weight: 600;
  color: var(--sand);
  opacity: 0.6;
  margin-left: 6px;
  margin-top: 10px;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
}
.nav__menu a {
  color: var(--light-soft);
  transition: color .2s ease;
}
.nav__menu a:hover { color: var(--light); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(224, 213, 175, 0.10);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(224, 213, 175, 0.22);
  display: grid;
  place-items: center;
  color: var(--light);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
  box-shadow: inset 0 1px 0 rgba(224, 213, 175, 0.18), 0 2px 8px rgba(0, 0, 0, 0.14);
}
.nav__social:hover {
  background: rgba(224, 213, 175, 0.20);
  border-color: rgba(224, 213, 175, 0.40);
  transform: translateY(-1px);
}
.nav__social svg { width: 17px; height: 17px; }
.nav__lang {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--light);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: rgba(224, 213, 175, 0.10);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(224, 213, 175, 0.22);
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color .2s ease, background .2s ease, transform .2s ease;
  box-shadow: inset 0 1px 0 rgba(224, 213, 175, 0.18), 0 2px 8px rgba(0, 0, 0, 0.12);
}
.nav__lang:hover {
  background: rgba(224, 213, 175, 0.20);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(224, 213, 175, 0.10);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 213, 175, 0.22);
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--light);
  position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top: 6px; }

/* Burger → X when menu open */
.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__burger.is-open span::after  { top: 0; transform: rotate(-45deg); }
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after { transition: transform .25s ease, top .25s ease, background .2s ease; }

/* Mobile menu overlay */
.nav__menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.nav__menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__menu-overlay a {
  font-family: var(--font-display);
  font-size: clamp(26px, 7vw, 40px);
  font-weight: 600;
  color: var(--sand);
  letter-spacing: -0.02em;
  padding: 12px 24px;
  transition: opacity .2s ease;
}
.nav__menu-overlay a:hover { opacity: 0.7; }
.nav__menu-overlay .nav__menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(224, 213, 175, 0.12);
  border: 1px solid rgba(224, 213, 175, 0.25);
  display: grid;
  place-items: center;
  color: var(--sand);
}
.nav__menu-overlay .nav__menu-close svg { width: 24px; height: 24px; }

.nav__menu-overlay .nav__menu-lang {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--sand);
  padding: 14px 32px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(224, 213, 175, 0.4);
}
.nav__menu-overlay .nav__menu-lang:hover { opacity: 0.85; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: clamp(20px, 2.4vw, 36px) clamp(28px, 4vw, 64px) clamp(40px, 4.5vw, 72px);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.4vw, 56px);
  align-items: center;
  min-height: 520px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.8vw, 28px);
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--ink);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(54px, 7.5vw, 116px);
  line-height: 0.94;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  opacity: 0.78;
}
.hero__tm {
  font-size: 0.26em;
  font-weight: 600;
  vertical-align: super;
  margin-left: 0.12em;
  color: var(--navy);
  opacity: 0.65;
  letter-spacing: 0;
}
.hero__lead {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.3vw, 21px);
  color: var(--ink);
  max-width: 44ch;
  line-height: 1.5;
  font-weight: 400;
}
.hero__points {
  display: grid;
  gap: 12px;
  max-width: 56ch;
}
.hero__points li {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.05vw, 16px);
  color: var(--ink-soft);
  line-height: 1.55;
  padding-left: 24px;
  position: relative;
}
.hero__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
}
.hero__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero__tag {
  font-family: var(--font-body);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 65, 124, 0.14);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.hero__tag--link {
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.hero__tag--link:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.hero__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero media — frame.webp */
.hero__media {
  position: relative;
  height: clamp(560px, 60vw, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__frame {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0, 65, 124, 0.18));
}

/* =========================================================
   Section heading
   ========================================================= */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(36px, 4vw, 56px);
  flex-wrap: wrap;
}
.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 78px);
  line-height: 0.98;
  font-weight: 500;
  max-width: 18ch;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.section--light .sec-head h2 { color: var(--navy); }
.section--dark  .sec-head h2 { color: var(--sand); }

.sec-head__count {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 12px;
}
.section--light .sec-head__count { color: var(--ink-muted); }
.section--dark  .sec-head__count { color: var(--light-muted); }
.section--light .sec-head__count span { color: var(--ink); }
.section--dark  .sec-head__count span { color: var(--sand); }

/* =========================================================
   ABOUT — text LEFT, photo slider RIGHT with progressive blur
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 4vw, 80px);
  align-items: stretch;
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.4vw, 36px);
}
.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.2vw, 92px);
  line-height: 0.98;
  color: var(--sand);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.about__para {
  padding-top: 22px;
  border-top: 1px solid rgba(224, 213, 175, 0.18);
}

.liqpay-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.liqpay-wrap #liqpay_checkout {
  width: 100%;
  max-width: 400px;
}
/* LiqPay renders its form inside a fixed-height iframe that does NOT scroll
   internally — so the iframe must be tall enough to show the entire form
   (incl. the Pay button at the very bottom). The whole modal then scrolls. */
.liqpay-wrap #liqpay_checkout iframe {
  width: 100% !important;
  height: 1150px !important;
  min-height: 1150px;
  border: 0;
}
.liqpay-loading,
.liqpay-error {
  text-align: center;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.6;
  padding: 40px 20px;
  opacity: 0.8;
}
.liqpay-error { opacity: 1; }

/* =========================================================
   DONATE PAGE — intro left, LiqPay widget right
   ========================================================= */
.donate-page {
  background: var(--sand);
}
.donate-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) clamp(22px, 4vw, 56px) clamp(60px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}
.donate-page__intro {
  position: sticky;
  top: 120px;
}
.donate-page__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 16px;
}
.donate-page__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}
.donate-page__lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 46ch;
}
.donate-page__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.donate-page__points li {
  position: relative;
  padding-left: 30px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.donate-page__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.donate-page__widget {
  background: #fff;
  border-radius: var(--r-card);
  padding: clamp(16px, 1.8vw, 28px);
  box-shadow: var(--shadow-sm);
}
.donate-page__widget .liqpay-wrap {
  margin-top: 0;
}
.donate-page__widget .liqpay-wrap #liqpay_checkout {
  max-width: 100%;
}
@media (max-width: 900px) {
  .donate-page__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .donate-page__intro {
    position: static;
    top: auto;
  }
}

.about__para p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--light-soft);
}
.about__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.about__visual {
  position: relative;
  height: 100%;
}
.about__slider {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-dark);
}
.about__track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  gap: 0;
}
.about__track::-webkit-scrollbar { display: none; }
.about__slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: center;
  background-size: cover;
  background-position: center;
  background-color: #1A2E3D;
  border-radius: var(--r-img);
  position: relative;
}

.about__nav-group {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.about__counter {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  padding: 9px 16px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* =========================================================
   MISSION — photo slider LEFT, text RIGHT
   ========================================================= */
.mission__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 4vw, 80px);
  align-items: center;
}
.mission__visual {
  position: relative;
}
.mission__photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.mission__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mission__text {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 32px);
}
.mission__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.mission__eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--navy);
  opacity: 0.5;
}
.mission__text h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.8vw, 80px);
  line-height: 0.98;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  max-width: 14ch;
}
.mission__copy p {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.mission__copy p + p { margin-top: 14px; }

/* =========================================================
   WHAT WE DO — checkerboard
   ========================================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1vw, 16px);
}
/* Desktop checkerboard: every cell gets an explicit order so photo cells
   form a diagonal. DOM is a flat img→text sequence per project (kept simple
   so the mobile layout can stack photo+title cleanly).
   Rows 2 & 4 invert each pair (text before image). */
.services__grid > .s-cell:nth-child(1)  { order: 1; }   /* img0  */
.services__grid > .s-cell:nth-child(2)  { order: 2; }   /* text0 */
.services__grid > .s-cell:nth-child(3)  { order: 3; }   /* img1  */
.services__grid > .s-cell:nth-child(4)  { order: 4; }   /* text1 */
.services__grid > .s-cell:nth-child(5)  { order: 6; }   /* img2  -> after text2 */
.services__grid > .s-cell:nth-child(6)  { order: 5; }   /* text2 */
.services__grid > .s-cell:nth-child(7)  { order: 8; }   /* img3  -> after text3 */
.services__grid > .s-cell:nth-child(8)  { order: 7; }   /* text3 */
.services__grid > .s-cell:nth-child(9)  { order: 9; }   /* img4  */
.services__grid > .s-cell:nth-child(10) { order: 10; }  /* text4 */
.services__grid > .s-cell:nth-child(11) { order: 11; }  /* img5  */
.services__grid > .s-cell:nth-child(12) { order: 12; }  /* text5 */
.services__grid > .s-cell:nth-child(13) { order: 14; }  /* img6  -> after text6 */
.services__grid > .s-cell:nth-child(14) { order: 13; }  /* text6 */
.services__grid > .s-cell:nth-child(15) { order: 16; }  /* img7  -> after text7 */
.services__grid > .s-cell:nth-child(16) { order: 15; }  /* text7 */
.s-cell {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}
.s-cell:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.s-cell--img { background: #B0A693; }
.s-cell--img .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
  background:
    repeating-linear-gradient(135deg,
      #C8BFA8 0 10px,
      #BCB39C 10px 20px);
}
.s-cell--img .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.s-cell--img .slide:not(:has(img))::after {
  content: "ФОТО";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(0, 65, 124, 0.34);
  font-weight: 500;
}
.s-cell--img .slide.is-active { opacity: 1; }
.s-cell--text {
  padding: clamp(22px, 2.2vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.s-cell--text.is-light {
  background: var(--sand);
  color: var(--navy);
}
.s-cell--text.is-dark {
  background: var(--navy-soft);
  color: var(--sand);
}
.s-cell__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 60;
}
.s-cell--text.is-dark .s-cell__title { color: var(--sand); }
.s-cell__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  align-self: flex-start;
  transition: background .25s ease, color .25s ease, gap .25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.s-cell--text.is-light .s-cell__link {
  background: rgba(0, 65, 124, 0.06);
  color: var(--navy);
  border: 1px solid rgba(0, 65, 124, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.s-cell--text.is-light .s-cell__link:hover {
  background: rgba(0, 65, 124, 0.9);
  color: #fff;
  border-color: transparent;
  gap: 14px;
}
.s-cell--text.is-dark .s-cell__link {
  background: rgba(224, 213, 175, 0.12);
  color: var(--sand);
  border: 1px solid rgba(224, 213, 175, 0.22);
  box-shadow: inset 0 1px 0 rgba(224, 213, 175, 0.15);
}
.s-cell--text.is-dark .s-cell__link:hover {
  background: rgba(0, 65, 124, 0.9);
  color: #fff;
  border-color: transparent;
  gap: 14px;
}
.s-cell__link::after {
  content: "";
  width: 8px; height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

/* =========================================================
   HOTLINE
   ========================================================= */
.hotline__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(36px, 4vw, 72px);
  align-items: center;
}
.hotline__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hotline__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 84px);
  line-height: 0.96;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 14ch;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.hotline__sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.4;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 30ch;
}
.hotline__nums {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hotline__num {
  padding: 18px 26px;
  border-radius: var(--r-card);
  background: var(--navy);
  border: 1px solid var(--navy);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
  box-shadow: var(--shadow-md);
}
.hotline__num:hover {
  background: var(--navy-soft);
  border-color: var(--navy-soft);
  transform: translateX(4px);
}
.hotline__num-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hotline__num-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(224, 213, 175, 0.7);
  font-weight: 500;
}
.hotline__num:hover .hotline__num-label { color: rgba(224, 213, 175, 0.95); }
.hotline__num-val {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.4vw, 23px);
  color: var(--sand);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 60;
}
.hotline__num:hover .hotline__num-val { color: #fff; }
.hotline__num-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(224, 213, 175, 0.14);
  border: 1px solid rgba(224, 213, 175, 0.28);
  display: grid;
  place-items: center;
  transition: background .25s ease, border-color .25s ease;
  flex-shrink: 0;
}
.hotline__num:hover .hotline__num-arrow {
  background: rgba(224, 213, 175, 0.24);
  border-color: rgba(224, 213, 175, 0.5);
}
.hotline__num-arrow::before {
  content: "";
  width: 8px; height: 8px;
  border-top: 1.5px solid var(--sand);
  border-right: 1.5px solid var(--sand);
  transform: rotate(45deg);
}

/* =========================================================
   PARTNERS — horizontal list
   ========================================================= */
.partners__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.partner-row {
  background: var(--sand);
  border-radius: var(--r-card);
  padding: clamp(18px, 1.8vw, 26px) clamp(22px, 2.4vw, 36px);
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: clamp(24px, 2.8vw, 44px);
  box-shadow: var(--shadow-sm);
}
.partner-row__logo {
  width: 150px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-row__logo--placeholder {
  width: 100px;
  height: 72px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(135deg,
      rgba(224, 213, 175, 0.18) 0 8px,
      rgba(224, 213, 175, 0.28) 8px 16px);
  border: 1px solid rgba(224, 213, 175, 0.3);
}
.partner-row__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Tints any logo to navy #00417C */
  filter: brightness(0) saturate(100%) invert(20%) sepia(73%) saturate(2466%) hue-rotate(196deg) brightness(94%) contrast(101%);
  opacity: 0.92;
}
/* Exception: keep original colors (no filter) */
.partner-row--original .partner-row__logo img {
  filter: none;
  opacity: 1;
}
.partner-row__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.partner-row__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.5vw, 26px);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-variation-settings: 'opsz' 60;
}
.partner-row__desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 70ch;
}
.partner-row__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(0, 65, 124, 0.14);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.partner-row__link::after {
  content: "";
  width: 8px; height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

/* ---- Partners: card grid (homepage) — static, no hover ---- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
.partner-card {
  background: var(--sand);
  border-radius: var(--r-card);
  padding: clamp(20px, 1.8vw, 28px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.partner-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.partner-card__tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: rgba(0, 65, 124, 0.08);
  border: 1px solid rgba(0, 65, 124, 0.12);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.partner-card__name {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.4vw, 23px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.partner-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 20px;
  flex-grow: 1;
}
.partner-card__media {
  margin-top: auto;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 0;
  overflow: hidden;
}
.partner-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* Monochrome / white logos: tint to navy so they read on the sand card */
.partner-card__media--tint img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(73%) saturate(2466%) hue-rotate(196deg) brightness(94%) contrast(101%);
}
/* The 7th card sits alone on the last row — keep it left-aligned at column width */
.partner-card:nth-child(7) {
  grid-column: 1;
}

/* =========================================================
   NEWS — grid cards
   ========================================================= */
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.4vw, 22px);
}
.news-item {
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  color: var(--sand);
}
.news-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--navy-soft);
  border-color: var(--navy-soft);
}
.news-item__media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  padding: 10px;
}
.news-item__media img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-img);
  display: block;
}
.news-item__body {
  padding: 22px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-item__date {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(224, 213, 175, 0.7);
  font-weight: 500;
}
.news-item__title {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.35vw, 23px);
  line-height: 1.25;
  color: var(--sand);
  font-weight: 500;
  letter-spacing: -0.02em;
  flex: 1;
  font-variation-settings: 'opsz' 60;
}
.news-item__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  align-self: flex-start;
  transition: gap .2s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.news-item:hover .news-item__more { gap: 12px; }
.news-item__more::after {
  content: "";
  width: 8px; height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

/* =========================================================
   CTA
   ========================================================= */
.cta__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 4vw, 72px);
  align-items: stretch;
}
.cta__main {
  display: flex;
  flex-direction: column;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.4vw, 88px);
  line-height: 0.98;
  color: var(--sand);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.cta__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.25;
  color: var(--sand);
  opacity: 0.9;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 28ch;
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
}
.cta__copy p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--light-soft);
}
.cta__copy p + p { margin-top: 14px; }
.cta__actions {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta__aside {
  background: var(--navy-soft);
  border: 1px solid rgba(224, 213, 175, 0.18);
  border-radius: var(--r-card);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  height: 100%;
  box-shadow: var(--shadow-dark);
}
.cta__aside-heading {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-soft);
  font-weight: 600;
}
.cta__main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--sand);
  border: 1px solid rgba(0, 65, 124, 0.18);
  color: var(--navy);
  padding: 24px 32px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease, color .25s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}
.cta__main-btn:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 28px rgba(0, 0, 0, 0.24);
}
.cta__main-btn .arr-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--navy);
}
.cta__main-btn .arr-circle::before {
  content: "";
  width: 11px; height: 11px;
  border-top: 1.5px solid var(--sand);
  border-right: 1.5px solid var(--sand);
  transform: rotate(45deg);
}

.cta__currency-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-soft);
  font-weight: 600;
  padding-top: 22px;
  border-top: 1px solid rgba(224, 213, 175, 0.22);
}
.cta__currency {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.currency {
  padding: 14px 20px;
  border-radius: var(--r-pill);
  background: rgba(224, 213, 175, 0.08);
  border: 1px solid rgba(224, 213, 175, 0.20);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color .25s ease, background .25s ease;
  cursor: pointer;
}
.currency:hover {
  border-color: rgba(224, 213, 175, 0.45);
  background: rgba(224, 213, 175, 0.16);
}
.currency__code {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: -0.01em;
}
.currency__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--light-soft);
}
.currency__arrow {
  width: 12px; height: 12px;
  border-top: 1.5px solid var(--sand);
  border-right: 1.5px solid var(--sand);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* =========================================================
   CONDITIONS
   ========================================================= */
.conditions {
  margin-top: clamp(60px, 6vw, 112px);
  padding-top: clamp(40px, 4vw, 64px);
  border-top: 1px solid rgba(224, 213, 175, 0.22);
}
.conditions__intro {
  margin-bottom: clamp(36px, 3.5vw, 56px);
  max-width: 64ch;
}
.conditions h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.15;
  color: var(--sand);
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 32ch;
  font-variation-settings: 'opsz' 144;
}
.conditions__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.6vw, 44px);
}
.conditions__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
  border-top: 2px solid var(--sand);
}
.conditions__num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  color: var(--sand);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: 'opsz' 60;
}
.conditions__text {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--light-soft);
  line-height: 1.55;
  font-weight: 400;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(28px, 2.8vw, 48px);
  padding-bottom: clamp(36px, 3.6vw, 52px);
  border-bottom: 1px solid var(--line-dark);
}
.footer__brand { flex: 0 0 auto; display: flex; flex-direction: column; gap: 18px; }
.footer__col { flex: 1 1 180px; min-width: 160px; }
.footer__brand-ua {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.footer__logos {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__logo {
  height: 80px;
  width: auto;
  display: block;
  align-self: flex-start;
}
.footer__logo img {
  height: 100%;
  width: auto;
  display: block;
}
.footer__brand p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--light-soft);
  line-height: 1.6;
  max-width: 36ch;
}
.footer__address {
  max-width: none !important;
  white-space: nowrap;
  font-size: 13px !important;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sand);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer__col a, .footer__col p {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--light-soft);
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--sand); }
.footer__contact {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}
.footer__contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
  opacity: 0.85;
}
.footer__reports {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer__reports a {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(224, 213, 175, 0.10);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(224, 213, 175, 0.22);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--sand);
  transition: background .2s ease, border-color .2s ease;
  box-shadow: inset 0 1px 0 rgba(224, 213, 175, 0.15);
  font-weight: 500;
}
.footer__reports a:hover {
  background: rgba(224, 213, 175, 0.2);
  border-color: rgba(224, 213, 175, 0.4);
}
.footer__bottom {
  padding-top: clamp(24px, 2.2vw, 32px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--light-muted);
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(224, 213, 175, 0.10);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(224, 213, 175, 0.22);
  display: grid;
  place-items: center;
  color: var(--sand);
  transition: background .2s ease, transform .2s ease;
  box-shadow: inset 0 1px 0 rgba(224, 213, 175, 0.15);
}
.footer__social a:hover {
  background: rgba(224, 213, 175, 0.22);
  transform: translateY(-2px);
}
.footer__social svg { width: 24px; height: 24px; fill: currentColor; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1200px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; min-height: auto; gap: 36px; }
  .hero__media { height: 540px; order: 2; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual, .about__slider, .about__track { height: auto; }
  .mission__grid { grid-template-columns: 1fr; }
  .mission__photo { aspect-ratio: 16 / 10; }
  .about__slide { height: auto; aspect-ratio: 4/5; cursor: pointer; }
  .hotline__grid { grid-template-columns: 1fr; }
  .cta__grid { grid-template-columns: 1fr; }
  .conditions__list { grid-template-columns: 1fr 1fr; }
  .news__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__logo { height: 76px; }
  .nav__social { display: none; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-card:nth-child(7) { grid-column: auto; }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 0;
    display: flex;
    flex-direction: column;
  }
  /* Reset desktop checkerboard ordering — natural DOM order (img then title) */
  .services__grid > .s-cell { order: 0 !important; }
  /* Each project = photo block then title block, with breathing room */
  .s-cell { aspect-ratio: auto; border-radius: var(--r-card); }
  .s-cell--img { aspect-ratio: 4/3; margin-bottom: 0; }
  .s-cell--text {
    min-height: 0;
    padding: 20px 22px 36px;
    border-radius: 0 0 var(--r-card) var(--r-card);
    margin-top: -14px;       /* tuck title under photo as one unit */
    margin-bottom: 30px;     /* air between projects */
    padding-top: 26px;
    position: relative;
    z-index: 1;
  }
  .s-cell--img { border-radius: var(--r-card) var(--r-card) 0 0; position: relative; z-index: 2; }
  .news__grid { grid-template-columns: 1fr; }
  .conditions__list { grid-template-columns: 1fr; }
  /* Mobile footer: UA logo top-right, everything else left-aligned below */
  .footer__top {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .footer__brand-ua {
    order: -1;
    justify-content: flex-end;
    margin-left: 0;
    width: 100%;
  }
  .footer__brand,
  .footer__col {
    order: 0;
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .footer__logo { height: 64px; }
  /* Partners: logo on top, title + text below (full width) */
  .partner-row {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }
  .partner-row__logo {
    width: auto;
    max-width: 150px;
    height: 60px;
    justify-content: flex-start;
  }
  .partner-row__desc { max-width: none; }
}
@media (max-width: 480px) {
  body { padding: 8px; font-size: 16px; }
  .section { padding: 44px 22px; }
  .hero { padding: 18px 22px 40px; }
  .nav-wrap { padding: 14px 14px; }
  .nav__lang { display: none; }
  .nav__logo { height: 68px; }
  .hero__media { height: 440px; }
  .hotline__num { padding: 16px 20px; grid-template-columns: 1fr; }
  .hotline__num-arrow { display: none; }
  .partners-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   NEWS MODAL
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 60, 0.62);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}

/* ---- Base card: centered window, scrolls internally ---- */
.modal__card {
  position: relative;
  background: var(--sand);
  border-radius: var(--r-card);
  width: 100%;
  max-width: 880px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.32),
    0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0.95) translateY(10px);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.modal.is-open .modal__card {
  transform: scale(1) translateY(0);
}

/* ---- News card: image on top, WHOLE popup scrolls ---- */
.modal__card--news {
  max-width: 760px;
  display: block;          /* not flex — natural flow */
  overflow-y: auto;        /* entire card scrolls */
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 65, 124, 0.3) transparent;
}
.modal__card--news::-webkit-scrollbar { width: 6px; }
.modal__card--news::-webkit-scrollbar-thumb {
  background: rgba(0, 65, 124, 0.3);
  border-radius: 999px;
}
.modal__card--news .modal__media {
  position: relative;      /* scrolls with content, not fixed */
  height: clamp(220px, 42vw, 420px);
}
.modal__card--news .modal__body {
  overflow: visible;       /* card handles scroll */
  flex: none;
}

/* ---- Content card (requisites / reports / partner / currency) ---- */
.modal__card--content {
  background: var(--sand);
  max-width: 1080px;
}
.modal__card--content.modal__card--narrow { max-width: 680px; }
.modal__card--content.modal__card--wide { max-width: 1280px; }

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(0, 65, 124, 0.14);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: background .2s ease, transform .2s ease, color .2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.modal__close:hover {
  background: var(--navy);
  color: var(--sand);
  transform: rotate(90deg);
}
.modal__close svg { width: 18px; height: 18px; }

.modal__media {
  flex-shrink: 0;
  height: clamp(220px, 36vh, 420px);
  overflow: hidden;
  background: rgba(0, 65, 124, 0.08);
}
.modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal__body {
  padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 64px);
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 65, 124, 0.3) transparent;
}
.modal__body-inner {
  max-width: 620px;
  margin: 0 auto;
}
.modal__body::-webkit-scrollbar { width: 6px; }
.modal__body::-webkit-scrollbar-thumb {
  background: rgba(0, 65, 124, 0.3);
  border-radius: 999px;
}
.modal__date {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.modal__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.12;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.modal__content p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--ink);
}
.modal__content p + p { margin-top: 14px; }
.modal__content p strong {
  font-weight: 600;
  color: var(--navy);
}
.modal__content p em {
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
}
.modal__content img {
  width: 100%;
  height: auto;
  border-radius: var(--r-img);
  margin: 22px 0;
  display: block;
}
.modal__content blockquote {
  margin: 22px 0;
  padding: 18px 22px;
  background: rgba(0, 65, 124, 0.05);
  border-left: 3px solid var(--navy);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
}

/* Lock body scroll while modal open */
body.modal-open { overflow: hidden; }

@media (max-width: 600px) {
  .modal { padding: 0; }
  .modal__card { max-height: 100vh; height: 100vh; border-radius: 0; max-width: 100vw; }
  .modal__card--news { max-width: 100vw; }
}

/* =========================================================
   CONTENT MODAL — Requisites / Reports / Partner
   ========================================================= */
.modal__card--content { background: var(--sand); }
.modal__body--noimg {
  padding: clamp(36px, 4vw, 60px) clamp(24px, 4vw, 56px);
}
.modal__body--noimg .modal__body-inner { max-width: 100%; }

.req-header {
  text-align: center;
  margin-bottom: clamp(36px, 4vw, 56px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.req-header--single { margin-bottom: clamp(28px, 3vw, 44px); }
.req-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(0, 65, 124, 0.08);
  border: 1px solid rgba(0, 65, 124, 0.12);
  margin-bottom: 22px;
}
.req-header .modal__title { margin-bottom: 16px; }
.req-lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.modal__title-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.5em;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--navy);
  color: var(--sand);
  vertical-align: middle;
  margin-right: 14px;
  letter-spacing: 0.14em;
  position: relative;
  top: -4px;
}

/* Requisites cards grid */
.req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 22px);
}
.req-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 65, 124, 0.10);
  border-radius: var(--r-card);
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.req-card--solo {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 3vw, 44px);
}
.req-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 65, 124, 0.10);
}
.req-card__currency {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--navy);
  color: var(--sand);
}
.req-card__name {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 60;
}
.req-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.req-card__list > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.req-card__list dt {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.req-card__list dd {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.45;
  margin: 0;
  word-break: break-word;
}
.req-card__list .is-iban dd {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 12px;
  background: rgba(0, 65, 124, 0.06);
  border: 1px solid rgba(0, 65, 124, 0.14);
  border-radius: 8px;
  letter-spacing: 0.02em;
}
.req-card__more {
  margin-top: 4px;
}
.req-card__more summary {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  background: rgba(0, 65, 124, 0.06);
  border: 1px solid rgba(0, 65, 124, 0.14);
  list-style: none;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .2s ease;
}
.req-card__more summary::-webkit-details-marker { display: none; }
.req-card__more summary::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform .2s ease;
}
.req-card__more[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.req-card__more summary:hover { background: rgba(0, 65, 124, 0.12); }
.req-corr {
  margin-top: 14px;
  padding: 16px;
  background: rgba(0, 65, 124, 0.04);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.req-corr p {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.req-corr p strong {
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
}
.req-card__sub {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 65, 124, 0.10);
  letter-spacing: -0.01em;
}

/* Reports cards */
.reports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.6vw, 20px);
  max-width: 820px;
  margin: 0 auto;
}
.reports-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 26px);
  padding: clamp(22px, 2.4vw, 32px);
  background: var(--navy);
  border-radius: var(--r-card);
  color: var(--sand);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-md);
}
.reports-card:hover {
  background: var(--navy-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.reports-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-img);
  background: rgba(224, 213, 175, 0.14);
  border: 1px solid rgba(224, 213, 175, 0.28);
  display: grid;
  place-items: center;
  color: var(--sand);
  flex-shrink: 0;
}
.reports-card__icon svg { width: 28px; height: 28px; }
.reports-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reports-card__tag {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(224, 213, 175, 0.65);
  font-weight: 600;
}
.reports-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  color: var(--sand);
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 60;
}
.reports-card__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(224, 213, 175, 0.75);
  line-height: 1.4;
  margin-top: 2px;
}
.reports-card__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(224, 213, 175, 0.16);
  border: 1px solid rgba(224, 213, 175, 0.32);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .2s ease, transform .2s ease;
}
.reports-card__arrow::before {
  content: "";
  width: 10px; height: 10px;
  border-top: 1.5px solid var(--sand);
  border-right: 1.5px solid var(--sand);
  transform: rotate(45deg);
}
.reports-card:hover .reports-card__arrow {
  background: rgba(224, 213, 175, 0.26);
  transform: translateX(3px);
}

/* Partner photo slider */
.partner-slider {
  max-width: 880px;
  margin: 0 auto;
}
.partner-slider__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 42vh;
  border-radius: var(--r-card);
  overflow: hidden;
  background: rgba(0, 65, 124, 0.08);
  box-shadow: var(--shadow-md);
}
.partner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  background:
    repeating-linear-gradient(135deg,
      rgba(0, 65, 124, 0.08) 0 14px,
      rgba(0, 65, 124, 0.16) 14px 28px);
}
.partner-slide.is-active { opacity: 1; }
.partner-slide::after {
  content: "ФОТО";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.22em;
  color: rgba(0, 65, 124, 0.42);
  font-weight: 500;
}
.partner-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}
.partner-slider__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--sand);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.partner-slider__nav:hover {
  background: var(--navy-soft);
  transform: scale(1.05);
}
.partner-slider__nav .arr,
.partner-slider__nav .arr--l {
  width: 9px; height: 9px;
  border-top: 1.5px solid var(--sand);
  border-right: 1.5px solid var(--sand);
  transform: rotate(45deg);
  display: inline-block;
}
.partner-slider__nav .arr--l { transform: rotate(-135deg); }
.partner-slider__count {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--navy);
  min-width: 64px;
  text-align: center;
}

/* Currency disabled */
.currency--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Adaptive */
@media (max-width: 1100px) {
  .req-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .reports-grid { grid-template-columns: 1fr; }
  .modal__title-tag { font-size: 0.6em; padding: 6px 12px; margin-right: 10px; }
}
@media (max-width: 560px) {
  .req-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .reports-card { grid-template-columns: 1fr; gap: 14px; }
  .reports-card__arrow { display: none; }
  .req-card { padding: 20px; }
  .partner-slider__nav { width: 42px; height: 42px; }
}

/* =========================================================
   FIRA SANS — display heading adjustments
   (Fira Sans needs heavier weight + tighter tracking than
    Fraunces did at large display sizes)
   ========================================================= */
.hero__title,
.sec-head h2,
.about__text h2,
.mission__text h2,
.hotline__intro h2,
.cta__title,
.modal__title,
.sec-title,
h1, h2 {
  font-weight: 700;
  letter-spacing: -0.035em;
}
.hero__title em {
  font-weight: 700;
  font-style: normal;
}
.cta__subtitle {
  font-style: normal;
  font-weight: 600;
}
.req-card__name,
.reports-card__title,
.news-item__title,
.partner-row__name,
.hotline__num-val,
.currency__code,
.req-card__sub,
.conditions h3,
.conditions__num {
  font-weight: 600;
  letter-spacing: -0.02em;
}


/* =========================================================
   PREMIUM DONATE BUTTON
   ========================================================= */
.btn--accent {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #00417C 0%, #1A5A99 100%);
  border: 1px solid rgba(224, 213, 175, 0.3);
  color: #fff;
  isolation: isolate;
  box-shadow:
    0 4px 16px rgba(0, 65, 124, 0.35),
    0 1px 3px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.btn--accent .btn__label {
  position: relative;
  z-index: 2;
  transition: letter-spacing .3s ease;
}
.btn--accent .btn__arrow {
  position: relative;
  z-index: 2;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
/* Shimmer sweep */
.btn--accent .btn__shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(224, 213, 175, 0.0) 20%,
    rgba(224, 213, 175, 0.45) 50%,
    rgba(224, 213, 175, 0.0) 80%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .7s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.btn--accent:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 30px rgba(0, 65, 124, 0.45),
    0 3px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--accent:hover .btn__shine { left: 130%; }
.btn--accent:hover .btn__label { letter-spacing: 0.06em; }
.btn--accent:hover .btn__arrow { transform: translateX(4px); }
.btn--accent:active { transform: translateY(-1px) scale(1.0); }

/* Subtle breathing glow (idle) */
@keyframes donate-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,65,124,.35), 0 1px 3px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.25); }
  50% { box-shadow: 0 4px 22px rgba(0,65,124,.5), 0 1px 3px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.25); }
}
.btn--accent { animation: donate-pulse 3.4s ease-in-out infinite; }
.btn--accent:hover { animation: none; }

/* Donate-large in dark CTA keeps the premium gradient too */
.section--dark .btn--accent-lg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Donate-large premium effects (CTA, dark section) */
.btn--accent-lg .btn__label { position: relative; z-index: 2; transition: letter-spacing .3s ease; }
.btn--accent-lg .btn__arrow { position: relative; z-index: 2; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.btn--accent-lg .btn__shine {
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  z-index: 1;
  background: linear-gradient(100deg, transparent 0%, rgba(0,65,124,.0) 20%, rgba(0,65,124,.28) 50%, rgba(0,65,124,.0) 80%, transparent 100%);
  transform: skewX(-18deg);
  transition: left .7s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.section--dark .btn--accent-lg:hover .btn__shine { left: 130%; }
.section--dark .btn--accent-lg:hover .btn__label { letter-spacing: 0.06em; }
.section--dark .btn--accent-lg:hover .btn__arrow { transform: translateX(4px); }
.section--dark .btn--accent-lg:hover { transform: translateY(-3px) scale(1.02); }

/* Hero Donate — large size matching CTA's btn--accent-lg */
.btn--accent-big {
  font-size: 16px;
  padding: 20px 34px;
  gap: 14px;
}
.btn--accent-big .btn__arrow { width: 18px; height: 18px; }
.btn--accent-big .btn__arrow::before { width: 9px; height: 9px; }

/* =========================================================
   NEWS ARCHIVE — button + full-screen Instagram-style feed
   ========================================================= */
.news__archive-cta {
  margin-top: clamp(32px, 4vw, 56px);
  display: flex;
  justify-content: center;
}
.news-archive-btn {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 20px 26px 20px 34px;
  border-radius: var(--r-pill);
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--sand);
  transition: background .3s cubic-bezier(.2,.8,.2,1), transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
  box-shadow: 0 6px 22px rgba(0, 65, 124, 0.28);
  cursor: pointer;
}
.news-archive-btn:hover {
  background: var(--navy-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 65, 124, 0.4);
}
.news-archive-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.news-archive-btn__label {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.news-archive-btn__sub {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(224, 213, 175, 0.65);
  font-weight: 500;
}
.news-archive-btn__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(224, 213, 175, 0.16);
  border: 1px solid rgba(224, 213, 175, 0.3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .25s ease, transform .25s ease;
}
.news-archive-btn__icon svg { width: 24px; height: 24px; }
.news-archive-btn:hover .news-archive-btn__icon {
  background: rgba(224, 213, 175, 0.26);
  transform: scale(1.06);
}

/* =========================================================
   SUBPAGE BASE (article + archive pages)
   ========================================================= */
.page-subpage .nav-wrap::before { background: var(--navy); }

/* Ghost button (navy outline on light) */
.btn--ghost-navy {
  background: transparent;
  border: 1.5px solid rgba(0, 65, 124, 0.3);
  color: var(--navy);
  font-weight: 600;
}
.btn--ghost-navy:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--sand);
  transform: translateY(-2px);
}

/* =========================================================
   ARTICLE PAGE
   ========================================================= */
.article {
  background: var(--sand);
  padding: clamp(40px, 6vw, 88px) clamp(20px, 5vw, 80px) clamp(60px, 8vw, 120px);
  min-height: 70vh;
}
.article__inner {
  max-width: 760px;
  margin: 0 auto;
}
.article__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: clamp(28px, 4vw, 48px);
  transition: gap .2s ease, color .2s ease;
}
.article__back:hover { gap: 14px; color: var(--navy); }
.article__back-arrow {
  width: 9px; height: 9px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: rotate(-45deg);
}

.article-post__head {
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.article-post__date {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 16px;
}
.article-post__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.08;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.article-post__excerpt {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 500;
  padding-bottom: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid rgba(0, 65, 124, 0.14);
}
.article-post__body {
  font-family: var(--font-body);
}
.article-post__body p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--ink);
  margin: 18px 0;
}
.article-post__body p strong { font-weight: 600; color: var(--navy); }
.article-post__body p em { font-style: italic; font-weight: 500; color: var(--navy); }
.article-post__body img {
  width: 100%;
  height: auto;
  border-radius: var(--r-img);
  margin: 28px 0;
  display: block;
  box-shadow: var(--shadow-sm);
}
.article-post__body blockquote {
  margin: 28px 0;
  padding: 20px 26px;
  background: rgba(0, 65, 124, 0.05);
  border-left: 3px solid var(--navy);
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
}

/* Article prev/next nav */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid rgba(0, 65, 124, 0.14);
}
.article-nav__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  border-radius: var(--r-card);
  background: #FFFFFF;
  border: 1px solid rgba(0, 65, 124, 0.1);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.article-nav__item:not(.is-empty):hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--navy);
}
.article-nav__item.is-empty {
  background: transparent;
  border: none;
}
.article-nav__item--next { text-align: right; align-items: flex-end; }
.article-nav__dir {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color .25s ease;
}
.article-nav__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color .25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-nav__item:hover .article-nav__title,
.article-nav__item:hover .article-nav__dir { color: var(--sand); }
.article-nav__arrow {
  width: 8px; height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.article-nav__arrow--l { transform: rotate(-135deg); }

.article__footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(36px, 4vw, 56px);
}

.article__notfound {
  text-align: center;
  padding: clamp(40px, 8vw, 100px) 0;
}
.article__notfound h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.article__notfound p {
  font-family: var(--font-body);
  color: var(--ink-soft);
  margin-bottom: 28px;
}

/* =========================================================
   ARCHIVE PAGE
   ========================================================= */
.archive-page { background: var(--sand); }
.archive-page__hero {
  background: var(--navy);
  color: var(--sand);
  padding: clamp(40px, 6vw, 88px) clamp(20px, 5vw, 80px) clamp(48px, 6vw, 80px);
}
.archive-page__hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.archive-page__hero .article__back {
  color: rgba(224, 213, 175, 0.7);
  margin-bottom: clamp(24px, 3vw, 40px);
}
.archive-page__hero .article__back:hover { color: var(--sand); }
.archive-page__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(224, 213, 175, 0.65);
  font-weight: 600;
  margin-bottom: 14px;
}
.archive-page__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--sand);
  margin-bottom: 16px;
}
.archive-page__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(224, 213, 175, 0.8);
  max-width: 50ch;
}
.archive-page__feed {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) clamp(16px, 4vw, 40px) clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

/* Instagram-style post card */
.ig-post {
  background: #FFFFFF;
  border: 1px solid rgba(0, 65, 124, 0.10);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ig-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ig-post__media-link { display: block; }
.ig-post__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(0, 65, 124, 0.06);
  overflow: hidden;
}
.ig-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.ig-post:hover .ig-post__media img { transform: scale(1.04); }
.ig-post__media-count {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: rgba(0, 30, 60, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ig-post__media-count svg { width: 13px; height: 13px; }
.ig-post__head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px 10px;
}
.ig-post__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--sand);
  box-shadow: 0 0 0 2px var(--navy);
  background: var(--navy);
}
.ig-post__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ig-post__meta { display: flex; flex-direction: column; gap: 1px; }
.ig-post__author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.ig-post__date {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-muted);
}
.ig-post__body {
  padding: 4px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ig-post__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 8px;
}
.ig-post__title a { color: inherit; }
.ig-post__title a:hover { color: var(--navy-soft); }
.ig-post__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.ig-post__detail {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  background: var(--navy);
  padding: 11px 20px;
  border-radius: var(--r-pill);
  transition: background .25s ease, gap .25s ease, transform .2s ease;
}
.ig-post__detail:hover {
  background: var(--navy-soft);
  gap: 13px;
  transform: translateY(-2px);
}
.ig-post__detail-arrow {
  width: 8px; height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

/* Responsive archive grid */
@media (max-width: 900px) {
  .archive-page__feed { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .news-archive-btn { width: 100%; justify-content: space-between; padding: 18px 18px 18px 24px; }
  .archive-page__feed { grid-template-columns: 1fr; }
  .article-nav { grid-template-columns: 1fr; }
}

/* =========================================================
   ARCHIVE PROJECTS PAGE
   ========================================================= */
.archproj-list {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) clamp(16px, 4vw, 40px) clamp(70px, 9vw, 120px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 56px);
}
.archproj {
  background: #FFFFFF;
  border: 1px solid rgba(0, 65, 124, 0.10);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  transition: box-shadow .3s ease, transform .3s ease;
}
.archproj:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.archproj__media { position: relative; background: rgba(0,65,124,0.06); }
.archproj__stage { position: relative; width: 100%; height: 100%; min-height: 320px; }
.archproj__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .8s ease;
}
.archproj__slide.is-active { opacity: 1; }
.archproj__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.archproj__controls {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px;
  background: rgba(0, 30, 60, 0.62);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px; border-radius: var(--r-pill);
  z-index: 2;
}
.archproj__nav {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(224,213,175,0.18); border: 1px solid rgba(224,213,175,0.32);
  color: var(--sand); display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.archproj__nav:hover { background: rgba(224,213,175,0.3); transform: scale(1.06); }
.archproj__nav .arr { width: 8px; height: 8px; border-top: 1.5px solid var(--sand); border-right: 1.5px solid var(--sand); transform: rotate(45deg); display: inline-block; }
.archproj__nav .arr--l { transform: rotate(-135deg); }
.archproj__count {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--sand); min-width: 64px; text-align: center;
}
.archproj__body {
  padding: clamp(28px, 3vw, 48px);
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.archproj__period {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted);
}
.archproj__title {
  font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; color: var(--navy);
}
.archproj__desc {
  font-family: var(--font-body); font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6; color: var(--ink-soft);
}

/* Archive partners page — constrain list width */
.archive-page .partners__list {
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .archproj { grid-template-columns: 1fr; }
  .archproj__stage { min-height: 240px; aspect-ratio: 16/10; }
}

/* =========================================================
   LIGHTBOX — About photo detail
   ========================================================= */
.modal--lightbox { padding: clamp(16px, 4vw, 48px); }
.modal--lightbox .modal__backdrop { background: rgba(0, 20, 45, 0.82); }
.lightbox__stage {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 88vh;
  display: grid;
  place-items: center;
  transform: scale(0.96);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.modal--lightbox.is-open .lightbox__stage { transform: scale(1); }
.lightbox__stage img {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: var(--r-card);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  display: block;
}
.lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
}
.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease;
}
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox__nav--prev { left: clamp(12px, 3vw, 40px); }
.lightbox__nav--next { right: clamp(12px, 3vw, 40px); }
.lightbox__nav .arr {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: -3px;
}
.lightbox__nav .arr--l {
  transform: rotate(-135deg);
  margin-left: 3px;
}
.lightbox__counter {
  position: fixed;
  bottom: clamp(16px, 4vh, 36px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
@media (max-width: 600px) {
  .lightbox__nav { width: 46px; height: 46px; }
}

/* =========================================================
   SCROLL TO TOP
   ========================================================= */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sand);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 65, 124, 0.35);
  border: 1px solid rgba(224, 213, 175, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: opacity .3s ease, transform .3s ease, visibility .3s, background .2s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  background: var(--navy-soft);
  transform: translateY(-3px) scale(1.05);
}
.scroll-top svg { width: 22px; height: 22px; }
@media (max-width: 480px) {
  .scroll-top { bottom: 16px; right: 16px; width: 46px; height: 46px; }
}
