:root {
  --sand:    rgb(245,245,245);
  --parch:   rgb(245,245,245);
  --ink:     #1f407c;
  --muted:   var(--ink);
  --brown:   var(--ink);
  --copper:  var(--coral);
  --sage:    #5A7A5C;
  --rose:    #C45A6A;
  --cream:   white;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', sans-serif;
  background-color: white;
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.8;
}

/* ── TEXTURE OVERLAY ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}


.nav-bar a:hover { transform: translateY(-2px); }

/* ── HERO ────────────────────────────────────────────── */
.about-hero {
  position: relative;
  z-index: 1;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 6vw 4rem;
  overflow: hidden;
}

/* decorative arabic letter watermark */
.watermark {
  position: absolute;
    font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: 32vw;
  color: rgba(107,63,26,.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

/* diagonal divider */
/* .about-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
} */

/* warm gradient bg */
/* .about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, var(--parch) 0%, var(--cream) 70%);
  z-index: 0;
} */

.hero-inner { position: relative; z-index: 1; max-width: 720px; }

.page-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 2px solid var(--copper);
  padding-bottom: .15rem;
  margin-bottom: 1.5rem;
  animation: riseIn .5s ease both;
}

h1 {
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 1.2rem;
  animation: riseIn .55s ease .1s both;
}
h1 em {
  font-style: normal;
  color: var(--copper);
  position: relative;
}
/* h1 em::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--parch);
  z-index: -1;
  border-radius: 3px;
} */

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.2rem;
  animation: riseIn .55s ease .2s both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── STORY SECTION ───────────────────────────────────── */
.story {
  position: relative;
  z-index: 1;
  padding: 5rem 6vw;
  max-width: 1100px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.story-aside {
  position: sticky;
  top: 100px;
}

.aside-card {
  background: var(--sand);
  border-radius: 28px;
  padding: 2.2rem;
  border: 1.5px solid var(--parch);
  box-shadow: 6px 6px 0 var(--parch);
}

.aside-letter {
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: 6rem;
  color: var(--copper);
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
  text-shadow: 3px 3px 0 rgba(196,112,42,.15);
}

.aside-quote {
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: 1.15rem;
  color: var(--brown);
  line-height: 1.7;
  border-right: 3px solid var(--copper);
  padding-right: 1rem;
  margin-top: 1rem;
}

.aside-attr {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .8rem;
  font-weight: 600;
}

.story-content h2 {
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.story-content h2 .accent { color: var(--copper); }

.story-content p {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 2;
  margin-bottom: 1.6rem;
}

.story-content p strong {
  color: var(--copper);
  font-weight: 700;
}

/* ── VALUES ──────────────────────────────────────────── */
.values {
  background: var(--sand);
  border-top: 1.5px solid var(--parch);
  border-bottom: 1.5px solid var(--parch);
  padding: 5rem 6vw;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--copper);
  text-transform: uppercase;
  display: block;
  margin-bottom: .6rem;
}
.section-header h2 {
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--ink);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 2rem 1.8rem;
  border: 1.5px solid rgba(107,63,26,.1);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, var(--parch) 0%, transparent 70%);
  border-radius: 0 24px 0 80px;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(107,63,26,.12);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: .9rem;
  display: block;
}
.value-card h3 {
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: .5rem;
}
.value-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── MISSION BANNER ──────────────────────────────────── */
.mission-banner {
  position: relative;
  z-index: 1;
  padding: 5rem 6vw;
  text-align: center;
  overflow: hidden;
}
.mission-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d5e 100%);
  z-index: 0;
}
/* decorative pattern */
.mission-banner::after {
  content: 'ع ب ج د ه و ز ح ط ي ك ل م ن';
  position: absolute;
    font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: 6rem;
  color: rgba(255,255,255,.03);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  letter-spacing: 1rem;
  z-index: 0;
  pointer-events: none;
}

.mission-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.mission-inner .section-label { color: var(--parch); opacity: .7; }
.mission-inner h2 {
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1.2rem;
}
.mission-inner h2 span { color: var(--parch); }
.mission-inner p {
  font-size: 1.05rem;
  color: rgba(253,250,243,.75);
  line-height: 2;
  margin-bottom: 2rem;
}
.btn-mission {
  display: inline-block;
 background: linear-gradient(135deg, var(--coral), #ff4f7b);
  color: #fff;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
}
.btn-mission:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,.4); }

/* ── STATS ───────────────────────────────────────────── */
.stats-section {
  position: relative;
  z-index: 1;
  padding: 4rem 6vw;
  max-width: 1000px;
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-box {
  padding: 2rem 1rem;
  border-radius: 20px;
  background: var(--sand);
  border: 1.5px solid var(--parch);
  transition: transform .2s;
}
.stat-box:hover { transform: translateY(-4px); }
.stat-num {
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: 2.6rem;
  color: var(--copper);
  line-height: 1;
  display: block;

  font-weight: 500;
}
.stat-desc {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: .4rem;
}

/* ── PROMISE / PLEDGE ────────────────────────────────── */
.pledge {
  position: relative;
  z-index: 1;
  padding: 5rem 6vw;
  background: var(--parch);
  border-top: 1.5px solid rgba(107,63,26,.12);
}
.pledge-inner {
  max-width: 800px;
  margin: 0 auto;
}
.pledge h2 {
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 2rem;
  text-align: center;
}
.pledge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pledge-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--cream);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(107,63,26,.08);
  font-size: .98rem;
  color: var(--ink);
  line-height: 1.7;
  transition: transform .2s;
}
.pledge-list li:hover { transform: translateX(-4px); }
.pledge-check {
  width: 26px; height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  margin-top: .1rem;
}

/* ── CONTACT CTA ─────────────────────────────────────── */
.contact-strip {
  position: relative;
  z-index: 1;
  padding: 4rem 6vw;
  text-align: center;
}
.contact-strip h2 {
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink);
  margin-bottom: .8rem;
}
.contact-strip p {
  color: var(--muted);
  font-size: .98rem;
  margin-bottom: 1.8rem;
}
.contact-btn {
  display: inline-block;
  border: 2px solid var(--copper);
  color: var(--copper);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 2rem;
  border-radius: 50px;
  transition: background .2s, color .2s;
}
.contact-btn:hover { background: var(--copper); color: #fff; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-aside { position: static; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
}
