/* ═══════════════════════════════════════════════
   FOCCISA, Main Stylesheet
   Refined · Contained · Elevated
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600;1,700;1,900&family=Fira+Sans:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --charcoal:       #0f0f0f;
  --charcoal-2:     #181818;
  --charcoal-3:     #242424;
  --charcoal-4:     #333333;
  --gold:           #c8a951;
  --gold-hover:     #dbbe6e;
  --gold-pale:      #f7f0de;
  --gold-dim:       rgba(200,169,81,0.18);
  --white:          #ffffff;
  --warm-white:     #fdfbf7;
  --paper:          #f8f5ef;
  --paper-2:        #f2ede4;
  --ink:            #1a1a1a;
  --ink-2:          #3a3a3a;
  --ink-3:          #666660;
  --ink-4:          #999990;
  --border-light:   rgba(0,0,0,0.07);
  --border-gold:    rgba(200,169,81,0.28);
  --shadow-sm:      0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.14);
  --radius:         6px;
  --radius-lg:      12px;
  --nav-h:          74px;
  --container:      1120px;
  --container-sm:   760px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px; line-height: 1.65;
  color: var(--ink); background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.12; font-weight: 500; }
p { line-height: 1.75; }

/* ── LAYOUT CONTAINER ── */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.wrap--sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 40px; }

/* ── UTILITIES ── */
.label {
  display: inline-block;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.gold-rule {
  width: 44px; height: 2px;
  background: var(--gold); border-radius: 2px;
  margin: 18px 0 26px;
}
.gold-rule--center { margin: 18px auto 26px; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 30px; border-radius: 3px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: all 0.22s ease; white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold); color: var(--charcoal);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,169,81,0.35); }
.btn-dark {
  background: var(--charcoal); color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover { background: var(--charcoal-3); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline-dark {
  background: transparent; color: var(--ink);
  border-color: rgba(0,0,0,0.25);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light {
  background: transparent; color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
  overflow: hidden;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.10); }
.site-nav__inner {
  width: 100%; padding: 0 40px;
  height: 100%; display: flex; align-items: stretch; justify-content: space-between;
}
.site-nav__logo { display: flex; align-items: center; cursor: pointer; padding: 9px 0; }
.site-nav__logo img { height: 54px; width: auto; }
.site-nav__links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.site-nav__links a {
  color: var(--ink-2); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 4px;
  transition: color 0.18s, background 0.18s; cursor: pointer;
}
.site-nav__links a:hover { color: var(--charcoal); background: var(--paper); }
.site-nav__links a.active { color: var(--gold); }

/* Pulsating full-height CTA */
@keyframes navCtaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,169,81,0.55); }
  60%  { box-shadow: 0 0 0 10px rgba(200,169,81,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,169,81,0); }
}
.site-nav__cta {
  display: flex !important; align-items: center !important;
  background: var(--gold) !important; color: var(--charcoal) !important;
  border-radius: 4px !important;
  padding: 0 32px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  height: calc(var(--nav-h) * 0.75) !important;
  align-self: center !important;
  margin-left: 24px;
  animation: navCtaPulse 2.2s ease-out infinite;
  white-space: nowrap;
  border: none !important;
  transition: background 0.2s, letter-spacing 0.2s !important;
  cursor: pointer;
}
.site-nav__cta:hover {
  background: var(--gold-hover) !important;
  color: var(--charcoal) !important;
  letter-spacing: 0.16em !important;
  animation: none;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; align-self: center;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all 0.3s; border-radius: 2px; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; top: var(--nav-h); z-index: 999;
  background: rgba(8,8,8,0.98); padding: 48px 40px;
  flex-direction: column; gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.6rem; color: rgba(255,255,255,0.6);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   PAGE SYSTEM
═══════════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--charcoal-2);
  position: relative; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.12;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,12,12,0.9) 0%, rgba(12,12,12,0.5) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 72px 40px 80px;
}
.page-hero__breadcrumb {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.page-hero__breadcrumb span { color: var(--gold); }
.page-hero__title { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-style: italic; color: var(--white); margin-bottom: 16px; }
.page-hero__sub { font-size: 1.05rem; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 500px; line-height: 1.75; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1594736797933-d0401ba2fe65?w=1800&q=85') center 30%/cover no-repeat;
  opacity: 0.16;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(200,169,81,0.06) 0%, transparent 65%),
              linear-gradient(170deg, rgba(12,12,12,0.92) 0%, rgba(12,12,12,0.7) 55%, rgba(30,20,8,0.88) 100%);
}
.hero__accent {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 38%; height: 100%;
  background: linear-gradient(to left, rgba(200,169,81,0.04) 0%, transparent 100%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--container); width: 100%;
  margin: 0 auto; padding: 80px 40px;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 36px;
}
.hero__kicker-line { width: 32px; height: 1px; background: var(--gold); }
.hero__kicker-text {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
}
.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-style: italic; font-weight: 500;
  color: var(--white); line-height: 1.06;
  max-width: 720px; margin-bottom: 28px;
}
.hero__title em { color: var(--gold); font-style: italic; }
.hero__sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.58);
  font-weight: 300; line-height: 1.8;
  max-width: 520px; margin-bottom: 44px;
}
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.3); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{height:48px;opacity:0.9} 50%{height:22px;opacity:0.35} }

/* ═══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--charcoal-2);
  border-bottom: 1px solid rgba(200,169,81,0.12);
  padding: 0 40px;
}
.trust-bar__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: stretch;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 10px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.05);
  flex: 1;
}
.trust-bar__item:first-child { padding-left: 0; }
.trust-bar__item:last-child { border-right: none; }
.trust-bar__icon { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.trust-bar__label { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.3; }
.trust-bar__value { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════════
   SECTIONS, SHARED
═══════════════════════════════════════════════ */
.section { padding: 96px 40px; }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--dark { background: var(--charcoal-2); }
.section--charcoal { background: var(--charcoal); }
.section--warm { background: var(--warm-white); }
.section__inner { max-width: var(--container); margin: 0 auto; }
.section__inner--sm { max-width: var(--container-sm); margin: 0 auto; }
.section__head { margin-bottom: 56px; }
.section__head--split {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 20px;
  margin-bottom: 56px;
}
.section__title { font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-style: italic; color: var(--ink); }
.section__title--light { color: var(--white); }
.section__sub { font-size: 1rem; color: var(--ink-3); font-weight: 300; line-height: 1.8; max-width: 560px; margin-top: 14px; }
.section__sub--light { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════════
   ABOUT PREVIEW (Home)
═══════════════════════════════════════════════ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-split__visual { position: relative; }
.about-split__img {
  height: 500px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-split__img img { width: 100%; height: 100%; object-fit: cover; }
.about-split__badge {
  position: absolute; bottom: -24px; right: -24px;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--gold); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-split__badge-num {
  font-family: 'Playfair Display', serif; font-size: 2.2rem;
  font-weight: 500; color: var(--charcoal); line-height: 1;
}
.about-split__badge-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(15,15,15,0.7); margin-top: 2px; }
.about-split__frame {
  position: absolute; top: -16px; left: -16px;
  width: 120px; height: 120px; border-radius: var(--radius-lg);
  background: var(--gold-dim); border: 1.5px solid var(--border-gold);
  z-index: -1;
}

/* ═══════════════════════════════════════════════
   PILLARS
═══════════════════════════════════════════════ */
.pillars-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; margin-top: 0; border-radius: var(--radius); overflow: hidden;
}
.pillar-card {
  background: var(--charcoal-3); padding: 44px 28px;
  border-top: 2px solid transparent;
  transition: all 0.28s ease; cursor: pointer; position: relative;
}
.pillar-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(200,169,81,0.04) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.28s;
}
.pillar-card:hover { background: var(--charcoal-4); border-top-color: var(--gold); }
.pillar-card:hover::after { opacity: 1; }
.pillar-card__icon { font-size: 30px; display: block; margin-bottom: 22px; }
.pillar-card__title {
  font-size: 1.05rem; font-style: italic; color: var(--white);
  margin-bottom: 12px; font-family: 'Playfair Display', serif;
}
.pillar-card__body { font-size: 0.83rem; color: rgba(255,255,255,0.42); line-height: 1.75; font-weight: 300; }

/* ═══════════════════════════════════════════════
   IMPACT STATS
═══════════════════════════════════════════════ */
.impact-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.impact-stat {
  padding: 48px 36px;
  background: var(--white);
  border-right: 1px solid rgba(0,0,0,0.06);
  text-align: center; position: relative;
}
.impact-stat:last-child { border-right: none; }
.impact-stat::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 2px; background: var(--gold); border-radius: 0 0 2px 2px;
}
.impact-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900; color: var(--charcoal);
  display: block; line-height: 1; margin-bottom: 10px;
}
.impact-stat__label { font-size: 11px; color: var(--ink-4); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }

/* ═══════════════════════════════════════════════
   PROJECT CARDS
═══════════════════════════════════════════════ */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.project-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.28s ease; cursor: pointer; display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.project-card__img { height: 210px; overflow: hidden; }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:hover .project-card__img img { transform: scale(1.06); }
.project-card__body { padding: 28px; flex: 1; }
.project-card__tag { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.project-card__title { font-size: 1.1rem; font-style: italic; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.project-card__desc { font-size: 0.85rem; color: var(--ink-3); line-height: 1.75; font-weight: 300; }
.project-card__foot {
  padding: 16px 28px; border-top: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--ink-4); letter-spacing: 0.05em;
}
.project-card__arrow { color: var(--gold); font-size: 16px; transition: transform 0.2s; }
.project-card:hover .project-card__arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════
   NEWS / INSIGHTS
═══════════════════════════════════════════════ */
.news-grid { display: grid; grid-template-columns: 5fr 3fr; gap: 48px; }
.news-featured__img {
  height: 360px; border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 28px; cursor: pointer;
}
.news-featured__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-featured__img:hover img { transform: scale(1.03); }
.news-featured__date { font-size: 10.5px; color: var(--ink-4); letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 10px; }
.news-featured__title { font-size: 1.55rem; font-style: italic; line-height: 1.22; margin-bottom: 14px; color: var(--ink); cursor: pointer; }
.news-featured__title:hover { color: var(--gold); }
.news-featured__excerpt { font-size: 0.9rem; color: var(--ink-3); line-height: 1.78; font-weight: 300; }
.news-featured__link { display: inline-block; margin-top: 18px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.news-sidebar { display: flex; flex-direction: column; }
.news-sidebar__title { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
.news-item { padding: 18px 0; border-bottom: 1px solid var(--border-light); cursor: pointer; }
.news-item__date { font-size: 10px; color: var(--ink-4); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.news-item__title { font-size: 0.95rem; font-style: italic; line-height: 1.35; color: var(--ink); margin-bottom: 4px; transition: color 0.18s; }
.news-item:hover .news-item__title { color: var(--gold); }
.news-item__cat { font-size: 10px; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ═══════════════════════════════════════════════
   GET INVOLVED CARDS
═══════════════════════════════════════════════ */
.involve-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.involve-card {
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: var(--radius-lg); padding: 40px 28px;
  text-align: center; transition: all 0.28s; cursor: pointer;
}
.involve-card:hover { background: rgba(200,169,81,0.06); border-color: var(--gold); transform: translateY(-3px); }
.involve-card__icon { font-size: 34px; display: block; margin-bottom: 18px; }
.involve-card__title { font-size: 1.15rem; font-style: italic; color: var(--white); margin-bottom: 12px; }
.involve-card__desc { font-size: 0.84rem; color: rgba(255,255,255,0.42); line-height: 1.75; font-weight: 300; }
.involve-card__link { display: block; margin-top: 18px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.cta-band {
  background: var(--gold); padding: 72px 40px; text-align: center;
}
.cta-band__inner { max-width: var(--container-sm); margin: 0 auto; }
.cta-band__title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-style: italic; color: var(--charcoal); margin-bottom: 16px; }
.cta-band__sub { font-size: 1rem; color: rgba(15,15,15,0.65); font-weight: 300; line-height: 1.75; margin-bottom: 36px; }

/* ── alternate dark CTA ── */
.cta-dark {
  background: var(--charcoal-2); padding: 80px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-dark::before {
  content: ''; position: absolute;
  top: -40px; right: -40px; width: 300px; height: 300px;
  border-radius: 50%; background: rgba(200,169,81,0.04);
  pointer-events: none;
}
.cta-dark__inner { max-width: 640px; margin: 0 auto; position: relative; }
.cta-dark__title { font-size: clamp(2rem, 3.8vw, 3.2rem); font-style: italic; color: var(--white); margin-bottom: 16px; }
.cta-dark__sub { font-size: 1rem; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.75; margin-bottom: 36px; }

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col--rev { direction: rtl; }
.two-col--rev > * { direction: ltr; }
.content-img { border-radius: var(--radius-lg); overflow: hidden; height: 420px; box-shadow: var(--shadow-md); }
.content-img img { width: 100%; height: 100%; object-fit: cover; }
.timeline-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.timeline-item { padding: 36px 28px; border-right: 1px solid var(--border-light); background: var(--white); }
.timeline-item:last-child { border-right: none; }
.timeline-item__year { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 500; color: var(--gold); margin-bottom: 8px; display: block; }
.timeline-item__text { font-size: 0.84rem; color: var(--ink-3); font-weight: 300; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.value-card { padding: 28px 24px; background: var(--white); border-radius: var(--radius-lg); border-left: 3px solid var(--gold); box-shadow: var(--shadow-sm); }
.value-card__name { font-size: 1rem; font-style: italic; margin-bottom: 8px; color: var(--ink); }
.value-card__desc { font-size: 0.83rem; color: var(--ink-3); font-weight: 300; line-height: 1.7; }
.countries-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.country-tag {
  padding: 8px 18px; background: rgba(200,169,81,0.1);
  color: var(--gold); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--border-gold); border-radius: 100px;
  display: flex; align-items: center; gap: 6px;
}
.leader-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.leader-card { text-align: center; background: var(--white); border-radius: var(--radius-lg); padding: 32px 20px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.leader-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--gold-pale); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; border: 2px solid rgba(200,169,81,0.3); }
.leader-card__name { font-size: 0.95rem; font-style: italic; margin-bottom: 4px; color: var(--ink); }
.leader-card__role { font-size: 0.78rem; color: var(--ink-4); font-weight: 300; line-height: 1.5; }

/* ═══════════════════════════════════════════════
   WHAT WE DO
═══════════════════════════════════════════════ */
.pillar-section { padding: 80px 40px; }
.pillar-section:nth-child(even) { background: var(--paper); }
.pillar-section__inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pillar-section:nth-child(even) .pillar-section__inner { direction: rtl; }
.pillar-section:nth-child(even) .pillar-section__inner > * { direction: ltr; }
.pillar-section__img { height: 400px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.pillar-section__img img { width: 100%; height: 100%; object-fit: cover; }
.pillar-num { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 500; color: var(--gold); opacity: 0.18; line-height: 1; margin-bottom: -14px; display: block; }
.pillar-section__title { font-size: 2rem; font-style: italic; color: var(--ink); margin-bottom: 16px; }
.pillar-section__body { font-size: 0.93rem; color: var(--ink-3); font-weight: 300; line-height: 1.82; margin-bottom: 14px; }
.pillar-points { list-style: none; margin-top: 20px; }
.pillar-points li { padding: 9px 0 9px 20px; border-bottom: 1px solid var(--border-light); font-size: 0.87rem; color: var(--ink-2); position: relative; }
.pillar-points li::before { content: ''; position: absolute; left: 0; top: 50%; width: 8px; height: 1.5px; background: var(--gold); transform: translateY(-50%); }

/* ═══════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.form-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-sm); }
.form-card__title { font-size: 1.35rem; font-style: italic; color: var(--ink); margin-bottom: 6px; }
.form-card__sub { font-size: 0.85rem; color: var(--ink-3); font-weight: 300; margin-bottom: 30px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1px solid rgba(0,0,0,0.13); border-radius: var(--radius);
  font-family: 'Fira Sans', sans-serif; font-size: 14px; color: var(--ink);
  background: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,81,0.1);
}
.form-group textarea { height: 110px; resize: vertical; line-height: 1.6; }
.form-submit-btn {
  width: 100%; padding: 14px; background: var(--charcoal); color: var(--white);
  font-family: 'Fira Sans', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: var(--radius);
  transition: background 0.2s; margin-top: 8px;
}
.form-submit-btn:hover { background: var(--charcoal-3); }
.form-submit-btn--gold { background: var(--gold); color: var(--charcoal); }
.form-submit-btn--gold:hover { background: var(--gold-hover); }
.donation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.donation-amount {
  border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--radius);
  padding: 16px 12px; text-align: center; cursor: pointer; transition: all 0.2s;
}
.donation-amount.selected { border-color: var(--gold); background: var(--gold-pale); }
.donation-amount:hover { border-color: var(--gold); }
.donation-amount__val { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.donation-amount__label { font-size: 10px; color: var(--ink-4); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }
.contact-info__title { font-size: 1.6rem; font-style: italic; margin-bottom: 12px; }
.contact-detail { display: flex; gap: 18px; margin-bottom: 30px; align-items: flex-start; }
.contact-detail__icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-detail__label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-family: 'Fira Sans', sans-serif; margin-bottom: 5px; }
.contact-detail__val { font-size: 0.9rem; color: var(--ink-3); font-weight: 300; line-height: 1.65; }
.map-block {
  height: 300px; background: var(--paper-2); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  font-size: 0.85rem; color: var(--ink-4); margin-top: 28px;
}
.map-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,169,81,0.2); animation: mapPulse 2.2s infinite; }
@keyframes mapPulse { 0%,100%{box-shadow:0 0 0 4px rgba(200,169,81,0.2)} 50%{box-shadow:0 0 0 10px rgba(200,169,81,0.05)} }

/* ═══════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════ */
.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.blog-filter-btn {
  padding: 8px 18px; border-radius: 100px; font-size: 12px; font-weight: 500;
  cursor: pointer; border: 1.5px solid rgba(0,0,0,0.12); background: transparent;
  color: var(--ink-3); transition: all 0.2s;
}
.blog-filter-btn:hover, .blog-filter-btn.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { cursor: pointer; transition: transform 0.24s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card__img { height: 200px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__cat { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.blog-card__title { font-size: 1.05rem; font-style: italic; color: var(--ink); margin-bottom: 10px; line-height: 1.35; }
.blog-card:hover .blog-card__title { color: var(--gold); }
.blog-card__excerpt { font-size: 0.83rem; color: var(--ink-3); font-weight: 300; line-height: 1.75; }
.blog-card__meta { font-size: 10.5px; color: var(--ink-4); margin-top: 12px; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer { background: #080808; padding: 80px 40px 36px; border-top: 1px solid rgba(200,169,81,0.14); }
.footer__grid { max-width: var(--container); margin: 0 auto 64px; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.6fr; gap: 56px; }
.footer__brand-logo img { height: 32px; width: auto; margin-bottom: 20px; opacity: 0.92; }
.footer__brand-desc { font-size: 0.83rem; color: rgba(255,255,255,0.35); line-height: 1.82; font-weight: 300; max-width: 280px; margin-bottom: 20px; }
.footer__wcc { font-size: 10px; color: rgba(255,255,255,0.18); letter-spacing: 0.12em; text-transform: uppercase; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer__col-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-family: 'Fira Sans', sans-serif; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 0.83rem; color: rgba(255,255,255,0.38); font-weight: 300; cursor: pointer; transition: color 0.18s; }
.footer__links a:hover { color: var(--gold); }
.footer__newsletter-desc { font-size: 0.81rem; color: rgba(255,255,255,0.28); font-weight: 300; line-height: 1.7; margin-bottom: 18px; }
.footer__input {
  width: 100%; padding: 11px 14px; margin-bottom: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(200,169,81,0.22);
  color: var(--white); font-family: 'Fira Sans', sans-serif; font-size: 13px;
  border-radius: var(--radius); outline: none; transition: border-color 0.2s;
}
.footer__input::placeholder { color: rgba(255,255,255,0.22); }
.footer__input:focus { border-color: var(--gold); }
.footer__sub-btn {
  width: 100%; padding: 11px; background: var(--gold); color: var(--charcoal);
  font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: var(--radius); transition: background 0.2s;
}
.footer__sub-btn:hover { background: var(--gold-hover); }
.footer__bottom {
  max-width: var(--container); margin: 0 auto;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer__copy { font-size: 11.5px; color: rgba(255,255,255,0.2); }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,169,81,0.18); border-radius: var(--radius);
  color: rgba(255,255,255,0.35); font-size: 13px; text-decoration: none;
  transition: all 0.2s;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,81,0.06); }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.anim { opacity:0; transform:translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim.in { opacity:1; transform:translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* Hero animation */
.hero__kicker   { animation: fadeUp 0.7s 0.1s ease both; }
.hero__title    { animation: fadeUp 0.7s 0.25s ease both; }
.hero__sub      { animation: fadeUp 0.7s 0.4s ease both; }
.hero__btns     { animation: fadeUp 0.7s 0.55s ease both; }
.hero__scroll   { animation: fadeUp 0.7s 0.85s ease both; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --container: 960px; }
  .pillars-grid { grid-template-columns: repeat(3,1fr); }
  .involve-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  :root { --container: 100%; }
  .wrap { padding: 0 24px; }
  .section { padding: 72px 24px; }
  .site-nav__links { display: none; }
  .hamburger { display: flex; }
  .two-col, .about-split, .news-grid, .contact-grid, .form-grid { grid-template-columns: 1fr; gap: 36px; }
  .timeline-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid, .leader-grid { grid-template-columns: 1fr 1fr; }
  .impact-stat { border-right: none; border-bottom: 1px solid var(--border-light); }
  .pillar-section__inner { grid-template-columns: 1fr; direction: ltr !important; }
  .pillar-section:nth-child(even) .pillar-section__inner { direction: ltr; }
  .projects-grid, .blog-grid { grid-template-columns: 1fr; }
  .about-split__badge { right: 12px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .hero__title { font-size: 2.4rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .involve-grid { grid-template-columns: 1fr; }
  .timeline-grid, .values-grid, .leader-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .trust-bar__inner { flex-direction: column; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
}
