/* ==========================================================================
   Palestinian Camps Platform — Premium Design System v2
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  --clr-primary: #1F6F5C;
  --clr-primary-dark: #17554A;
  --clr-primary-deeper: #0f3e34;
  --clr-secondary: #3AA77F;
  --clr-secondary-light: #4fbf94;
  --clr-bg: #F5F7F6;
  --clr-white: #FFFFFF;
  --clr-text: #1a1d1c;
  --clr-muted: #5F6B66;
  --clr-accent: #C94C4C;
  --clr-accent-light: #fdf0f0;
  --clr-border: #e0e6e3;
  --clr-card-bg: #FFFFFF;
  --ff: 'IBM Plex Sans Arabic', sans-serif;
  --fs-xs: .75rem;
  --fs-sm: .8125rem;
  --fs-base: .9375rem;
  --fs-md: 1.0625rem;
  --fs-lg: 1.1875rem;
  --fs-xl: 1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.875rem;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi: 600;
  --fw-bold: 700;
  --lh-tight: 1.35;
  --lh-normal: 1.75;
  --lh-loose: 1.9;
  --sp-2xs: .25rem;
  --sp-xs: .5rem;
  --sp-sm: .75rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 2.75rem;
  --sp-3xl: 3.5rem;
  --sp-4xl: 5rem;
  --sp-5xl: 7rem;
  --max-w: 1140px;
  --nav-h: 68px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .07);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .09);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, .12);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --dur: .35s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--ff);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background: var(--clr-bg);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

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

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

ul,
ol {
  list-style: none
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none
}

button {
  cursor: pointer
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

::selection {
  background: rgba(31, 111, 92, .12);
  color: var(--clr-text)
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: transparent
}

::-webkit-scrollbar-thumb {
  background: var(--clr-border);
  border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-muted)
}

/* === Container === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl)
}

/* === Section === */
.section {
  padding: var(--sp-5xl) 0
}

.section--alt {
  background: var(--clr-white)
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-3xl)
}

.section-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-sm);
  line-height: var(--lh-tight);
  letter-spacing: -.02em
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--lh-loose)
}

/* === Button === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  padding: .7rem 1.6rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  border-radius: var(--r-md);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  letter-spacing: .01em;
  position: relative
}

.btn:focus-visible {
  outline: 2px solid var(--clr-secondary);
  outline-offset: 3px
}

.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 2px 8px rgba(31, 111, 92, .2)
}

.btn--primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 111, 92, .28)
}

.btn--secondary {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary)
}

.btn--secondary:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 111, 92, .2)
}

.btn--accent {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: 0 2px 8px rgba(201, 76, 76, .2)
}

.btn--accent:hover {
  background: #b54242;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 76, 76, .28)
}

.btn--sm {
  padding: .5rem 1.15rem;
  font-size: var(--fs-xs)
}

.btn--lg {
  padding: .85rem 2rem;
  font-size: var(--fs-base)
}

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--clr-white);
  border: 1.5px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(4px)
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px)
}

/* === Card === */
.card {
  background: var(--clr-card-bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  padding: var(--sp-2xl) var(--sp-xl);
  transition: all var(--dur) var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card>.btn,
.card>.card__link {
  margin-top: auto;
  align-self: flex-start;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(58, 167, 127, .3)
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(31, 111, 92, .08), rgba(58, 167, 127, .12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-lg);
  font-size: 1.25rem;
  color: var(--clr-primary)
}

.card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-xs);
  color: var(--clr-text);
  line-height: var(--lh-tight)
}

.card__text {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-lg)
}

.card__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2xs);
  transition: all var(--dur) var(--ease)
}

.card__link:hover {
  color: var(--clr-secondary);
  gap: var(--sp-xs)
}

.card__link svg {
  width: 14px;
  height: 14px;
  transition: inherit;
  transform: scaleX(-1)
}

.card__link:hover svg {
  transform: scaleX(-1) translateX(-3px)
}

/* === Grid === */
.grid {
  display: grid;
  gap: var(--sp-xl)
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr)
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr)
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  z-index: 1000;
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  border-bottom: 1px solid transparent
}

.header--scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
  border-bottom-color: var(--clr-border);
  background: rgba(255, 255, 255, .97)
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  letter-spacing: -.01em
}

.logo__icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base)
}

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

.nav__link {
  padding: .45rem .65rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--clr-muted);
  border-radius: var(--r-sm);
  transition: all var(--dur) var(--ease);
  position: relative
}

.nav__link:hover {
  color: var(--clr-primary);
  background: rgba(31, 111, 92, .04)
}

.nav__link--active {
  color: var(--clr-primary);
  font-weight: var(--fw-semi)
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: .65rem;
  left: .65rem;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px
}

.nav__cta {
  margin-right: var(--sp-sm)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--dur) var(--ease)
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #1a6b58 0%, #155247 45%, #0d3b30 100%);
  padding-top: var(--nav-h)
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 25% 80%, rgba(58, 167, 127, .15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(255, 255, 255, .04) 0%, transparent 60%);
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  opacity: .7
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: var(--sp-4xl);
  align-items: center
}

.hero__content {
  color: var(--clr-white)
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-xl);
  color: rgba(255, 255, 255, .85);
  backdrop-filter: blur(4px)
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-secondary-light);
  animation: pulse-dot 2s ease infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.hero__title {
  font-size: clamp(1.85rem, 3.8vw, var(--fs-4xl));
  font-weight: var(--fw-bold);
  line-height: 1.2;
  margin-bottom: var(--sp-lg);
  letter-spacing: -.02em
}

.hero__text {
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  opacity: .82;
  margin-bottom: var(--sp-2xl);
  max-width: 520px
}

.hero__actions {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .04;
  background: var(--clr-white)
}

.hero__shape--1 {
  width: 340px;
  height: 340px;
  top: -100px;
  left: -120px
}

.hero__shape--2 {
  width: 220px;
  height: 220px;
  bottom: 20px;
  right: -80px
}

.hero__shape--3 {
  width: 100px;
  height: 100px;
  top: 35%;
  left: 48%;
  opacity: .03
}

/* Hero Panel */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-panel {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-2xl);
  padding: var(--sp-2xl);
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 380px
}

.hero-panel__title {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .55);
  margin-bottom: var(--sp-lg);
  font-weight: var(--fw-medium);
  letter-spacing: .08em;
  text-transform: uppercase
}

.hero-panel__stat {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.hero-panel__stat:last-child {
  border-bottom: none
}

.hero-panel__stat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(58, 167, 127, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-secondary-light);
  font-size: 1rem
}

.hero-panel__stat-info {
  flex: 1
}

.hero-panel__stat-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .5)
}

.hero-panel__stat-value {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white)
}

/* ================================================================
   STATS
   ================================================================ */
.stats {
  background: var(--clr-white);
  padding: var(--sp-3xl) 0;
  margin-top: -2.5rem;
  position: relative;
  z-index: 5;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .04)
}

.stat-card {
  text-align: center;
  padding: var(--sp-2xl) var(--sp-lg);
  border-radius: var(--r-lg);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  transition: all var(--dur) var(--ease)
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(58, 167, 127, .25)
}

.stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(31, 111, 92, .08), rgba(58, 167, 127, .12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md);
  font-size: 1.2rem;
  color: var(--clr-primary)
}

.stat-card__number {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  margin-bottom: var(--sp-2xs);
  letter-spacing: -.03em
}

.stat-card__label {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  font-weight: var(--fw-medium)
}

/* ================================================================
   ABOUT PREVIEW
   ================================================================ */
.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4xl);
  align-items: center
}

.about-preview__visual {
  background: linear-gradient(135deg, rgba(31, 111, 92, .04), rgba(58, 167, 127, .07));
  border-radius: var(--r-xl);
  padding: var(--sp-3xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border: 1px solid var(--clr-border)
}

.about-preview__visual-inner {
  text-align: center;
  color: var(--clr-primary)
}

.about-preview__visual-inner svg {
  width: 72px;
  height: 72px;
  margin-bottom: var(--sp-md);
  opacity: .4
}

.about-preview__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-md);
  color: var(--clr-text);
  letter-spacing: -.02em
}

.about-preview__text {
  font-size: var(--fs-base);
  color: var(--clr-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-xl)
}

/* ================================================================
   CAMP CARDS
   ================================================================ */
.camp-card {
  background: var(--clr-card-bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: all var(--dur) var(--ease)
}

.camp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(58, 167, 127, .3)
}

.camp-card__img {
  height: 160px;
  background: linear-gradient(135deg, rgba(31, 111, 92, .07), rgba(58, 167, 127, .12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: 1.75rem;
  position: relative
}

.camp-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(31, 111, 92, .02) 12px, rgba(31, 111, 92, .02) 24px)
}

.camp-card__body {
  padding: var(--sp-xl) var(--sp-lg)
}

.camp-card__name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-xs)
}

.camp-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-lg)
}

/* ================================================================
   EMERGENCY
   ================================================================ */
.emergency-section {
  background: var(--clr-white);
  border-top: 3px solid var(--clr-accent);
  position: relative
}

.emergency-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--clr-accent-light), transparent);
  pointer-events: none
}

.emergency-section .container {
  position: relative;
  z-index: 2
}

.emergency-section .section-title {
  color: var(--clr-accent)
}

.emergency-list {
  display: grid;
  gap: var(--sp-md);
  max-width: 680px;
  margin: 0 auto var(--sp-2xl)
}

.emergency-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-lg);
  background: var(--clr-bg);
  border-radius: var(--r-md);
  border-right: 3px solid var(--clr-accent);
  transition: all var(--dur) var(--ease)
}

.emergency-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(-4px)
}

.emergency-item__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem
}

.emergency-item__text {
  font-size: var(--fs-base);
  color: var(--clr-text);
  line-height: var(--lh-normal)
}

/* ================================================================
   VOLUNTEER CTA
   ================================================================ */
.volunteer-cta {
  background: linear-gradient(165deg, var(--clr-primary) 0%, var(--clr-primary-deeper) 100%);
  color: var(--clr-white);
  text-align: center;
  position: relative;
  overflow: hidden
}

.volunteer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(58, 167, 127, .15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, .03) 0%, transparent 50%);
  pointer-events: none
}

.volunteer-cta .container {
  position: relative;
  z-index: 2
}

.volunteer-cta__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-md);
  letter-spacing: -.02em
}

.volunteer-cta__text {
  font-size: var(--fs-base);
  opacity: .85;
  max-width: 560px;
  margin: 0 auto var(--sp-2xl);
  line-height: var(--lh-loose)
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--clr-primary-deeper);
  color: rgba(255, 255, 255, .75);
  padding: var(--sp-4xl) 0 var(--sp-xl)
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-3xl)
}

.footer__heading {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--sp-lg)
}

.footer__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  opacity: .65
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs)
}

.footer__link {
  font-size: var(--fs-sm);
  opacity: .65;
  transition: all var(--dur) var(--ease);
  padding: 2px 0
}

.footer__link:hover {
  opacity: 1;
  color: var(--clr-secondary-light);
  transform: translateX(-3px)
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-sm);
  opacity: .65
}

.footer__social {
  display: flex;
  gap: var(--sp-xs);
  margin-top: var(--sp-md)
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  transition: all var(--dur) var(--ease)
}

.footer__social-link:hover {
  background: var(--clr-secondary);
  color: var(--clr-white);
  transform: translateY(-2px)
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: var(--sp-xl);
  text-align: center;
  font-size: var(--fs-xs);
  opacity: .4
}

/* ================================================================
   PAGE HERO (Inner Pages)
   ================================================================ */
.page-hero {
  background: linear-gradient(165deg, var(--clr-primary) 0%, var(--clr-primary-deeper) 100%);
  padding: calc(var(--nav-h) + var(--sp-4xl)) 0 var(--sp-3xl);
  text-align: center;
  color: var(--clr-white);
  position: relative;
  overflow: hidden
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  opacity: .6
}

.page-hero__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-sm);
  position: relative;
  z-index: 2;
  letter-spacing: -.02em
}

.page-hero__subtitle {
  font-size: var(--fs-md);
  opacity: .8;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

/* ================================================================
   FILTER BAR
   ================================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2xl);
  padding: var(--sp-md) var(--sp-lg);
  background: var(--clr-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs)
}

.filter-bar__search {
  flex: 1;
  min-width: 180px;
  padding: .6rem .9rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  transition: all var(--dur) var(--ease);
  direction: rtl;
  background: var(--clr-bg)
}

.filter-bar__search:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(31, 111, 92, .08);
  background: var(--clr-white)
}

.filter-bar__btn {
  padding: .5rem 1.15rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  border-radius: var(--r-md);
  background: var(--clr-bg);
  color: var(--clr-muted);
  border: 1px solid var(--clr-border);
  transition: all var(--dur) var(--ease);
  cursor: pointer
}

.filter-bar__btn:hover,
.filter-bar__btn--active {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary)
}

/* ================================================================
   EMERGENCY PAGE
   ================================================================ */
.alert-banner {
  background: var(--clr-accent-light);
  border-bottom: 2px solid var(--clr-accent);
  padding: var(--sp-md) 0;
  margin-top: var(--nav-h)
}

.alert-banner .container {
  display: flex;
  align-items: center;
  gap: var(--sp-md)
}

.alert-banner__icon {
  width: 32px;
  height: 32px;
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm)
}

.alert-banner__text {
  font-size: var(--fs-sm);
  color: var(--clr-accent);
  font-weight: var(--fw-medium)
}

.emergency-page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-2xl)
}

.emergency-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-xl));
  align-self: start
}

.emergency-sidebar__nav {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-xs)
}

.emergency-sidebar__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-md);
  color: var(--clr-text)
}

.emergency-sidebar__link {
  display: block;
  padding: var(--sp-xs) var(--sp-sm);
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  border-radius: var(--r-sm);
  transition: all var(--dur) var(--ease);
  margin-bottom: 2px
}

.emergency-sidebar__link:hover,
.emergency-sidebar__link--active {
  background: rgba(201, 76, 76, .05);
  color: var(--clr-accent)
}

.emergency-content-card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  padding: var(--sp-2xl);
  margin-bottom: var(--sp-lg);
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-xs)
}

.emergency-content-card:hover {
  box-shadow: var(--shadow-md)
}

.emergency-content-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-md);
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: var(--sp-sm)
}

.emergency-content-card__title-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem
}

.emergency-content-card__text {
  color: var(--clr-muted);
  line-height: var(--lh-loose)
}

/* ================================================================
   REPORTS
   ================================================================ */
.featured-report {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: var(--sp-2xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease)
}

.featured-report:hover {
  box-shadow: var(--shadow-lg)
}

.featured-report__visual {
  background: linear-gradient(135deg, rgba(31, 111, 92, .08), rgba(58, 167, 127, .12));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2xl);
  min-height: 260px;
  font-size: 2.5rem;
  color: var(--clr-primary)
}

.featured-report__body {
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center
}

.featured-report__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--clr-primary);
  background: rgba(31, 111, 92, .06);
  padding: .2rem .65rem;
  border-radius: 100px;
  margin-bottom: var(--sp-md);
  width: fit-content
}

.featured-report__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-sm);
  letter-spacing: -.01em
}

.featured-report__meta {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  margin-bottom: var(--sp-md)
}

.featured-report__text {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-lg)
}

.report-card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  padding: var(--sp-xl);
  transition: all var(--dur) var(--ease)
}

.report-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.report-card__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--clr-primary);
  background: rgba(31, 111, 92, .06);
  padding: .15rem .55rem;
  border-radius: 100px;
  margin-bottom: var(--sp-md)
}

.report-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-xs)
}

.report-card__meta {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  margin-bottom: var(--sp-sm)
}

.report-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-lg)
}

.report-card__actions {
  display: flex;
  gap: var(--sp-xs)
}

/* ================================================================
   VOLUNTEER PAGE
   ================================================================ */
.volunteer-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  margin-bottom: var(--sp-3xl)
}

.benefit-card {
  text-align: center;
  padding: var(--sp-2xl) var(--sp-lg);
  border-radius: var(--r-lg);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  transition: all var(--dur) var(--ease)
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm)
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-lg);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 111, 92, .08), rgba(58, 167, 127, .12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--clr-primary)
}

.benefit-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-xs)
}

.benefit-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-normal)
}

/* ================================================================
   FORMS
   ================================================================ */
.form {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--clr-border);
  padding: var(--sp-2xl);
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm)
}

.form__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-xl);
  text-align: center
}

.form__group {
  margin-bottom: var(--sp-lg)
}

.form__label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  margin-bottom: var(--sp-xs);
  color: var(--clr-text)
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  transition: all var(--dur) var(--ease);
  direction: rtl;
  background: var(--clr-bg)
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(31, 111, 92, .08);
  background: var(--clr-white)
}

.form__textarea {
  min-height: 120px;
  resize: vertical
}

.form__submit {
  width: 100%;
  margin-top: var(--sp-sm)
}

.form__success {
  display: none;
  text-align: center;
  padding: var(--sp-lg);
  background: rgba(31, 111, 92, .05);
  border-radius: var(--r-md);
  color: var(--clr-primary);
  font-weight: var(--fw-semi);
  margin-top: var(--sp-md);
  font-size: var(--fs-sm)
}

.form__success.show {
  display: block
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: var(--sp-2xl);
  align-items: start
}

.contact-info-card {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--clr-border);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-sm)
}

.contact-info-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-xl)
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg)
}

.contact-info-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(31, 111, 92, .06), rgba(58, 167, 127, .1));
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem
}

.contact-info-item__label {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  margin-bottom: 2px
}

.contact-info-item__value {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--clr-text)
}

/* ================================================================
   TABS
   ================================================================ */
.tabs {
  display: flex;
  gap: var(--sp-xs);
  justify-content: center;
  margin-bottom: var(--sp-2xl);
  flex-wrap: wrap
}

.tab-btn {
  padding: .5rem 1.25rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  border-radius: 100px;
  background: var(--clr-white);
  color: var(--clr-muted);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition: all var(--dur) var(--ease)
}

.tab-btn:hover,
.tab-btn--active {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary)
}

/* ================================================================
   REVEAL ANIMATION
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .5s var(--ease)
}

.reveal-stagger.visible>* {
  opacity: 1;
  transform: translateY(0)
}

.reveal-stagger.visible>*:nth-child(1) {
  transition-delay: .04s
}

.reveal-stagger.visible>*:nth-child(2) {
  transition-delay: .1s
}

.reveal-stagger.visible>*:nth-child(3) {
  transition-delay: .16s
}

.reveal-stagger.visible>*:nth-child(4) {
  transition-delay: .22s
}

.reveal-stagger.visible>*:nth-child(5) {
  transition-delay: .28s
}

.reveal-stagger.visible>*:nth-child(6) {
  transition-delay: .34s
}

.reveal-stagger.visible>*:nth-child(7) {
  transition-delay: .38s
}

.reveal-stagger.visible>*:nth-child(8) {
  transition-delay: .42s
}

.reveal-stagger.visible>*:nth-child(9) {
  transition-delay: .46s
}

/* ================================================================
   RESPONSIVE — TABLET
   ================================================================ */
@media(max-width:1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero__text {
    margin: 0 auto var(--sp-2xl)
  }

  .hero__actions {
    justify-content: center
  }

  .hero__visual {
    display: none
  }

  .about-preview .container {
    grid-template-columns: 1fr
  }

  .about-preview__visual {
    display: none
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr
  }

  .featured-report {
    grid-template-columns: 1fr
  }

  .featured-report__visual {
    min-height: 180px
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .emergency-page-layout {
    grid-template-columns: 1fr
  }

  .emergency-sidebar {
    position: static
  }
}

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media(max-width:768px) {
  :root {
    --sp-4xl: 3.5rem;
    --sp-5xl: 4.5rem;
    --nav-h: 60px
  }

  .container {
    padding: 0 var(--sp-lg)
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 260px;
    background: var(--clr-white);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--nav-h) + var(--sp-lg)) var(--sp-lg) var(--sp-lg);
    box-shadow: var(--shadow-xl);
    transition: right .4s var(--ease);
    z-index: 1050;
    overflow-y: auto;
    gap: 0
  }

  .nav.open {
    right: 0
  }

  .nav__link {
    padding: .6rem var(--sp-md);
    font-size: var(--fs-sm);
    border-radius: var(--r-sm)
  }

  .nav__link:hover {
    background: var(--clr-bg)
  }

  .nav__link--active::after {
    display: none
  }

  .nav__cta {
    margin-right: 0;
    margin-top: var(--sp-md)
  }

  .hamburger {
    display: flex
  }

  .section-title {
    font-size: var(--fs-2xl)
  }

  .grid--3 {
    grid-template-columns: 1fr
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer__grid {
    grid-template-columns: 1fr
  }

  .volunteer-benefits {
    grid-template-columns: 1fr
  }

  .hero {
    min-height: 72vh
  }

  .hero__title {
    font-size: var(--fs-2xl)
  }

  .page-hero {
    padding: calc(var(--nav-h) + var(--sp-3xl)) 0 var(--sp-2xl)
  }

  .page-hero__title {
    font-size: var(--fs-2xl)
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 var(--sp-md)
  }

  .grid--2,
  .grid--4 {
    grid-template-columns: 1fr
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch
  }

  .filter-bar {
    flex-direction: column
  }

  .btn--lg {
    padding: .75rem 1.35rem;
    font-size: var(--fs-sm)
  }

  .section {
    padding: var(--sp-3xl) 0
  }
}

/* ================================================================
   ARTICLE PAGE — BREADCRUMB
   ================================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .55);
  margin-bottom: var(--sp-xl);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  letter-spacing: .01em
}

.breadcrumb a {
  color: rgba(255, 255, 255, .55);
  transition: color var(--dur) var(--ease);
  text-decoration: none
}

.breadcrumb a:hover {
  color: #fff
}

.breadcrumb__sep {
  opacity: .3;
  font-size: .65em;
  margin: 0 2px
}

.breadcrumb__current {
  color: rgba(255, 255, 255, .9);
  font-weight: var(--fw-semi)
}

/* ================================================================
   ARTICLE PAGE — PAGE HERO EXTENDED
   ================================================================ */
.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: var(--sp-lg);
  position: relative;
  z-index: 2;
  letter-spacing: .02em
}

.page-hero__meta {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .45);
  margin-top: var(--sp-md);
  position: relative;
  z-index: 2;
  letter-spacing: .01em
}

.page-hero__meta span+span::before {
  content: '·';
  margin: 0 .4em;
  opacity: .5
}

/* ================================================================
   ARTICLE PAGE — LAYOUT
   ================================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-3xl);
  align-items: start;
  padding-top: var(--sp-lg)
}

.article-content {
  min-width: 0;
  order: 1
}

.article-sidebar {
  order: 2
}

/* First h2 has no top margin */
.article-content h2:first-child {
  margin-top: 0
}

.article-content h2 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-top: var(--sp-3xl);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--clr-border);
  letter-spacing: -.01em;
  line-height: var(--lh-tight);
  position: relative
}

.article-content h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--clr-primary)
}

.article-content h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--clr-text);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-md);
  line-height: var(--lh-tight)
}

.article-content p {
  font-size: var(--fs-base);
  color: var(--clr-muted);
  line-height: 1.85;
  margin-bottom: var(--sp-lg);
  max-width: 720px
}

.article-content ul,
.article-content ol {
  margin-bottom: var(--sp-xl);
  padding-right: var(--sp-xl);
  list-style: none
}

.article-content li {
  font-size: var(--fs-base);
  color: var(--clr-muted);
  line-height: 1.85;
  margin-bottom: var(--sp-sm);
  padding-right: var(--sp-lg);
  position: relative
}

.article-content ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-primary);
  opacity: .6
}

.article-content ol {
  counter-reset: article-ol
}

.article-content ol li {
  counter-increment: article-ol
}

.article-content ol li::before {
  content: counter(article-ol);
  position: absolute;
  right: 0;
  top: 0;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  width: 1.4em;
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31, 111, 92, .06)
}

/* ================================================================
   ARTICLE PAGE — SIDEBAR
   ================================================================ */
.article-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-xl));
  align-self: start
}

.article-toc {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  padding: var(--sp-xl) var(--sp-lg);
  box-shadow: var(--shadow-xs)
}

.article-toc__title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--clr-border)
}

.article-toc__list {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.article-toc__link {
  display: block;
  padding: var(--sp-xs) var(--sp-sm);
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  border-radius: var(--r-sm);
  transition: all var(--dur) var(--ease);
  border-right: 2px solid transparent
}

.article-toc__link:hover,
.article-toc__link--active {
  background: rgba(31, 111, 92, .03);
  color: var(--clr-primary);
  border-right-color: var(--clr-primary)
}

.article-sidebar__card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  padding: var(--sp-xl) var(--sp-lg);
  margin-top: var(--sp-lg);
  box-shadow: var(--shadow-xs)
}

.article-sidebar__card-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--clr-border)
}

/* Sidebar info items — replace footer__contact-item reuse */
.sidebar-info {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-xs) 0;
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  line-height: var(--lh-normal)
}

.sidebar-info span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
  width: 1.6em;
  text-align: center
}

/* ================================================================
   ARTICLE PAGE — CONTENT BLOCKS
   ================================================================ */
/* Callout Box */
.callout-box {
  background: linear-gradient(135deg, rgba(31, 111, 92, .03), rgba(58, 167, 127, .05));
  border-right: 3px solid var(--clr-primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-xl) var(--sp-xl) var(--sp-xl) var(--sp-lg);
  margin: var(--sp-xl) 0
}

.callout-box__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  margin-bottom: var(--sp-sm);
  display: flex;
  align-items: center;
  gap: var(--sp-xs)
}

.callout-box__text {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.75
}

.callout-box--accent {
  background: linear-gradient(135deg, rgba(201, 76, 76, .02), rgba(201, 76, 76, .05));
  border-right-color: var(--clr-accent)
}

.callout-box--accent .callout-box__title {
  color: var(--clr-accent)
}

/* Fact Box */
.fact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--sp-md);
  margin: var(--sp-xl) 0 var(--sp-2xl)
}

.fact-box__item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--dur) var(--ease)
}

.fact-box__item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--clr-primary);
  opacity: .15;
  transition: opacity var(--dur) var(--ease)
}

.fact-box__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md)
}

.fact-box__item:hover::before {
  opacity: .6
}

.fact-box__value {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  margin-bottom: var(--sp-2xs);
  letter-spacing: -.02em
}

.fact-box__label {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  font-weight: var(--fw-medium)
}

/* Quote Block */
.quote-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, .7), rgba(245, 247, 249, .9));
  border: 1px solid var(--clr-border);
  border-right: 3px solid var(--clr-secondary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-xl) var(--sp-xl) var(--sp-xl) var(--sp-lg);
  margin: var(--sp-2xl) 0;
  font-size: var(--fs-md);
  color: var(--clr-text);
  line-height: 1.85;
  font-weight: var(--fw-medium);
  position: relative
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: var(--sp-sm);
  right: var(--sp-md);
  font-size: 3rem;
  line-height: 1;
  color: var(--clr-secondary);
  opacity: .15;
  font-family: serif
}

/* Related Section */
.related-section {
  margin-top: var(--sp-3xl);
  padding-top: var(--sp-2xl);
  border-top: 1px solid var(--clr-border)
}

.related-section__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-xl);
  color: var(--clr-text)
}

/* Article Back Link */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--clr-primary);
  margin-top: var(--sp-2xl);
  padding: var(--sp-sm) var(--sp-lg);
  border-radius: var(--r-md);
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  transition: all var(--dur) var(--ease)
}

.article-back:hover {
  background: rgba(31, 111, 92, .03);
  border-color: var(--clr-primary);
  color: var(--clr-secondary)
}

.article-back svg {
  width: 14px;
  height: 14px;
  transform: scaleX(-1)
}

/* ================================================================
   ARTICLE PAGE — RESPONSIVE
   ================================================================ */
@media(max-width:1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-xl)
  }

  .article-sidebar {
    position: static;
    order: -1
  }

  .article-toc {
    display: none
  }

  .article-sidebar__card {
    margin-top: 0
  }
}

@media(max-width:768px) {
  .breadcrumb {
    font-size: .7rem;
    gap: var(--sp-xs)
  }

  .article-content h2 {
    font-size: var(--fs-lg);
    margin-top: var(--sp-2xl)
  }

  .callout-box,
  .quote-block {
    padding: var(--sp-lg)
  }

  .fact-box {
    grid-template-columns: repeat(2, 1fr)
  }

  .related-section .grid--3 {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .fact-box {
    grid-template-columns: 1fr
  }

  .fact-box__item {
    padding: var(--sp-md)
  }

  .article-back {
    width: 100%;
    justify-content: center
  }
}

/* ================================================================
   ARTICLE MODULES — HERO IMAGE
   ================================================================ */
.article-hero-img {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-2xl)
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.article-hero-img figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: var(--sp-sm) var(--sp-lg);
  background: linear-gradient(transparent, rgba(0, 0, 0, .55));
  color: rgba(255, 255, 255, .85);
  font-size: var(--fs-xs);
  text-align: right
}

/* ================================================================
   ARTICLE MODULES — INLINE IMAGE
   ================================================================ */
.article-img {
  position: relative;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: var(--sp-xl) 0 var(--sp-2xl)
}

.article-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block
}

.article-img--tall img {
  height: 360px
}

.article-img figcaption {
  padding: var(--sp-sm) 0;
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  text-align: center
}

/* ================================================================
   ARTICLE MODULES — SPLIT BLOCK (image + text side-by-side)
   ================================================================ */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
  margin: var(--sp-2xl) 0
}

.split-block--reverse {
  direction: ltr
}

.split-block--reverse .split-block__text {
  direction: rtl
}

.split-block__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 280px
}

.split-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.split-block__text h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-md);
  line-height: var(--lh-tight)
}

.split-block__text p {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.85
}

/* ================================================================
   ARTICLE MODULES — STATS STRIP
   ================================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-lg);
  margin: var(--sp-2xl) 0;
  padding: var(--sp-xl);
  background: linear-gradient(135deg,
      rgba(31, 111, 92, .03), rgba(58, 167, 127, .04));
  border-radius: var(--r-lg);
  border: 1px solid rgba(31, 111, 92, .08)
}

.stats-strip__item {
  text-align: center;
  padding: var(--sp-md) 0
}

.stats-strip__value {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  letter-spacing: -.02em;
  margin-bottom: var(--sp-2xs)
}

.stats-strip__label {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  font-weight: var(--fw-medium)
}

.stats-strip__divider {
  display: none
}

/* ================================================================
   ARTICLE MODULES — TIMELINE
   ================================================================ */
.article-timeline {
  position: relative;
  margin: var(--sp-2xl) 0;
  padding-right: var(--sp-2xl)
}

.article-timeline::before {
  content: '';
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--clr-border)
}

.article-timeline__item {
  position: relative;
  padding-bottom: var(--sp-xl);
  padding-right: var(--sp-xl)
}

.article-timeline__item::before {
  content: '';
  position: absolute;
  right: 1px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 3px solid var(--clr-primary);
  z-index: 1
}

.article-timeline__item:last-child {
  padding-bottom: 0
}

.article-timeline__date {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  margin-bottom: var(--sp-xs)
}

.article-timeline__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--clr-text);
  margin-bottom: var(--sp-xs)
}

.article-timeline__desc {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.75
}

/* ================================================================
   ARTICLE MODULES — INFO CARDS
   ================================================================ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-lg);
  margin: var(--sp-xl) 0 var(--sp-2xl)
}

.info-cards__item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  transition: all var(--dur) var(--ease)
}

.info-cards__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md)
}

.info-cards__icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-md)
}

.info-cards__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-sm)
}

.info-cards__text {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  line-height: 1.75
}

/* ================================================================
   ARTICLE MODULES — CTA BLOCK
   ================================================================ */
.article-cta {
  background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
  border-radius: var(--r-lg);
  padding: var(--sp-2xl);
  text-align: center;
  margin: var(--sp-2xl) 0;
  color: var(--clr-white)
}

.article-cta__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-sm);
  color: var(--clr-white)
}

.article-cta__text {
  font-size: var(--fs-sm);
  opacity: .85;
  margin-bottom: var(--sp-xl);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75
}

.article-cta .btn {
  background: var(--clr-white);
  color: var(--clr-primary);
  font-weight: var(--fw-bold)
}

.article-cta .btn:hover {
  background: rgba(255, 255, 255, .9);
  transform: translateY(-1px)
}

/* ================================================================
   ARTICLE MODULES — GALLERY STRIP
   ================================================================ */
.article-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin: var(--sp-xl) 0 var(--sp-2xl);
  border-radius: var(--r-lg);
  overflow: hidden
}

.article-gallery__item {
  height: 200px;
  overflow: hidden;
  border-radius: var(--r-md)
}

.article-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur) var(--ease)
}

.article-gallery__item:hover img {
  transform: scale(1.03)
}

/* ================================================================
   ARTICLE MODULES — COMPARE BLOCK
   ================================================================ */
.compare-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  margin: var(--sp-2xl) 0
}

.compare-block__col {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  position: relative;
  overflow: hidden
}

.compare-block__col::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--clr-primary)
}

.compare-block__col--accent::before {
  background: var(--clr-secondary)
}

.compare-block__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-md)
}

.compare-block__list {
  list-style: none;
  padding: 0
}

.compare-block__list li {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  padding: var(--sp-xs) 0;
  padding-right: var(--sp-lg);
  position: relative;
  line-height: 1.75
}

.compare-block__list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: .7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-primary);
  opacity: .5
}

/* ================================================================
   ARTICLE MODULES — INFOGRAPHIC SUMMARY
   ================================================================ */
.infographic-summary {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-2xl);
  margin: var(--sp-2xl) 0
}

.infographic-summary__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-xl);
  text-align: center
}

.infographic-summary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-lg)
}

.infographic-summary__item {
  text-align: center;
  padding: var(--sp-lg);
  background: var(--clr-white);
  border-radius: var(--r-md);
  border: 1px solid var(--clr-border)
}

.infographic-summary__icon {
  font-size: 1.8rem;
  margin-bottom: var(--sp-sm)
}

.infographic-summary__value {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  margin-bottom: var(--sp-2xs)
}

.infographic-summary__label {
  font-size: var(--fs-xs);
  color: var(--clr-muted)
}

/* ================================================================
   ARTICLE MODULES — RESPONSIVE
   ================================================================ */
@media(max-width:768px) {
  .article-hero-img {
    height: 220px
  }

  .article-img img {
    height: 200px
  }

  .split-block {
    grid-template-columns: 1fr;
    gap: var(--sp-xl)
  }

  .split-block__img {
    height: 220px
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .article-gallery {
    grid-template-columns: 1fr 1fr
  }

  .article-gallery__item:last-child {
    display: none
  }

  .compare-block {
    grid-template-columns: 1fr
  }

  .article-cta {
    padding: var(--sp-xl)
  }
}

@media(max-width:480px) {
  .article-hero-img {
    height: 180px;
    border-radius: var(--r-md)
  }

  .split-block__img {
    height: 180px
  }

  .stats-strip {
    grid-template-columns: 1fr
  }

  .article-gallery {
    grid-template-columns: 1fr
  }

  .article-gallery__item {
    height: 180px
  }

  .article-gallery__item:last-child {
    display: block
  }

  .info-cards {
    grid-template-columns: 1fr
  }
}

/* ================================================================ */

/* Section CTA wrapper — centered button below grids */
.section-cta {
  text-align: center;
  margin-top: var(--sp-2xl)
}

/* Intro block — centered large text used on about/volunteer pages */
.intro-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center
}

.intro-block p {
  font-size: var(--fs-lg);
  color: var(--clr-muted);
  line-height: var(--lh-loose)
}

/* Constrained grid — narrower than full container */
.grid--narrow {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto
}

/* Footer social text spacing */
.footer__social-text {
  margin-bottom: var(--sp-md)
}

/* Contact page social links — light variant for white background */
.footer__social-link--light {
  background: rgba(31, 111, 92, .06);
  color: var(--clr-primary)
}

.footer__social-link--light:hover {
  background: var(--clr-primary);
  color: var(--clr-white)
}

/* Contact social heading inside info card */
.contact-social-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-md);
  margin-top: var(--sp-xl)
}

/* LTR input fields (email, phone) */
.form__input--ltr {
  direction: ltr;
  text-align: left
}

/* Form without max-width constraint (for contact grid) */
.form--full {
  max-width: none
}

/* Featured report actions row */
.featured-report__actions {
  display: flex;
  gap: var(--sp-xs);
  flex-wrap: wrap
}

/* About preview visual label */
.about-preview__visual-label {
  opacity: .6;
  font-size: var(--fs-sm)
}

/* Emergency page — page hero flush after alert banner */
.page-hero--flush {
  margin-top: 0;
  padding-top: var(--sp-3xl)
}

/* === Nav Overlay === */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible
}
/* ================================================================
   LANGUAGE SWITCHER OVERRIDES (LTR SUPPORT)
   ================================================================ */
html[dir="ltr"] body {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] .nav__cta {
  margin-right: 0;
  margin-left: var(--sp-sm);
}

@media(max-width:768px) {
  html[dir="ltr"] .nav {
    right: auto;
    left: -100%;
    transition: left .4s var(--ease);
  }
  html[dir="ltr"] .nav.open {
    left: 0;
  }
}

html[dir="ltr"] .card__link svg,
html[dir="ltr"] .article-back svg {
  transform: none;
}

html[dir="ltr"] .emergency-item {
  border-right: none;
  border-left: 3px solid var(--clr-accent);
}

html[dir="ltr"] .callout-box,
html[dir="ltr"] .quote-block {
  border-right: none;
  border-left: 3px solid var(--clr-primary);
  border-radius: var(--r-md) 0 0 var(--r-md);
  padding: var(--sp-xl) var(--sp-xl) var(--sp-xl) var(--sp-lg);
}

html[dir="ltr"] .callout-box--accent {
  border-left-color: var(--clr-accent);
}

html[dir="ltr"] .quote-block {
  border-left-color: var(--clr-secondary);
}

html[dir="ltr"] .quote-block::before {
  right: auto;
  left: var(--sp-md);
}

html[dir="ltr"] .filter-bar__search {
  direction: ltr;
}

html[dir="ltr"] .form__input,
html[dir="ltr"] .form__textarea,
html[dir="ltr"] .form__select {
  direction: ltr;
}

html[dir="ltr"] .article-toc__link {
  border-right: none;
  border-left: 2px solid transparent;
}

html[dir="ltr"] .article-toc__link:hover,
html[dir="ltr"] .article-toc__link--active {
  border-left-color: var(--clr-primary);
}

html[dir="ltr"] .article-content ul,
html[dir="ltr"] .article-content ol {
  padding-right: 0;
  padding-left: var(--sp-xl);
}

html[dir="ltr"] .article-content li {
  padding-right: 0;
  padding-left: var(--sp-lg);
}

html[dir="ltr"] .article-content ul li::before,
html[dir="ltr"] .article-content ol li::before {
  right: auto;
  left: 0;
}

html[dir="ltr"] .article-content h2::after {
  right: auto;
  left: 0;
}

.lang-switcher {
  background: rgba(31, 111, 92, 0.08);
  color: var(--clr-primary);
  border: 1px solid rgba(31, 111, 92, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  margin: 0 var(--sp-xs);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-switcher:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-1px);
}

.hero-panel__camps-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
}

.hero-panel__camp {
  flex: 1;
  min-width: 0;
}

.hero-panel__camp-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-panel__vertical-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
  margin: 0 0.25rem;
}