/* =====================================================================
   Raza Ur Rehman — Portfolio  |  Modern Premium Redesign
   ===================================================================== */

:root {
  --ink:        #070605;
  --ink-2:      #0E0C09;
  --ink-3:      #161410;
  --gold:       #E8B84B;
  --gold-soft:  #F5D880;
  --gold-deep:  #C8900A;
  --amber:      #C85A12;
  --amber-soft: #E8824A;
  --paper:      #F5EFE2;
  --paper-2:    #EDE5D4;
  --ink-text:   #1A1408;
  --muted:      #7A7060;
  --line:       rgba(232,184,75,.12);
  --line-light: rgba(0,0,0,.08);
  --radius:     20px;
  --gold-grad:  linear-gradient(120deg, #E8B84B 0%, #F5D880 50%, #C8900A 100%);
  --amber-grad: linear-gradient(120deg, #C85A12 0%, #E8824A 50%, #A04010 100%);
  --dark-grad:  linear-gradient(160deg, #0E0C09 0%, #161410 100%);
  --shadow-sm:  0 4px 12px -4px rgba(0,0,0,.4);
  --shadow-md:  0 12px 32px -12px rgba(0,0,0,.55);
  --shadow-lg:  0 28px 64px -24px rgba(0,0,0,.7);
  --shadow-glow:0 0 40px -8px rgba(232,184,75,.35);
  --ease-out:   cubic-bezier(.16,1,.3,1);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--ink);
  color: #D8CEBC;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.08;
  color: #fff;
  font-weight: 700;
}
.container { width: min(1180px, 92%); margin-inline: auto; }
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Scroll progress bar ───────────────────────────────────────────── */
.scroll-bar {
  position: fixed; top: 0; left: 0; z-index: 300;
  height: 2px; width: 0%;
  background: var(--gold-grad);
  box-shadow: 0 0 12px rgba(232,184,75,.7);
  transition: width .08s linear;
  pointer-events: none;
}

/* ── Side navigation dots ──────────────────────────────────────────── */
.side-nav {
  position: fixed; right: 1.6rem; top: 50%;
  transform: translateY(-50%);
  z-index: 50; display: flex; flex-direction: column; gap: .75rem;
}
.snav-dot {
  position: relative; width: 8px; height: 8px;
  border-radius: 50%; background: rgba(232,184,75,.25);
  border: 1px solid rgba(232,184,75,.2);
  transition: all .3s var(--ease-out);
  display: block;
}
.snav-dot:hover, .snav-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(232,184,75,.6);
  transform: scale(1.4);
}
.snav-dot .snav-label {
  position: absolute; right: calc(100% + .8rem); top: 50%;
  transform: translateY(-50%);
  background: rgba(14,12,9,.9); backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--gold-soft); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.snav-dot:hover .snav-label { opacity: 1; }

/* ── Shared section elements ───────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold-soft);
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px;
  background: var(--gold-grad); border-radius: 2px; flex-shrink: 0;
}
.section { padding: clamp(5rem,10vw,9rem) 0; position: relative; }
.section-title {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  margin: .8rem 0 0; letter-spacing: -.6px;
}
.section-lead { color: #A89E88; max-width: 58ch; margin-top: 1rem; }

.section--light {
  background: var(--paper);
  color: var(--ink-text);
}
.section--light h2,
.section--light h3,
.section--light h4 { color: var(--ink-text); }
.section--light .section-lead { color: var(--muted); }
.section--light .eyebrow { color: var(--amber); }
.section--light .eyebrow::before { background: var(--amber-grad); }

/* ── Navbar ────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 1.1rem 0; transition: .35s var(--ease-out);
  background: #000;
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav.scrolled {
  background: #000;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 32px -16px rgba(0,0,0,.6);
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  font-weight: 800; color: #fff; font-size: 1.05rem;
}
.brand .mark {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: 'Fraunces'; font-weight: 900; font-size: 1.1rem;
  color: var(--ink); background: var(--gold-grad);
  box-shadow: 0 6px 18px -6px rgba(232,184,75,.6);
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  font-size: .86rem; font-weight: 600; color: rgba(255,255,255,.65);
  position: relative; padding: .2rem 0; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--gold-grad);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold-grad) !important;
  color: var(--ink) !important;
  padding: .5rem 1.2rem; border-radius: 999px;
  font-weight: 700; font-size: .86rem;
  box-shadow: 0 8px 24px -8px rgba(232,184,75,.5);
  transition: box-shadow .3s, transform .3s var(--ease-spring) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  box-shadow: 0 12px 32px -8px rgba(232,184,75,.7), 0 0 0 4px rgba(232,184,75,.15) !important;
  transform: translateY(-2px);
}
.nav-toggle {
  display: none; background: none; border: 0;
  color: #fff; font-size: 1.5rem; cursor: pointer; padding: .4rem;
  line-height: 1;
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 7rem; padding-bottom: 5rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 100% 90% at 50% -10%,
    rgba(200,144,10,.12) 0%, transparent 60%),
    linear-gradient(180deg, #070605 0%, #0D0A06 60%, #070605 100%);
}
/* grid */
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .25;
  background-image:
    linear-gradient(rgba(232,184,75,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,184,75,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(70% 60% at 55% 40%, #000, transparent 80%);
  mask-image: radial-gradient(70% 60% at 55% 40%, #000, transparent 80%);
}
/* animated blobs */
.blob {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0; will-change: transform;
}
.b1 {
  width: min(800px, 100vw); height: min(800px, 100vw);
  background: radial-gradient(circle, rgba(232,184,75,.14) 0%, transparent 65%);
  top: -30%; right: -15%;
  animation: blobDrift 16s ease-in-out infinite;
}
.b2 {
  width: min(600px, 80vw); height: min(600px, 80vw);
  background: radial-gradient(circle, rgba(200,90,18,.12) 0%, transparent 65%);
  bottom: -20%; left: -10%;
  animation: blobDrift 20s ease-in-out infinite reverse;
  animation-delay: -7s;
}
.b3 {
  width: min(380px, 60vw); height: min(380px, 60vw);
  background: radial-gradient(circle, rgba(232,184,75,.08) 0%, transparent 65%);
  top: 35%; left: 30%;
  animation: blobDrift 12s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes blobDrift {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -50px) scale(1.06); }
  66%      { transform: translate(-30px, 30px) scale(.94); }
}
/* watermark */
.hero-watermark {
  position: absolute; right: -1%; bottom: 5%; z-index: 0;
  font-family: 'Fraunces'; font-weight: 900;
  font-size: clamp(6rem, 20vw, 16rem);
  color: rgba(232,184,75,.035);
  letter-spacing: -.04em; line-height: 1;
  user-select: none; pointer-events: none; white-space: nowrap;
}

.hero .container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem; align-items: center;
}

/* pills */
.hero-pills {
  display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.8rem;
}
.hpill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .38rem 1rem; border-radius: 999px;
  border: 1px solid rgba(232,184,75,.28);
  background: rgba(232,184,75,.07);
  backdrop-filter: blur(10px);
  color: var(--gold-soft); font-size: .76rem;
  font-weight: 700; letter-spacing: .04em;
  transition: background .25s, border-color .25s;
}
.hpill:hover {
  background: rgba(232,184,75,.14);
  border-color: rgba(232,184,75,.5);
}

/* name */
.hero h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  white-space: nowrap;
  font-weight: 900; letter-spacing: -2px; line-height: 1.05;
  background: linear-gradient(145deg, #fff 0%, #F0DFBA 55%, var(--gold-soft) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0;
}
.hero-divider {
  width: 72px; height: 3px; border-radius: 2px;
  background: var(--gold-grad);
  box-shadow: 0 0 16px rgba(232,184,75,.5);
  margin: 1.8rem 0;
}
.hero p.lead {
  font-size: 1.1rem; color: #BEB0A0; max-width: 50ch; line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem;
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; padding: .9rem 1.7rem;
  border-radius: 999px; cursor: pointer; border: 0;
  font-size: .96rem; font-family: 'Plus Jakarta Sans';
  transition: transform .3s var(--ease-spring), box-shadow .3s;
  will-change: transform;
}
.btn-gold {
  background: var(--gold-grad); color: var(--ink);
  box-shadow: 0 14px 32px -12px rgba(232,184,75,.55);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 48px -12px rgba(232,184,75,.7),
              0 0 0 4px rgba(232,184,75,.12);
}
.btn-ghost {
  background: rgba(255,255,255,.05); color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(232,184,75,.3);
  transform: translateY(-3px);
}

/* hero entrance animations */
.ha { opacity: 0; transform: translateY(28px) scale(.98); }
.ha.ha-1 { animation: haIn .8s .15s cubic-bezier(.16,1,.3,1) forwards; }
.ha.ha-2 { animation: haIn .8s .3s  cubic-bezier(.16,1,.3,1) forwards; }
.ha.ha-3 { animation: haIn .7s .45s cubic-bezier(.16,1,.3,1) forwards; }
.ha.ha-4 { animation: haIn .7s .58s cubic-bezier(.16,1,.3,1) forwards; }
.ha.ha-5 { animation: haIn .7s .72s cubic-bezier(.16,1,.3,1) forwards; }
.ha.ha-6 { animation: haIn .7s .88s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes haIn {
  from { opacity: 0; transform: translateY(28px) scale(.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* hero stats */
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2.8rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.07);
}
.hero-stats .stat .n {
  font-family: 'Fraunces'; font-weight: 900;
  font-size: 2.4rem; color: #fff; line-height: 1;
}
.hero-stats .stat .n .gold-text,
.hero-stats .stat .n .count { font-size: inherit; }
.hero-stats .stat .n sup { font-size: 1.1rem; }
.hero-stats .stat .l {
  font-size: .78rem; letter-spacing: .06em;
  color: #7A7060; margin-top: .35rem; text-transform: uppercase; font-weight: 700;
}

/* portrait */
.hero-portrait {
  position: relative; display: grid; place-items: center;
  padding: 2rem 1rem 2.5rem;
}
.portrait-wrap { position: relative; width: min(340px, 78vw); }
.portrait-bg-shape {
  position: absolute; inset: -20px -12px -32px -12px;
  border-radius: 32px;
  background: linear-gradient(145deg,
    rgba(232,184,75,.10), rgba(200,90,18,.06));
  border: 1px solid rgba(232,184,75,.14);
  transform: rotate(-2.5deg); z-index: 0;
}
.portrait-frame {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: 24px; overflow: hidden;
  border: 1.5px solid rgba(232,184,75,.45);
  background: linear-gradient(160deg, #1A1810, #0E0C09);
  box-shadow: 0 40px 80px -24px rgba(0,0,0,.85),
              0 0 0 6px rgba(232,184,75,.05),
              var(--shadow-glow);
  z-index: 1;
}
.portrait-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease-out);
}
.portrait-frame:hover img { transform: scale(1.03); }
.portrait-frame .ph {
  width: 100%; height: 100%; display: grid; place-items: center;
  font-family: 'Fraunces'; font-weight: 900;
  font-size: 5rem; color: rgba(232,184,75,.4);
}
.portrait-overlay {
  position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(to top, rgba(7,6,5,.7), transparent);
  pointer-events: none;
}
.portrait-nameplate {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.2rem; padding: 0 .3rem;
  position: relative; z-index: 1;
}
.pn-line {
  flex: 0 0 32px; height: 3px; border-radius: 2px;
  background: var(--gold-grad);
}
.pn-name {
  font-family: 'Fraunces'; font-weight: 700;
  font-size: 1.05rem; color: #fff; display: block; line-height: 1.2;
}
.pn-role {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  color: var(--gold-soft); text-transform: uppercase; display: block;
  margin-top: .15rem;
}
.portrait-badge {
  position: absolute; top: 12px; right: -20px;
  background-color: #0E0C09;
  background-image: linear-gradient(145deg,
    rgba(232,184,75,.2), rgba(232,184,75,.04));
  border: 1px solid rgba(232,184,75,.4);
  border-radius: 16px; padding: .7rem 1rem;
  text-align: center; z-index: 3;
  box-shadow: 0 12px 32px -10px rgba(0,0,0,.7),
              0 0 0 1px rgba(232,184,75,.08);
}
.pb-num {
  display: block; font-family: 'Fraunces'; font-weight: 900;
  font-size: 1.65rem; line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pb-num sup { font-size: .85rem; }
.pb-label {
  display: block; font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #8A8070; margin-top: .25rem; line-height: 1.4;
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: .5; pointer-events: none;
}
.scroll-hint-text {
  font-size: .65rem; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-soft);
}
.scroll-hint-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── Quote strip ───────────────────────────────────────────────────── */
.quote-strip {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #5C3C06 0%, #8A6010 50%, #C89020 100%);
}
.quote-strip::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.quote-strip::after {
  content: '\201D'; position: absolute; right: 3%; top: -3rem;
  font-family: 'Fraunces'; font-size: clamp(10rem,22vw,20rem);
  color: rgba(255,255,255,.08); line-height: 1;
  pointer-events: none;
}
.quote-strip .container {
  padding: clamp(3.5rem,7vw,5rem) 0;
  position: relative; z-index: 2;
}
.quote-strip blockquote {
  font-family: 'Fraunces'; font-weight: 600;
  font-size: clamp(1.5rem,3.2vw,2.2rem);
  color: #fff; margin: 0; max-width: 28ch; line-height: 1.35;
}
.quote-strip cite {
  display: block; margin-top: 1.5rem;
  font-style: normal; font-weight: 700;
  color: rgba(255,255,255,.8); letter-spacing: .04em;
}
.quote-strip cite span { color: #fff8d0; }

/* ── Impact counter band ───────────────────────────────────────────── */
.impact-band {
  background: #070605;
  position: relative; overflow: hidden;
  padding: clamp(4rem,8vw,6.5rem) 0;
  border-top: 1px solid rgba(232,184,75,.08);
  border-bottom: 1px solid rgba(232,184,75,.08);
}
.impact-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 20% 50%, rgba(232,184,75,.06), transparent 65%),
    radial-gradient(ellipse 60% 100% at 80% 50%, rgba(200,90,18,.05), transparent 65%);
  pointer-events: none;
}
.impact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; z-index: 1;
}
.impact-stat {
  text-align: center; padding: 1.5rem;
  position: relative;
}
.impact-stat + .impact-stat::before {
  content: ''; position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px; background: var(--line);
}
.impact-n-wrap {
  display: flex; align-items: flex-start; justify-content: center;
  gap: .1rem; line-height: 1;
}
.impact-n {
  font-family: 'Fraunces'; font-weight: 900;
  font-size: clamp(3rem, 5.5vw, 5rem);
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  will-change: contents;
}
.impact-unit {
  font-family: 'Fraunces'; font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-top: .4rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.impact-label {
  margin-top: 1rem; font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #5A5242;
}

/* ── Legacy thread ─────────────────────────────────────────────────── */
.legacy { background: var(--dark-grad); }
.legacy-head { text-align: center; max-width: 58ch; margin: 0 auto 4rem; }
.legacy-head .section-lead { margin-inline: auto; }

.thread { position: relative; max-width: 880px; margin-inline: auto; }
.thread::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg,
    rgba(232,184,75,0), var(--gold) 10%, var(--gold) 90%, rgba(232,184,75,0));
  box-shadow: 0 0 20px 1px rgba(232,184,75,.35);
}
.gen-label { text-align: center; margin: 0 auto 2rem; position: relative; z-index: 2; }
.gen-label span {
  display: inline-block;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232,184,75,.3);
  color: var(--gold-soft); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; font-size: .7rem;
  padding: .5rem 1.3rem; border-radius: 999px;
}
.gen-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 1rem; position: relative; z-index: 2;
}
.gen-row.single { grid-template-columns: min(560px,100%); justify-content: center; }

.person-card {
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 1.6rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  box-shadow: var(--shadow-md);
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-out);
  will-change: transform;
}
.person-card:hover {
  border-color: rgba(232,184,75,.2);
  box-shadow: var(--shadow-lg), 0 0 30px -10px rgba(232,184,75,.15);
  transform: translateY(-4px);
}
.person-card .avatar {
  flex: 0 0 84px; width: 84px; height: 84px;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(232,184,75,.3);
  background: var(--ink-3); display: grid; place-items: center;
}
.person-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.person-card .avatar .ph {
  font-family: 'Fraunces'; font-weight: 900;
  font-size: 1.6rem; color: rgba(232,184,75,.55);
}
.person-card h3 { font-size: 1.2rem; color: #fff; }
.person-card .desig {
  color: var(--gold-soft); font-weight: 700;
  font-size: .86rem; margin-top: .15rem;
}
.person-card .msg { color: #A89E88; font-size: .9rem; margin-top: .7rem; }

.gen-node {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); margin: 0 auto 1.8rem;
  position: relative; z-index: 3;
  box-shadow: 0 0 0 5px rgba(232,184,75,.15), 0 0 24px 4px rgba(232,184,75,.5);
}

/* chairman card */
.chair {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 2.8rem; align-items: center;
  background-color: #0C0A07;
  background-image: linear-gradient(145deg, rgba(232,184,75,.12), rgba(200,90,18,.04));
  border: 1px solid rgba(232,184,75,.2);
  border-radius: 28px; padding: clamp(1.8rem,3.5vw,3rem);
  margin-top: 2.5rem; position: relative; z-index: 4;
  isolation: isolate;
  box-shadow: var(--shadow-lg);
  transition: border-color .3s;
}
.chair::before { display: none; }
.chair:hover { border-color: rgba(232,184,75,.35); }
.chair-photo {
  aspect-ratio: 1/1; border-radius: 20px; overflow: hidden;
  border: 1.5px solid rgba(232,184,75,.35);
  background: var(--ink-3); display: grid; place-items: center;
  box-shadow: 0 20px 48px -20px rgba(0,0,0,.6);
}
.chair-photo img { width: 100%; height: 100%; object-fit: cover; }
.chair-photo .ph {
  font-family: 'Fraunces'; font-weight: 900;
  font-size: 4rem; color: rgba(232,184,75,.4);
}
.chair h3 { font-size: clamp(1.8rem,3.5vw,2.6rem); }
.chair .desig { color: var(--gold-soft); font-weight: 700; margin: .35rem 0 1.2rem; }
.chair .msg { color: #BEB0A0; line-height: 1.7; }
.chair--md {
  background-color: #0C0A07;
  background-image: linear-gradient(145deg, rgba(200,90,18,.12), rgba(232,184,75,.04));
  border-color: rgba(200,90,18,.2);
}

/* ── Positions ─────────────────────────────────────────────────────── */
.positions-section { background: var(--ink); }
.pos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px,1fr));
  gap: 1.2rem; margin-top: 3.5rem;
}
.pos-card {
  position: relative; padding: 1.8rem;
  border-radius: 20px; overflow: hidden;
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), var(--shadow-sm);
  transition: transform .35s var(--ease-out), border-color .3s, box-shadow .35s;
  will-change: transform;
}
.pos-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,184,75,.5), transparent);
  opacity: 0; transition: opacity .3s;
}
.pos-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,184,75,.18);
  box-shadow: var(--shadow-lg), 0 0 40px -16px rgba(232,184,75,.2);
}
.pos-card:hover::after { opacity: 1; }
.pos-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.4rem;
  background: linear-gradient(145deg,
    rgba(232,184,75,.15), rgba(232,184,75,.04));
  border: 1px solid rgba(232,184,75,.2);
  margin-bottom: 1.1rem;
}
.pos-org {
  font-size: .68rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: .5rem;
}
.pos-body h3 { font-size: 1.05rem; color: #fff; line-height: 1.3; margin-bottom: .55rem; }
.pos-body p { color: #8A8070; font-size: .88rem; line-height: 1.65; }

/* ── Timeline ──────────────────────────────────────────────────────── */
.tl { position: relative; max-width: 960px; margin: 3.5rem auto 0; }
.tl::before {
  content: ''; position: absolute;
  left: 28px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--amber), var(--gold));
  opacity: .5;
}
.tl-item { position: relative; padding: 0 0 2.5rem 84px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-badge {
  position: absolute; left: 0; top: 0;
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.5rem;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(232,184,75,.3);
  box-shadow: var(--shadow-sm);
}
.tl-year {
  display: inline-block; font-weight: 800; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); background: var(--gold-grad);
  padding: .22rem .7rem; border-radius: 999px; margin-bottom: .55rem;
}
.tl-item h3 { font-size: 1.2rem; }
.tl-item p { color: var(--muted); margin: .5rem 0 0; max-width: 60ch; }

.section--light .tl-badge {
  background: #fff;
  border-color: rgba(200,90,18,.25);
  box-shadow: 0 8px 24px -12px rgba(200,90,18,.3);
}
.section--light .tl::before { background: linear-gradient(180deg, var(--amber), var(--gold-deep)); }

/* ── Books ─────────────────────────────────────────────────────────── */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px,1fr));
  gap: 1.6rem; margin-top: 3.5rem;
}
.book {
  display: flex; gap: 1.5rem;
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 1.6rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .35s var(--ease-spring), border-color .3s, box-shadow .35s;
  will-change: transform;
}
.book:hover {
  transform: translateY(-6px);
  border-color: rgba(232,184,75,.2);
  box-shadow: var(--shadow-lg), 0 0 30px -10px rgba(232,184,75,.15);
}
.book-cover {
  flex: 0 0 110px; height: 150px; border-radius: 12px; overflow: hidden;
  background: var(--gold-grad); display: grid; place-items: center;
  box-shadow: 0 16px 32px -16px rgba(232,184,75,.5);
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-cover .ph { font-size: 2.4rem; }
.book-by {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 700;
}
.book h3 { font-size: 1.25rem; margin: .35rem 0 .55rem; }
.book p { color: #8A8070; font-size: .9rem; }

/* ── Gallery ───────────────────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: .55rem; margin: 2.5rem 0 2.8rem; }
.filter-btn {
  border: 1px solid rgba(200,90,18,.25);
  background: transparent; color: var(--muted);
  font-weight: 700; font-size: .82rem;
  padding: .48rem 1.1rem; border-radius: 999px;
  cursor: pointer; transition: all .25s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--amber); color: #fff;
  border-color: var(--amber);
  box-shadow: 0 6px 18px -6px rgba(200,90,18,.5);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 1.5rem;
}
.evt {
  background: #fff; border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 6px -2px rgba(0,0,0,.05),
              0 16px 32px -16px rgba(40,20,4,.2);
  transition: transform .35s var(--ease-spring), box-shadow .35s;
  display: flex; flex-direction: column;
  will-change: transform;
}
.evt:hover {
  transform: translateY(-8px) scale(1.005);
  box-shadow: 0 4px 6px -2px rgba(0,0,0,.05),
              0 28px 56px -20px rgba(40,20,4,.35);
}
.evt-media {
  aspect-ratio: 16/10; overflow: hidden; position: relative; cursor: pointer;
  background: linear-gradient(160deg, #9A7018, #1E1A0E);
}
.evt-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.evt:hover .evt-media img { transform: scale(1.06); }
.evt-media .ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(255,255,255,.5); font-family: 'Fraunces';
  font-weight: 700; font-size: 1rem; text-align: center; padding: 1rem;
}
.evt-cat {
  position: absolute; left: 12px; top: 12px;
  font-size: .65rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: .28rem .65rem;
  border-radius: 999px; color: #fff;
  background: rgba(7,6,5,.75); backdrop-filter: blur(8px);
}
.evt-cat[data-c="achievement"] { background: rgba(232,184,75,.95); color: #3A2804; }
.evt-cat[data-c="recognition"] { background: rgba(200,90,18,.95); color: #fff; }
.evt-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.evt-body h3 { color: var(--ink-text); font-size: 1.1rem; line-height: 1.3; }
.evt-body p { color: var(--muted); font-size: .88rem; margin: .55rem 0 0; }
.evt-more {
  margin-top: .7rem; background: none; border: 0;
  color: var(--amber); font-weight: 700; cursor: pointer;
  padding: 0; font-size: .82rem; align-self: flex-start;
  transition: color .2s;
}
.evt-more:hover { color: var(--amber-soft); }

/* ── Recognition / Testimonials ────────────────────────────────────── */
.recognition-section { background: var(--ink-2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 1.4rem; margin-top: 3.5rem;
}
.testi-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px; padding: 2rem 1.8rem 1.8rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), var(--shadow-sm);
  transition: transform .35s var(--ease-out), border-color .3s;
  will-change: transform;
}
.testi-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad); opacity: 0;
  transition: opacity .3s;
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,184,75,.15);
}
.testi-card:hover::before { opacity: 1; }
.testi-q {
  font-family: 'Fraunces'; font-size: 4.5rem; line-height: .7;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: .8rem;
}
.testi-card p {
  color: #B8AA98; font-size: .93rem; line-height: 1.72;
  font-style: italic; margin: 0 0 1.6rem;
}
.testi-author {
  display: flex; align-items: center; gap: .9rem;
  padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.06);
}
.testi-av {
  flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-grad); display: grid; place-items: center;
  font-family: 'Fraunces'; font-weight: 900;
  font-size: .88rem; color: var(--ink);
}
.testi-info strong { display: block; color: #fff; font-size: .92rem; }
.testi-info span {
  display: block; color: var(--gold-soft);
  font-size: .75rem; font-weight: 600; margin-top: .1rem;
  letter-spacing: .04em;
}

/* ── FAQ ───────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 780px; margin: 3rem auto 0;
  display: flex; flex-direction: column; gap: 1rem;
}
.faq-item {
  background: #fff; border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius); padding: 1.3rem 1.6rem;
  box-shadow: 0 4px 6px -2px rgba(0,0,0,.04), 0 12px 24px -12px rgba(40,20,4,.1);
  transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] { border-color: rgba(232,184,75,.35); }
.faq-item summary {
  cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.02rem; color: var(--ink-text);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex-shrink: 0; font-size: 1.4rem; line-height: 1;
  color: var(--gold-deep); transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: .9rem 0 0; color: var(--muted); font-size: .95rem; line-height: 1.7;
}

/* ── Ventures ──────────────────────────────────────────────────────── */
.vent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.4rem; margin-top: 3.5rem;
}
.vent {
  background: #fff; border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius); padding: 1.9rem;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 6px -2px rgba(0,0,0,.04),
              0 12px 24px -12px rgba(40,20,4,.1);
  transition: transform .35s var(--ease-spring), box-shadow .35s;
  will-change: transform;
}
.vent:hover {
  transform: translateY(-7px);
  box-shadow: 0 4px 6px -2px rgba(0,0,0,.04),
              0 24px 48px -16px rgba(40,20,4,.25);
}
.vent::before {
  content: ''; position: absolute;
  inset: 0 auto auto 0; width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(232,184,75,.1), transparent 70%);
}
.vent .v-ico {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.5rem;
  background: var(--gold-grad); margin-bottom: 1.1rem;
  position: relative; z-index: 1;
  box-shadow: 0 8px 20px -8px rgba(232,184,75,.4);
}
.vent h3 { font-size: 1.25rem; color: var(--ink-text); position: relative; z-index: 1; }
.vent p { color: var(--muted); font-size: .9rem; margin: .6rem 0 0; position: relative; z-index: 1; }
.vent .v-link {
  display: inline-block; margin-top: 1rem;
  color: var(--amber); font-weight: 700; font-size: .84rem;
  position: relative; z-index: 1; transition: color .2s;
}
.vent .v-link:hover { color: var(--amber-soft); }

/* ── CTA Band ──────────────────────────────────────────────────────── */
.cta-band {
  background: var(--gold-grad); color: var(--ink);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band .container {
  padding: clamp(3.5rem,7vw,6rem) 0; position: relative; z-index: 1;
}
.cta-band h2 { color: var(--ink); font-size: clamp(2rem,4.5vw,3rem); }
.cta-band p { color: rgba(20,14,2,.7); max-width: 52ch; margin: 1rem auto 2rem; font-weight: 500; font-size: 1.05rem; }
.btn-ink {
  background: var(--ink); color: #fff;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.5);
}
.btn-ink:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.6);
}

/* ── Footer ────────────────────────────────────────────────────────── */
footer {
  background: #050404; padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(232,184,75,.06);
}
.foot-grid {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.foot-tagline { color: #4A4438; font-size: .85rem; margin: .5rem 0 0; }
.foot-nav { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.foot-col { display: flex; flex-direction: column; gap: .65rem; }
.foot-heading {
  font-size: .68rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: .3rem;
}
footer a.flink {
  color: #6A6050; font-size: .9rem; transition: color .2s;
}
footer a.flink:hover { color: var(--gold-soft); }
.foot-bottom {
  margin-top: 2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: .6rem; color: #3A3428; font-size: .8rem;
}

/* ── Lightbox ──────────────────────────────────────────────────────── */
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,4,4,.95); display: none;
  align-items: center; justify-content: center;
  padding: 2rem; backdrop-filter: blur(8px);
}
.lb.open { display: flex; }
.lb img {
  max-width: 90vw; max-height: 80vh; border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(232,184,75,.3);
}
.lb-cap {
  position: absolute; bottom: 5%; left: 50%; transform: translateX(-50%);
  color: #fff; background: rgba(7,6,5,.88);
  backdrop-filter: blur(10px);
  padding: .6rem 1.3rem; border-radius: 999px;
  font-weight: 600; max-width: 80vw; text-align: center;
  border: 1px solid var(--line);
}
.lb-close {
  position: absolute; top: 4%; right: 5%;
  background: none; border: 0; color: #fff;
  font-size: 2.2rem; cursor: pointer; line-height: 1;
  transition: opacity .2s;
}
.lb-close:hover { opacity: .6; }

/* ── Scroll Reveal ─────────────────────────────────────────────────── */
/* visible by default — JS adds .will-animate to opt in to the effect */
.reveal { transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.reveal.will-animate { opacity: 0; transform: translateY(28px); }
.reveal.will-animate.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .17s; }
.reveal.d3 { transition-delay: .26s; }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width:1100px) {
  .side-nav { display: none; }
}
@media (max-width:1024px) {
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .impact-stat:nth-child(2)::before { display: none; }
  .impact-stat:nth-child(3) { border-top: 1px solid var(--line); }
  .impact-stat:nth-child(4) { border-top: 1px solid var(--line); }
  .impact-stat:nth-child(3)::before { display: none; }
}
@media (max-width:960px) {
  .hero .container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-portrait { order: -1; justify-self: center; }
  .portrait-nameplate { justify-content: center; }
  .portrait-badge { right: -10px; top: 10px; }
  .hero-pills { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero p.lead { margin-inline: auto; }
  .hero-divider { margin-inline: auto; }
  .chair { grid-template-columns: 1fr; }
  .chair-photo { max-width: 260px; margin: 0 auto; }
  .gen-row { grid-template-columns: 1fr; }
  .thread::before { left: 14px; }
  .pos-grid { grid-template-columns: 1fr; }
  .foot-grid { flex-direction: column; }
  .foot-nav { gap: 2rem; }
  .nav-links {
    position: fixed; inset: 0 0 auto auto; top: 0;
    height: 100vh; width: min(300px, 82vw);
    flex-direction: column; align-items: flex-start;
    gap: 1.5rem; background: rgba(7,6,5,.97);
    backdrop-filter: blur(20px);
    padding: 6rem 2rem; transform: translateX(110%);
    transition: transform .4s var(--ease-out);
    border-left: 1px solid var(--line); z-index: 55;
  }
  .nav-links.open { transform: none; }
  .nav-toggle { display: block; z-index: 60; }
}
@media (max-width:640px) {
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .impact-stat::before { display: none !important; }
  .impact-stat { border: 1px solid var(--line); border-radius: 16px; }
  .cards { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .vent-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: .4rem; }
}
@media (max-width:480px) {
  body { font-size: 16px; }
  .person-card { flex-direction: column; }
  .book { flex-direction: column; }
  .book-cover { width: 100%; height: 180px; flex: none; }
  .portrait-frame { width: min(300px, 88vw); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal.will-animate { opacity: 1 !important; transform: none !important; }
  .ha { opacity: 1 !important; transform: none !important; }
}

/* ══════════════════════════════════════════════════════════════════
   BISMILLAH BAR — fixed top strip
   ══════════════════════════════════════════════════════════════════ */
.bismillah-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg,rgba(7,6,5,.97) 0%,rgba(18,12,4,.98) 50%,rgba(7,6,5,.97) 100%);
  border-bottom: 1px solid rgba(232,184,75,.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.bismillah-bar::before,
.bismillah-bar::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 140px;
  pointer-events: none;
}
.bismillah-bar::before { left: 0; background: linear-gradient(90deg,rgba(232,184,75,.06),transparent); }
.bismillah-bar::after  { right: 0; background: linear-gradient(270deg,rgba(232,184,75,.06),transparent); }
.bismillah-inner {
  display: flex; align-items: center; gap: 1.2rem; position: relative; z-index: 1;
}
.bismillah-stars {
  color: rgba(232,184,75,.35);
  font-size: .55rem; letter-spacing: .3em;
}
.bismillah-text {
  font-family: 'Amiri', 'Scheherazade New', 'Noto Naskh Arabic', serif;
  font-size: 1.18rem;
  color: var(--gold-soft);
  text-shadow: 0 0 24px rgba(232,184,75,.45);
  letter-spacing: .03em;
  line-height: 1;
}

/* Push everything below bismillah bar */
.scroll-bar { top: 46px !important; }
.nav        { top: 46px !important; }
.side-nav   { top: calc(50% + 23px); }
.hero       { padding-top: 10rem; }

/* ── Facebook link ─────────────────────────────────────────────── */
.flink--facebook { display: inline-flex; align-items: center; }

/* ══════════════════════════════════════════════════════════════════
   GUI IMPROVEMENTS
   ══════════════════════════════════════════════════════════════════ */

/* Softer section transitions */
.section { border-top: 1px solid rgba(232,184,75,.05); }

/* Better card shadows */
.pos-card, .book, .testi-card, .vent {
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.pos-card:hover, .book:hover, .vent:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px -16px rgba(0,0,0,.6), 0 0 0 1px rgba(232,184,75,.1);
}

/* Better eyebrow */
.eyebrow {
  background: rgba(232,184,75,.06);
  padding: .3rem .9rem .3rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(232,184,75,.14);
  box-shadow: inset 0 1px 0 rgba(232,184,75,.1);
}
.eyebrow::before { margin-left: .2rem; }

/* Improved section heading */
.section-title {
  letter-spacing: -.8px;
  line-height: 1.06;
}

/* Better nav brand subtitle */
.brand-sub {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  color: rgba(232,184,75,.55);
  letter-spacing: .06em;
  line-height: 1;
  margin-top: 2px;
}

/* Gold line separator between major sections */
.section::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg,transparent,rgba(232,184,75,.1) 50%,transparent);
  position: absolute;
  top: 0; left: 0;
}

/* =====================================================================
   FACEBOOK CARDS
   ===================================================================== */
.fb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.fb-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s;
  border: 1px solid rgba(0,0,0,.06);
}
.fb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(24,119,242,.15);
}

.fb-card-img {
  position: relative;
  width: 100%;
  padding-top: 58%;
  background: #e8f0fe;
  overflow: hidden;
  flex-shrink: 0;
}
.fb-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.fb-card:hover .fb-card-img img {
  transform: scale(1.04);
}
.fb-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #e8f0fe 0%, #c9d9fb 100%);
}

.fb-card-badge {
  position: absolute;
  bottom: .7rem;
  right: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #1877f2;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .65rem;
  border-radius: 999px;
  letter-spacing: .02em;
}

.fb-card-body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.fb-card-body h3 {
  font-size: .97rem;
  font-weight: 700;
  color: #0d1117;
  line-height: 1.35;
  margin: 0;
}
.fb-card-body p {
  font-size: .84rem;
  color: #555e6b;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 600px) {
  .fb-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   BRAIN ARCHITECT REBRAND — 2026
   Shared chip + framework components layered on the existing gold/ink
   editorial system. Dark sections use `.section`; paper sections add
   `.section--light` (heading colours already handled by that class).
   ===================================================================== */

/* ── Hero: role + support line ─────────────────────────────────────── */
.hero-role {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-top: .5rem;
  background: linear-gradient(120deg, #E8B84B 0%, #F5D880 50%, #C8900A 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-support {
  margin-top: 1rem;
  font-size: .82rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-soft);
}
@media (max-width:960px) { .hero-support { margin-inline: auto; } }

/* ── Generic chip clusters ────────────────────────────────────────── */
.chip-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip-row span,
.stage-caps span, .era-chips span, .focus-cloud span,
.collab-list span, .media-topics span, .vision-outcomes span {
  display: inline-flex; align-items: center;
  padding: .4rem .95rem; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .02em;
  border: 1px solid rgba(232,184,75,.28);
  background: rgba(232,184,75,.07);
  color: var(--gold-soft);
  transition: border-color .25s, background .25s, transform .25s var(--ease-out);
}
.chip-row span:hover,
.stage-caps span:hover, .era-chips span:hover, .focus-cloud span:hover,
.collab-list span:hover, .media-topics span:hover {
  border-color: rgba(232,184,75,.55);
  background: rgba(232,184,75,.14);
  transform: translateY(-2px);
}
.section--light .stage-caps span,
.section--light .era-chips span,
.section--light .focus-cloud span,
.section--light .collab-list span,
.section--light .pillars span {
  border-color: rgba(200,90,18,.28);
  background: rgba(200,90,18,.06);
  color: var(--amber);
}

/* ── The Core Idea ────────────────────────────────────────────────── */
.idea-section { background: var(--dark-grad); }
.idea-statement {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.9rem);
  line-height: 1.28;
  color: #fff;
  max-width: 22ch;
  margin: 3rem 0 0;
  padding-left: clamp(1rem, 3vw, 2rem);
  border-left: 3px solid var(--gold);
}
.idea-body {
  max-width: 62ch; margin-top: 2.2rem;
  color: #BEB0A0; font-size: 1.05rem; line-height: 1.8;
}
.triad {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center; gap: 1.2rem;
  margin-top: 3.5rem;
}
.triad-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.triad-word {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.triad-item p { margin-top: .8rem; color: #9A9080; font-size: .92rem; }
.triad-arrow {
  font-size: 1.6rem; color: var(--gold); opacity: .6;
}
.triad-note {
  margin-top: 2rem; color: #8A8070; font-size: .95rem;
}
.triad-note em { color: var(--gold-soft); font-style: italic; }
@media (max-width:820px) {
  .triad { grid-template-columns: 1fr; }
  .triad-arrow { transform: rotate(90deg); margin: -.4rem auto; }
}

/* ── Brain Architect Philosophy ───────────────────────────────────── */
.stages {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem; margin-top: 3.5rem;
}
.stage {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem;
  box-shadow: 0 4px 6px -2px rgba(0,0,0,.04), 0 18px 36px -20px rgba(40,20,4,.18);
}
.stage-num {
  font-family: 'Fraunces', Georgia, serif; font-weight: 900;
  font-size: 1.15rem;
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  color: #fff; background: var(--amber-grad);
  box-shadow: 0 10px 22px -10px rgba(200,90,18,.5);
  margin-bottom: 1rem;
}
.stage h3 { font-size: 1.15rem; margin-bottom: .9rem; color: var(--ink-text); }
.stage-caps { display: flex; flex-wrap: wrap; gap: .4rem; }
.stage-caps span { padding: .32rem .7rem; font-size: .72rem; }

.stage-flow {
  display: flex; justify-content: center; gap: .6rem;
  margin: 1.8rem 0 .5rem;
}
.stage-flow span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); opacity: .35;
}
.stage-flow span:nth-child(2) { opacity: .6; }
.stage-flow span:nth-child(3) { opacity: 1; }

.outcomes { text-align: center; margin-top: 2rem; }
.outcomes-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.2rem;
}
.outcomes-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem;
}
.outcomes-list span {
  display: inline-flex; align-items: center;
  padding: .6rem 1.3rem; border-radius: 999px;
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-size: clamp(.9rem, 2vw, 1.15rem);
  color: var(--ink); background: var(--gold-grad);
  box-shadow: 0 12px 26px -12px rgba(232,184,75,.5);
}
.outcomes-note {
  max-width: 60ch; margin: 1.8rem auto 0;
  color: var(--muted); font-size: .98rem; line-height: 1.75;
}
@media (max-width:900px) { .stages { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:520px) { .stages { grid-template-columns: 1fr; } }

/* ── Three Decades / eras ─────────────────────────────────────────── */
.journey-section { background: var(--ink); }
.eras {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.4rem; margin: 3.5rem 0 1rem;
}
.era {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.era-year {
  display: inline-block;
  font-weight: 800; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink);
  background: var(--gold-grad);
  padding: .28rem .8rem; border-radius: 999px; margin-bottom: .9rem;
}
.era h3 { font-size: 1.4rem; margin-bottom: 1.1rem; }
.era-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.2rem; }
.era-chips span { padding: .32rem .75rem; font-size: .73rem; }
.era p { color: #A89E88; font-size: .95rem; line-height: 1.7; }
.era p strong { color: var(--gold-soft); }
.journey-section .tl { margin-top: 1rem; }
@media (max-width:820px) { .eras { grid-template-columns: 1fr; } }

/* ── No More Ratta ───────────────────────────────────────────────── */
.shift-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1rem; margin-top: 3.5rem;
}
.shift {
  display: grid; align-items: center;
  grid-template-columns: 1fr auto 1fr; gap: .8rem;
  background: #fff; border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px; padding: 1.15rem 1.4rem;
  box-shadow: 0 4px 6px -2px rgba(0,0,0,.04), 0 14px 30px -18px rgba(40,20,4,.16);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.shift:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -16px rgba(40,20,4,.28); }
.shift-from {
  color: var(--muted); text-decoration: line-through;
  text-decoration-color: rgba(200,90,18,.5);
  font-weight: 600; font-size: .9rem; text-align: right;
}
.shift-arrow { color: var(--amber); font-weight: 700; }
.shift-to {
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  color: var(--ink-text); font-size: 1.02rem; line-height: 1.2;
}
.ratta-statement {
  margin-top: 3rem; text-align: center;
  display: flex; flex-direction: column; gap: .3rem;
}
.ratta-statement span {
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-size: clamp(1.3rem, 3.4vw, 2.1rem); line-height: 1.25;
  color: var(--ink-text);
}
.ratta-statement .accent {
  margin-top: .5rem;
  background: var(--amber-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── Curriculum & Programs ───────────────────────────────────────── */
.curriculum-section { background: var(--dark-grad); }
.focus-cloud {
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin-top: 3rem;
}

/* ── Leadership & Advocacy ───────────────────────────────────────── */
.advocacy-section .pillars {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-top: 3rem;
}
.advocacy-section .pillars span {
  display: inline-flex; align-items: center;
  padding: .55rem 1.2rem; border-radius: 999px;
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-size: clamp(.85rem, 2vw, 1.05rem);
  border: 1px solid rgba(200,90,18,.3);
  background: rgba(200,90,18,.06); color: var(--amber);
}
.collab { margin-top: 2.5rem; }
.collab-lead {
  font-weight: 700; color: var(--ink-text); margin-bottom: 1rem;
}
.collab-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.collab-list span { font-size: .78rem; }
.advocacy-section .pos-grid { margin-top: 3rem; }

/* position cards were built for a dark section — re-tone for paper */
.section--light .pos-card {
  background: #fff;
  border-color: rgba(0,0,0,.07);
  box-shadow: 0 4px 6px -2px rgba(0,0,0,.04), 0 18px 36px -20px rgba(40,20,4,.18);
}
.section--light .pos-card::after {
  background: linear-gradient(90deg, transparent, rgba(200,90,18,.5), transparent);
}
.section--light .pos-card:hover {
  border-color: rgba(200,90,18,.22);
  box-shadow: 0 24px 52px -18px rgba(40,20,4,.3), 0 0 0 1px rgba(200,90,18,.08);
}
.section--light .pos-icon-wrap {
  background: linear-gradient(145deg, rgba(200,90,18,.14), rgba(200,90,18,.04));
  border-color: rgba(200,90,18,.2);
}
.section--light .pos-org { color: var(--amber); }
.section--light .pos-body h3 { color: var(--ink-text); }
.section--light .pos-body p { color: var(--muted); }

/* ── Media & Public Advocacy ─────────────────────────────────────── */
.media-section { background: var(--ink); }
.media-figure {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; margin: 3.5rem 0 2.5rem;
}
.media-n {
  display: flex; align-items: flex-start; gap: .15rem; line-height: 1;
}
.media-n .impact-n {
  font-family: 'Fraunces'; font-weight: 900;
  font-size: clamp(4rem, 10vw, 7.5rem);
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.media-n .impact-unit {
  font-family: 'Fraunces'; font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem); margin-top: .5rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.media-n-label {
  margin-top: .8rem; font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #6A6050;
}
.media-topics {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem;
}
.media-section .fb-grid { margin-top: 3rem; }

/* ── Vision ──────────────────────────────────────────────────────── */
.vision-section {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(200,144,10,.14), transparent 60%),
    linear-gradient(180deg, #0B0906 0%, #070605 100%);
  text-align: center;
}
.vision-section .eyebrow { margin-inline: auto; }
.vision-section .section-title { max-width: 24ch; margin-inline: auto; }
.vision-verbs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .5rem 1.6rem; margin: 3rem 0;
}
.vision-verbs span {
  font-family: 'Fraunces', Georgia, serif; font-weight: 900;
  font-size: clamp(1.8rem, 6vw, 4rem); line-height: 1;
  letter-spacing: -1px;
  background: linear-gradient(145deg, #fff 0%, #F0DFBA 55%, var(--gold-soft) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vision-verbs span:nth-child(even) {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vision-lead {
  max-width: 56ch; margin: 0 auto; color: #BEB0A0;
  font-size: 1.05rem; line-height: 1.75;
}
.vision-outcomes {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  margin: 2.5rem auto 0;
}
.vision-personal {
  max-width: 40ch; margin: 3rem auto 0;
  font-family: 'Fraunces', Georgia, serif; font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.7rem); line-height: 1.4;
  color: #fff;
}
.vision-personal cite {
  display: block; margin-top: 1rem;
  font-style: normal; font-size: .8rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft);
}
.signature-band {
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(232,184,75,.15);
  font-family: 'Fraunces', Georgia, serif; font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2.6rem); letter-spacing: -.5px;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── Legacy: works on paper now (was dark) ───────────────────────── */
/* the older `.legacy { background: var(--dark-grad) }` rule sits later in
   the file than `.section--light`, so force the paper look explicitly. */
.section--light.legacy { background: var(--paper); color: var(--ink-text); }
.section--light.legacy .section-title,
.section--light.legacy .legacy-head .section-lead { color: var(--ink-text); }
.section--light.legacy .legacy-head .section-lead { color: var(--muted); }
.section--light.legacy .thread::before {
  background: linear-gradient(180deg,
    rgba(200,90,18,0), var(--amber) 10%, var(--amber) 90%, rgba(200,90,18,0));
  box-shadow: 0 0 20px 1px rgba(200,90,18,.25);
}
.section--light.legacy .gen-label span {
  background: #fff; border-color: rgba(200,90,18,.3); color: var(--amber);
}
.section--light.legacy .person-card {
  background: #fff; border-color: rgba(0,0,0,.07);
  box-shadow: 0 4px 6px -2px rgba(0,0,0,.04), 0 16px 34px -20px rgba(40,20,4,.18);
}
.section--light.legacy .person-card h3 { color: var(--ink-text); }
.section--light.legacy .person-card .desig { color: var(--amber); }
.section--light.legacy .person-card .msg { color: var(--muted); }
.section--light.legacy .gen-node { background: var(--amber); box-shadow: 0 0 0 5px rgba(200,90,18,.15), 0 0 24px 4px rgba(200,90,18,.4); }
.section--light.legacy .chair {
  background-color: #fff;
  background-image: linear-gradient(145deg, rgba(232,184,75,.14), rgba(200,90,18,.05));
  border-color: rgba(200,90,18,.2);
}
.section--light.legacy .chair h3,
.section--light.legacy .chair .desig { color: var(--ink-text); }
.section--light.legacy .chair .desig { color: var(--amber); }
.section--light.legacy .chair .msg { color: var(--muted); }
.section--light.legacy .chair .eyebrow { color: var(--amber); }

/* ── Anchor offset — fixed bismillah bar (46px) + nav sit ~150px tall ─ */
section[id] { scroll-margin-top: 130px; }
#top { scroll-margin-top: 0; }

/* ── Nav breathing room for the longer rebrand link set ───────────── */
.nav .container { width: min(1320px, 94%); }
.nav-links { gap: 1.15rem; flex-wrap: nowrap; }
.nav-links a { white-space: nowrap; flex-shrink: 0; }
/* the base `.nav-links a` padding out-specifies `.nav-cta` — restore the pill */
.nav-links a.nav-cta { padding: .55rem 1.25rem; flex-shrink: 0; }
@media (min-width:961px) and (max-width:1360px) {
  .nav-links { gap: .78rem; }
  .nav-links a { font-size: .8rem; }
}
@media (min-width:961px) and (max-width:1060px) {
  .brand .brand-sub { display: none; }
  .nav-links { gap: .62rem; }
}

/* ── Stage cards: keep the number badge from stretching ───────────── */
.stage { display: flex; flex-direction: column; align-items: flex-start; }
.stage .stage-caps { width: 100%; }

/* ── Reveal helper for new stagger classes already covered by .d1-3 ─ */
@media (prefers-reduced-motion: reduce) {
  .triad-arrow { transform: none !important; }
}

/* =====================================================================
   MULTI-PAGE — 2026
   Shared page-hero, breadcrumbs, active nav, home "Explore" grid,
   about at-a-glance, and the media "In the Press" list.
   ===================================================================== */

/* ── Active nav link ──────────────────────────────────────────────── */
.nav-links a.active { color: #fff; }
.nav-links a.active::after { width: 100%; }

/* ── Inline gold link ─────────────────────────────────────────────── */
.text-link {
  color: var(--gold-soft); font-weight: 700;
  border-bottom: 1px solid rgba(232,184,75,.35);
  transition: border-color .2s, color .2s;
}
.text-link:hover { color: #fff; border-color: var(--gold); }
.section--light .text-link { color: var(--amber); border-color: rgba(200,90,18,.35); }
.section--light .text-link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ── Page hero (inner pages) ──────────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(8rem, 13vw, 11rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(ellipse 90% 80% at 50% -20%, rgba(200,144,10,.12), transparent 60%),
    linear-gradient(180deg, #070605 0%, #0D0A06 70%, #070605 100%);
  border-bottom: 1px solid rgba(232,184,75,.08);
}
.page-hero .container { position: relative; z-index: 2; }
/* the page-hero already carries generous bottom padding — trim the first
   content section so inner pages don't open with a dead band of colour */
.page-hero + .section { padding-top: clamp(2.5rem, 5vw, 4rem); }
.page-hero.has-portrait .container {
  display: grid; grid-template-columns: 1.35fr .65fr;
  gap: 3rem; align-items: center;
}
.page-hero .hero-watermark { bottom: -2%; opacity: 1; }
.crumbs {
  font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #7A7060; margin-bottom: 1.4rem;
}
.crumbs a { color: var(--gold-soft); }
.crumbs a:hover { color: #fff; }
.crumbs span { margin: 0 .5rem; opacity: .5; }
.page-hero-copy.wide { max-width: 62ch; }
.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  letter-spacing: -1px; margin: .7rem 0 0;
  background: linear-gradient(145deg, #fff 0%, #F0DFBA 60%, var(--gold-soft) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero-role {
  font-family: 'Fraunces', Georgia, serif; font-weight: 900;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem); margin-top: .5rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero-lead {
  color: #BEB0A0; font-size: 1.08rem; line-height: 1.75;
  max-width: 60ch; margin-top: 1.2rem;
}
.page-hero-portrait .portrait-frame {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: 22px; overflow: hidden;
  border: 1.5px solid rgba(232,184,75,.4);
  box-shadow: 0 40px 80px -24px rgba(0,0,0,.8), var(--shadow-glow);
}
.page-hero-portrait .portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width:840px) {
  .page-hero.has-portrait .container { grid-template-columns: 1fr; }
  .page-hero-portrait { max-width: 300px; }
}

/* ── Prose block ──────────────────────────────────────────────────── */
.prose { max-width: 64ch; }
.prose p + p { margin-top: 1.1rem; }
.prose strong { color: var(--gold-soft); }
.idea-section .prose strong { color: var(--gold-soft); }
.prose em { font-style: italic; }

/* ── Home: Explore grid ──────────────────────────────────────────── */
.explore-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 3.5rem;
}
.explore-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  box-shadow: 0 4px 6px -2px rgba(0,0,0,.04), 0 18px 36px -20px rgba(40,20,4,.18);
  transition: transform .32s var(--ease-out), box-shadow .32s, border-color .3s;
}
.explore-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,90,18,.22);
  box-shadow: 0 28px 56px -18px rgba(40,20,4,.32);
}
.explore-num {
  font-family: 'Fraunces', Georgia, serif; font-weight: 900;
  font-size: .9rem; color: #fff;
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; background: var(--amber-grad);
  box-shadow: 0 10px 22px -10px rgba(200,90,18,.5); margin-bottom: 1rem;
}
.explore-card h3 { font-size: 1.18rem; color: var(--ink-text); line-height: 1.25; }
.explore-card p { color: var(--muted); font-size: .9rem; margin: .6rem 0 1.1rem; flex: 1; }
.explore-go {
  font-weight: 800; font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber);
}
@media (max-width:900px) { .explore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:560px) { .explore-grid { grid-template-columns: 1fr; } }

/* ── Home: vision teaser trims the full vision section ────────────── */
.vision-teaser { padding-block: clamp(4rem,8vw,6rem); }
.vision-teaser .eyebrow { margin-inline: auto; }

/* ── About: at-a-glance ──────────────────────────────────────────── */
.glance-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 3rem;
}
.glance {
  text-align: center; padding: 1.6rem 1rem;
  background: #fff; border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  box-shadow: 0 12px 28px -18px rgba(40,20,4,.2);
}
.glance-n {
  display: block; font-family: 'Fraunces', Georgia, serif; font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--amber-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.glance-l {
  display: block; margin-top: .5rem; font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
@media (max-width:720px) { .glance-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Media: In the Press list ────────────────────────────────────── */
.press-list { list-style: none; margin: 2.6rem 0 0; max-width: 780px; }
.press-list li + li { border-top: 1px solid var(--line-light); }
.press-list a {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 1rem .4rem; transition: background .2s, padding .2s;
}
.press-list a:hover { background: rgba(200,90,18,.05); padding-left: .9rem; }
.press-pub {
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-size: 1.02rem; color: var(--ink-text); flex-shrink: 0;
}
.press-meta { color: var(--muted); font-size: .86rem; }
.press-go { margin-left: auto; color: var(--amber); font-weight: 700; }

/* ── Polish: content cards on paper backgrounds ──────────────────── */
.section--light .book { background: #fff; border-color: rgba(0,0,0,.06); }
.section--light .book .book-by { color: var(--amber); }
.section--light .book p { color: var(--muted); }
