/* ═══════════════════════════════════════════════════════════════
   Barr. Ismaeel Ahmed — Personal Website
   Gold-only palette · Light/Dark mode
   ═══════════════════════════════════════════════════════════════ */

/* ── DARK THEME (default) ─────────────────────────────────────── */
:root {
  --bg:        #0d0d0d;
  --bg2:       #141414;
  --bg3:       #1e1e1e;
  --bg4:       #2a2a2a;
  --fg:        #ffffff;
  --fg-muted:  rgba(255,255,255,0.56);
  --fg-dim:    rgba(255,255,255,0.3);
  --border:    rgba(201,168,76,0.22);
  --border-lt: rgba(255,255,255,0.07);

  --gold:      #c9a84c;
  --gold-lt:   #e8cc82;
  --gold-dk:   #9a7a2e;
  --gold-bg:   rgba(201,168,76,0.1);

  --nav-bg:    rgba(13,13,13,0.96);
  --nav-link:  rgba(255,255,255,0.72);
  --hero-left: #0d0d0d;
  --shadow:    0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --r:    4px;
  --r-lg: 12px;
  --transition: 0.3s ease;
}

/* ── LIGHT THEME ──────────────────────────────────────────────── */
[data-theme="light"] {
  --bg:        #f9f6f0;
  --bg2:       #f2ede4;
  --bg3:       #e9e2d5;
  --bg4:       #ddd6c6;
  --fg:        #1a1611;
  --fg-muted:  rgba(26,22,17,0.58);
  --fg-dim:    rgba(26,22,17,0.38);
  --border:    rgba(170,135,50,0.3);
  --border-lt: rgba(0,0,0,0.09);

  --gold:      #b8912e;
  --gold-lt:   #d4a840;
  --gold-dk:   #8a6b1f;
  --gold-bg:   rgba(184,145,46,0.1);

  --nav-bg:    rgba(249,246,240,0.97);
  --nav-link:  rgba(26,22,17,0.65);
  --hero-left: #f2ede4;
  --shadow:    0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(184,145,46,0.2);
}

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
.t-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.t-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.t-display {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.t-display em { font-style: normal; color: var(--gold); }
.t-display-lg { font-size: clamp(3rem, 7vw, 5.5rem); }
.t-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ── LAYOUT ───────────────────────────────────────────────────── */
.wrap    { width: min(1200px, 100% - 48px); margin: 0 auto; }
.wrap-sm { width: min(820px,  100% - 48px); margin: 0 auto; }
.sec    { padding: 100px 0; }
.sec-sm { padding:  60px 0; }
.sec-lg { padding: 140px 0; }

.gold-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ── NAVIGATION ───────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; }
.nav-logo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.nav-logo:hover .nav-logo-avatar { border-color: var(--gold-lt); }
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--fg);
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nav-logo-name span {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--nav-link);
  letter-spacing: 0.03em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { right: 0; }

.nav-cta {
  padding: 8px 20px;
  background: var(--gold);
  color: #0d0d0d !important;
  font-weight: 700;
  border-radius: var(--r);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* Theme toggle */
.nav-theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border-lt);
  border: 1px solid var(--border);
  font-size: 1rem;
  color: var(--fg);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.nav-theme-toggle:hover { background: var(--gold-bg); border-color: var(--gold); transform: rotate(20deg); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--nav-link);
  transition: color var(--transition), background var(--transition);
}
.nav-social-link:hover { color: var(--gold); background: var(--gold-bg); }
.nav-divider {
  width: 1px;
  height: 18px;
  background: var(--border-lt);
  margin: 0 2px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* ── HERO SPLIT ───────────────────────────────────────────────── */
.hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  background: var(--hero-left);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}
.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-right-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--hero-left) 0%, transparent 28%),
              linear-gradient(0deg,   var(--bg)  0%, transparent 22%);
}
.hero-right-quote {
  position: absolute;
  bottom: 48px; left: 32px; right: 32px;
  padding: 20px 24px;
  background: color-mix(in srgb, var(--bg2) 88%, transparent);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-lg);
}
.hero-right-quote p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--fg-muted);
  font-style: italic;
}
.hero-right-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  width: fit-content;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--fg);
}
.hero-title-line {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.hero-desc {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.hero-role-tag {
  padding: 5px 13px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--border);
  overflow: hidden;
  position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scroll-anim 2s ease infinite;
}
@keyframes scroll-anim { 0%{left:-100%} 100%{left:100%} }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #0d0d0d;
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold-bg);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--bg4);
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-dark:hover {
  background: var(--bg3);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-arrow::after { content: '→'; font-size: 1rem; }

/* ── SPLIT SECTION — sticky image ─────────────────────────────── */
/* Use this wrapper on any image-left / text-right section          */
.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;   /* MUST be start, not center, for sticky to work */
}
.split-wrap.reverse { direction: rtl; }
.split-wrap.reverse > * { direction: ltr; }

.split-img-col {
  position: sticky;
  top: 100px;           /* sits just below the 72px nav */
  align-self: start;
}
.split-img-col img {
  width: 100%;
  border-radius: var(--r-lg);
  display: block;
}
.split-img-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg-dim);
  margin-top: 10px;
  line-height: 1.5;
}

.split-content { padding-top: 8px; }

/* ── ABOUT TEASER VARIANT ─────────────────────────────────────── */
.about-teaser { padding: 120px 0; background: var(--bg); }
.about-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 52%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 3px solid var(--bg);
  box-shadow: var(--shadow);
}
.about-img-badge {
  position: absolute;
  top: 24px; left: -20px;
  background: var(--gold);
  color: #0d0d0d;
  padding: 14px 18px;
  border-radius: var(--r-lg);
  text-align: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow-gold);
}
.about-img-badge-num { font-size: 1.8rem; font-weight: 800; line-height: 1; display: block; }
.about-img-badge-txt { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

.about-highlights { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg3);
  border: 1px solid var(--border-lt);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-lg);
}
.about-highlight-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.about-highlight-title { font-weight: 700; font-size: 0.86rem; margin-bottom: 2px; color: var(--fg); }
.about-highlight-desc { font-size: 0.8rem; color: var(--fg-muted); }
.about-body { color: var(--fg-muted); line-height: 1.85; font-size: 1.01rem; margin-bottom: 20px; }

/* ── SECTION BACKGROUNDS ──────────────────────────────────────── */
.bg-2 { background: var(--bg2); }
.bg-3 { background: var(--bg3); }

/* ── TIMELINE ─────────────────────────────────────────────────── */
.timeline-section { padding: 120px 0; background: var(--bg); }
.timeline-header { text-align: center; margin-bottom: 80px; }
.timeline-header .t-eyebrow { justify-content: center; }
.timeline-header .t-eyebrow::before { display: none; }

.timeline { position: relative; max-width: 960px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  margin-bottom: 56px;
  align-items: start;
}
.timeline-item:last-child { margin-bottom: 0; }

.tl-card {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  padding-right: 40px;
  padding-top: 6px;
}
.timeline-dot {
  grid-column: 2;
  grid-row: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  justify-self: center;
}
.timeline-dot.highlight { background: var(--gold); }
.timeline-item:nth-child(even) .tl-card {
  grid-column: 3;
  text-align: left;
  padding-right: 0;
  padding-left: 40px;
}
.timeline-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--fg);
}
.timeline-body { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.75; }

/* ── AWARDS ───────────────────────────────────────────────────── */
.awards-section { padding: 120px 0; background: var(--bg2); }
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.award-card {
  background: var(--bg3);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  padding: 34px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.award-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.award-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.award-card:hover::before { opacity: 1; }
.award-icon { font-size: 2.2rem; margin-bottom: 18px; }
.award-year { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.award-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; color: var(--fg); }
.award-body { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.7; }

/* ── GALLERY STRIP ────────────────────────────────────────────── */
.gallery-strip { padding: 80px 0; background: var(--bg); }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 24px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dk) var(--bg3);
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--bg3); border-radius: 2px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }
.gallery-item { flex-shrink: 0; width: 280px; height: 200px; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── IMAGE LIGHTBOX ───────────────────────────────────────────── */
.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  cursor: zoom-out;
}
.img-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.img-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2);
  cursor: default;
}
.img-lightbox.open img { transform: scale(1); }
.img-lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  z-index: 1;
}
.img-lightbox-close:hover { background: rgba(255,255,255,0.25); }
.img-lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── CTA BAND ─────────────────────────────────────────────────── */
.cta-band {
  background: var(--bg2);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bg) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .t-sub { margin: 0 auto 36px; text-align: center; }
.btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── PAGE HERO ────────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 96px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, var(--gold-bg) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ── BIO PAGE ─────────────────────────────────────────────────── */
.bio-section { padding: 100px 0; background: var(--bg); }
.bio-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.bio-portrait { position: sticky; top: 100px; }
.bio-portrait > img { width: 100%; border-radius: var(--r-lg); margin-bottom: 24px; }
.bio-portrait-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; margin-bottom: 4px; color: var(--fg); }
.bio-portrait-title { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.bio-detail-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.bio-detail-list li { display: flex; gap: 12px; font-size: 0.82rem; }
.bio-detail-key { font-weight: 700; color: var(--gold); min-width: 82px; flex-shrink: 0; }
.bio-detail-val { color: var(--fg-muted); }

.bio-content h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 48px;
  color: var(--fg);
}
.bio-content h2:first-child { margin-top: 0; }
.bio-content h2 em { font-style: normal; color: var(--gold); }
.bio-content p { color: var(--fg-muted); line-height: 1.9; font-size: 0.99rem; margin-bottom: 18px; }
.bio-content p:last-child { margin-bottom: 0; }
.bio-content ul { color: var(--fg-muted); line-height: 1.9; margin: 0 0 24px 20px; }
.bio-content strong { color: var(--fg); }

/* ── QUOTE BLOCK ──────────────────────────────────────────────── */
.quote-block {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  margin: 36px 0;
  position: relative;
}
.quote-block-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 12px; left: 20px;
}
.quote-block p { font-size: 1.08rem; font-style: italic; color: var(--fg) !important; line-height: 1.75; margin-bottom: 12px !important; }
.quote-block cite { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ── PILLAR CARDS (picng.html) ────────────────────────────────── */
.pillars-section { padding: 100px 0; background: var(--bg); }
.pillars-intro { text-align: center; max-width: 700px; margin: 0 auto 72px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
  background: var(--bg3);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  padding: 34px 26px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  opacity: 0;
  transition: opacity var(--transition);
}
.pillar-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar-card:hover::after { opacity: 1; }
.pillar-num { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.pillar-icon { font-size: 2.1rem; margin-bottom: 14px; }
.pillar-title { font-family: var(--font-display); font-size: 1.02rem; font-weight: 800; margin-bottom: 10px; line-height: 1.3; color: var(--fg); }
.pillar-body { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.75; }
.pillar-stats { display: flex; gap: 16px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border-lt); }
.pillar-stat-num { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--gold); line-height: 1; }
.pillar-stat-label { font-size: 0.66rem; color: var(--fg-muted); margin-top: 3px; }

/* ── APPOINTMENT BAND (picng.html) ────────────────────────────── */
.appointment-band { background: var(--bg3); border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt); padding: 40px 0; }
.appointment-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.appointment-date {
  background: var(--gold);
  color: #0d0d0d;
  padding: 18px 26px;
  border-radius: var(--r-lg);
  text-align: center;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.appointment-date-top { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.appointment-date-main { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.appointment-text h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; color: var(--fg); }
.appointment-text p { font-size: 0.86rem; color: var(--fg-muted); line-height: 1.72; max-width: 600px; }

/* ── STATS GRID (picng.html) ──────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-lt);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 60px;
}
.stat-item {
  background: var(--bg3);
  padding: 40px 28px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); }

/* ── IMPACT STRIP (picng.html) ────────────────────────────────── */
.impact-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  padding: 36px 0;
}
.impact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-lt);
}
.impact-strip-item { background: var(--bg2); padding: 28px 24px; text-align: center; }
.impact-strip-num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.impact-strip-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); }

/* ── VISIT BANNER (picng.html) ────────────────────────────────── */
.visit-banner {
  background: var(--gold);
  padding: 72px 0;
  text-align: center;
}
.visit-banner h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: #0d0d0d; margin-bottom: 10px; }
.visit-banner p { color: rgba(13,13,13,0.7); max-width: 520px; margin: 0 auto 28px; font-size: 0.94rem; line-height: 1.75; }
.btn-visit { background: #0d0d0d; color: var(--gold); }
.btn-visit:hover { background: #1e1e1e; transform: translateY(-2px); }

/* ── NEWS COMPONENTS ──────────────────────────────────────────── */
.news-ticker {
  background: var(--bg3);
  border-bottom: 1px solid var(--border-lt);
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.news-ticker-label {
  flex-shrink: 0;
  padding: 0 18px;
  background: var(--gold);
  color: #0d0d0d;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.news-ticker-scroll { flex: 1; overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent); }
.news-ticker-track { display: flex; gap: 0; animation: ticker-scroll 40s linear infinite; width: max-content; }
.news-ticker-track:hover { animation-play-state: paused; }
.news-ticker-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 36px; font-size: 0.77rem; font-weight: 500;
  white-space: nowrap; color: var(--fg-muted); border-right: 1px solid var(--border-lt);
  height: 44px; cursor: pointer; transition: color var(--transition);
}
.news-ticker-item:hover { color: var(--gold); }
.news-ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.news-ticker-dot.breaking { background: #e05050; animation: pulse 1.5s ease infinite; }
@keyframes ticker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.news-hero { padding: 72px 0 56px; background: var(--bg2); }
.news-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: start; }

.news-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.news-tag.breaking { background: rgba(224,80,80,0.12); border-color: rgba(224,80,80,0.3); color: #e05050; }
.news-date { font-size: 0.74rem; color: var(--fg-dim); font-weight: 500; }

.news-featured-card {
  background: var(--bg3);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.news-featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border); }
.news-featured-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.news-featured-body { padding: 28px; }
.news-featured-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.news-featured-title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; line-height: 1.25; margin-bottom: 10px; color: var(--fg); }
.news-featured-excerpt { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.75; margin-bottom: 18px; }
.news-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); transition: gap var(--transition); }
.news-read-more:hover { gap: 10px; }
.news-read-more::after { content: '→'; }

.news-sidebar { display: flex; flex-direction: column; gap: 14px; }
.news-sidebar-item {
  display: grid; grid-template-columns: 96px 1fr; gap: 0;
  background: var(--bg3); border: 1px solid var(--border-lt);
  border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}
.news-sidebar-item:hover { border-color: var(--border); transform: translateX(4px); }
.news-sidebar-img { width: 96px; height: 100%; min-height: 80px; object-fit: cover; }
.news-sidebar-body { padding: 12px 14px; }
.news-sidebar-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.news-sidebar-title { font-family: var(--font-display); font-size: 0.86rem; font-weight: 700; line-height: 1.35; margin-bottom: 4px; color: var(--fg); }
.news-sidebar-date { font-size: 0.68rem; color: var(--fg-dim); }

.news-grid-section { padding: 72px 0; background: var(--bg); }
.news-grid-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 44px; gap: 20px; flex-wrap: wrap; }
.news-filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  padding: 6px 15px; border: 1px solid var(--border); border-radius: 100px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-muted); cursor: pointer; transition: all var(--transition);
}
.filter-pill:hover { color: var(--fg); border-color: var(--fg-dim); }
.filter-pill.active { background: var(--gold); border-color: var(--gold); color: #0d0d0d; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card {
  background: var(--bg3); border: 1px solid var(--border-lt); border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border); }
.news-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; flex-shrink: 0; }
.news-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.news-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.news-card-title { font-family: var(--font-display); font-size: 0.97rem; font-weight: 700; line-height: 1.35; margin-bottom: 8px; color: var(--fg); flex: 1; }
.news-card-excerpt { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 14px; flex: 1; }
.news-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-lt); }
.news-card-date { font-size: 0.7rem; color: var(--fg-dim); font-weight: 500; }

/* ── NEWS MODAL ───────────────────────────────────────────────── */
.news-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.news-modal-overlay.open { opacity: 1; pointer-events: all; }
.news-modal-card {
  background: var(--bg2);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  width: min(760px, 100%);
  position: relative;
  transform: translateY(24px);
  transition: transform 0.3s ease;
  overflow: hidden;
}
.news-modal-overlay.open .news-modal-card { transform: translateY(0); }
.news-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.4); color: #fff;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background var(--transition);
}
.news-modal-close:hover { background: rgba(0,0,0,0.6); }
.news-modal-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.news-modal-body { padding: 36px; }
.news-modal-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.news-modal-title { font-family: var(--font-display); font-size: 1.55rem; font-weight: 800; line-height: 1.2; margin-bottom: 22px; color: var(--fg); }
.news-modal-content { color: var(--fg-muted); line-height: 1.85; font-size: 0.96rem; }
.news-modal-content p { margin-bottom: 16px; }
.news-modal-content p:last-child { margin-bottom: 0; }
.news-modal-sources { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border-lt); }
.news-modal-sources-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.news-modal-sources-links { display: flex; gap: 10px; flex-wrap: wrap; }
.news-modal-src-link { padding: 6px 13px; border: 1px solid var(--border); border-radius: var(--r); font-size: 0.74rem; font-weight: 600; color: var(--fg-muted); transition: all var(--transition); }
.news-modal-src-link:hover { border-color: var(--gold); color: var(--gold); }
.news-modal-share { display: flex; align-items: center; gap: 10px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border-lt); flex-wrap: wrap; }
.news-modal-share-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); }
.share-btn { padding: 7px 14px; border-radius: var(--r); font-size: 0.73rem; font-weight: 600; transition: all var(--transition); display: inline-flex; align-items: center; gap: 5px; cursor: pointer; border: none; }
.share-btn-copy { background: var(--bg4); color: var(--fg); border: 1px solid var(--border); }
.share-btn-copy:hover { border-color: var(--gold); color: var(--gold); }
.share-btn-wa { background: #25d366; color: #fff; }
.share-btn-wa:hover { background: #1da851; }
.share-btn-x { background: var(--bg4); color: var(--fg); border: 1px solid var(--border); }
.share-btn-x:hover { border-color: var(--fg); }

/* ── CONTACT FORM ─────────────────────────────────────────────── */
.contact-section { padding: 100px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info-title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; margin-bottom: 14px; color: var(--fg); }
.contact-info-title em { font-style: normal; color: var(--gold); }
.contact-info-body { color: var(--fg-muted); line-height: 1.85; font-size: 0.96rem; margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: var(--bg3); border: 1px solid var(--border-lt); border-left: 3px solid var(--gold); border-radius: var(--r-lg); }
.contact-card-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-card-title { font-weight: 700; font-size: 0.86rem; margin-bottom: 3px; color: var(--fg); }
.contact-card-body { font-size: 0.8rem; color: var(--fg-muted); }
.contact-form-wrap { background: var(--bg2); border: 1px solid var(--border-lt); border-radius: var(--r-lg); padding: 40px 36px; }
.contact-form-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; margin-bottom: 6px; color: var(--fg); }
.contact-form-sub { font-size: 0.83rem; color: var(--fg-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 11px 14px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); color: var(--fg);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color var(--transition), background var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); background: var(--bg4); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--fg-dim); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--bg3); color: var(--fg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 0.73rem; color: var(--fg-dim); margin-top: 14px; line-height: 1.6; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border-lt); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; margin-bottom: 44px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; color: var(--fg); }
.footer-brand-role { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-brand-desc { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.75; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; align-items: center; margin-top: 4px; }
.footer-social-bottom { margin-top: 0; }
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-social-link:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-bg); }
.footer-col-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 0.83rem; color: var(--fg-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--fg); }
.footer-bottom { border-top: 1px solid var(--border-lt); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 0.76rem; color: var(--fg-dim); }
.footer-copy a { color: var(--gold); font-weight: 600; }
.footer-copy a:hover { text-decoration: underline; }

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right, .reveal-up {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal       { transform: translateY(24px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-up    { transform: translateY(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
  opacity: 1; transform: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 140px 40px 60px; }

  /* Hero image: natural flex column so quote flows below image instead of overlapping */
  .hero-right {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: unset;
    overflow: hidden;
  }
  .hero-right img {
    width: 100%;
    height: 75vw;
    min-height: 420px;
    max-height: 600px;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    display: block;
  }
  /* Overlay only covers the image area, not the quote below.
     Keep it subtle so it doesn't darken the face. */
  .hero-right-ov {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 75vw;
    min-height: 420px;
    max-height: 600px;
    bottom: auto;
    background: linear-gradient(0deg, rgba(13,13,13,0.35) 0%, transparent 25%),
                linear-gradient(180deg, rgba(13,13,13,0.2) 0%, transparent 30%);
  }
  /* Quote pulled out of absolute position — sits below the image */
  .hero-right-quote {
    position: static;
    margin: 0;
    border-radius: 0;
    border: none;
    border-left: 3px solid var(--gold);
    border-top: 1px solid var(--border-lt);
    background: var(--bg2);
    backdrop-filter: none;
    flex-shrink: 0;
  }

  .split-wrap { grid-template-columns: 1fr; gap: 40px; }
  /* Reset top:0 — on desktop top:100px is a sticky offset, but on mobile
     position switches to relative so top:100px becomes a layout offset that
     pushes the image DOWN onto the text below it. Must clear it. */
  .split-img-col { position: relative; top: 0; overflow: hidden; }
  .split-wrap.reverse { direction: ltr; }

  /* Hide overlapping accent image and floating badge on all mobile sizes */
  .about-img-accent { display: none !important; }
  .about-img-badge  { display: none !important; }

  .bio-grid { grid-template-columns: 1fr; }
  /* !important overrides any inline style="position:relative" on the element */
  .bio-portrait { position: static !important; margin-bottom: 40px; }

  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .news-hero-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .timeline::before { left: 22px; transform: none; }
  .timeline-item { grid-template-columns: 44px 1fr; }
  .tl-card { grid-column: 2; grid-row: 1; text-align: left; padding-right: 0; padding-left: 0; }
  .timeline-item:nth-child(even) .tl-card { grid-column: 2; text-align: left; padding-left: 0; }
  .timeline-dot { grid-column: 1; justify-self: start; }
  .timeline-item:nth-child(even) .timeline-dot { grid-column: 1; }
}

@media (max-width: 768px) {
  /* Nav — clean mobile bar: avatar + name | theme toggle + burger */
  .site-nav { padding: 0 18px; height: 64px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  /* Hide CTA, social row, divider and logo subtitle on mobile */
  .nav-cta { display: none !important; }
  .nav-social { display: none; }
  .nav-divider { display: none; }
  .nav-logo-name span { display: none; }
  .nav-logo-name { font-size: 0.88rem; }
  .nav-logo-avatar { width: 34px; height: 34px; }

  /* Mobile dropdown menu */
  .nav-mobile-open {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0 24px;
    z-index: 999;
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }
  .nav-mobile-open li { list-style: none; }
  .nav-mobile-open a {
    display: block;
    padding: 13px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--fg-muted);
    border-bottom: 1px solid var(--border-lt);
    transition: color var(--transition), background var(--transition);
  }
  .nav-mobile-open a:hover, .nav-mobile-open a.active { color: var(--gold); background: var(--gold-bg); }
  .nav-mobile-open .mobile-cta {
    margin: 16px 20px 0;
    background: var(--gold);
    color: #0d0d0d !important;
    font-weight: 700;
    border-radius: var(--r);
    text-align: center;
    border-bottom: none;
    padding: 13px 24px;
  }
  .nav-mobile-open .mobile-cta:hover { background: var(--gold-lt) !important; }

  .wrap { width: calc(100% - 40px); }
  .hero-left { padding: 120px 24px 48px; }
  /* Hide scroll indicator — it sits at absolute left:64px which can cause overflow */
  .scroll-indicator { display: none; }

  .awards-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .sec, .about-teaser, .timeline-section, .awards-section, .pillars-section { padding: 72px 0; }
  .page-hero { padding: 120px 0 72px; }

  /* ── REVEAL ANIMATION FIX ──────────────────────────────────────
     On mobile the IntersectionObserver can miss elements clipped by
     overflow-x:hidden + translateX transforms. Force all reveal
     elements visible so content is never stuck at opacity:0.        */
  .reveal, .reveal-left, .reveal-right, .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Quote is static below the image (not overlapping), safe to show */
  .hero-right-quote { display: block; padding: 16px 20px; }
  .hero-right-quote p { font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .impact-strip-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }

  /* Slightly tighten image on very small screens but keep it generous */
  .hero-right img { min-height: 340px; }
  .hero-right-ov { min-height: 340px; }
}
