/* ========================================================
   PPP Centre — Editorial Liberal-Arts Stylesheet
   Light theme · Fraunces (display) + Manrope (body)
   ======================================================== */

:root {
  /* Surface */
  --bg:           #FAF7F1;   /* warm parchment */
  --bg-alt:       #F3EFE6;   /* slightly deeper, for sectional contrast */
  --bg-deep:      #1F1B16;   /* near-black with warmth */
  --paper:        #FFFFFF;
  --rule:         #E5DFD2;
  --rule-strong:  #C9C1B0;

  /* Ink */
  --ink:          #1A1612;
  --ink-2:        #3F3A33;
  --ink-3:        #6B645A;
  --ink-light:    #9C9484;

  /* Accent palette — drawn from the logo, used sparingly */
  --c-red:        #C73E1D;
  --c-gold:       #C99A2E;
  --c-blue:       #3A6FB0;
  --c-green:      #4A7C3F;
  --c-orange:     #D87A2A;
  --c-maroon:     #9B2D2A;
  --c-saffron:    #E07A2A;
  --c-slate:      #5B6F8E;

  /* Type */
  --font-display: 'Fraunces', 'Iowan Old Style', 'Georgia', serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max:          1240px;
  --gutter:       clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'ss02';
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease);
}

::selection { background: var(--c-gold); color: var(--bg-deep); }

/* ------ Typography utilities ------ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.5rem;
}
.eyebrow--light { color: rgba(255,255,255,0.7); }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0 0 0.6em 0;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.display em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  color: var(--ink-2);
}
.display--inverse { color: var(--bg); }
.display--inverse em { color: rgba(255,255,255,0.78); }

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--rule); }

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.05rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand-mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}
.nav__brand-amp { color: var(--c-red); margin: 0 .12em; }
.nav__brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
  font-weight: 500;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right .35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

.nav__menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__menu span {
  display: block;
  height: 1.5px;
  width: 22px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============== HERO ============== */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(4rem, 9vw, 8rem);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "meta   meta"
    "title  logo"
    "lede   logo"
    "motto  motto"
    "cta    cta";
  gap: 2.4rem 4rem;
  align-items: end;
  position: relative;
  z-index: 2;
}

.hero__meta { grid-area: meta; }
.hero__title-wrap { grid-area: title; }
.hero__logo { grid-area: logo; align-self: center; justify-self: end; max-width: 480px; width: 100%; }
.hero__logo img { width: 100%; height: auto; }
.hero__lede { grid-area: lede; max-width: 540px; }
.hero__motto { grid-area: motto; }
.hero__cta { grid-area: cta; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.kicker__dot {
  width: 6px; height: 6px;
  background: var(--c-red);
  border-radius: 50%;
  display: inline-block;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 25;
}
.hero__title-line { display: block; }
.hero__title-italic {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--ink-2);
  padding-left: 0.18em;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
  color: var(--c-red);
  margin: 0 0 1.4rem;
  letter-spacing: -0.01em;
}
.hero__paragraph {
  font-size: 1.04rem;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.7;
}

.hero__motto {
  margin-top: 1.5rem;
  padding: 1.4rem 0 1.6rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.1rem 1.6rem;
}
.hero__motto-text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--c-blue);
  letter-spacing: 0.01em;
}
.hero__motto-translit {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-2);
}
.hero__motto-meaning {
  font-size: 0.85rem;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  font-family: var(--font-body);
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--c-red);
  border-color: var(--c-red);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.hero__pattern {
  position: absolute;
  top: -50px; right: -100px;
  width: 720px;
  height: 720px;
  color: var(--ink-light);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

/* ============== SECTIONS ============== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
  position: relative;
}

.section__head {
  max-width: 880px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section__sub {
  font-size: 1.08rem;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
  line-height: 1.7;
}

/* ============== ABOUT ============== */
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.about__copy p {
  font-size: 1.05rem;
  color: var(--ink-2);
  margin: 0 0 1.4rem;
  line-height: 1.75;
}
.lede {
  font-family: var(--font-display);
  font-size: 1.5rem !important;
  line-height: 1.45 !important;
  color: var(--ink) !important;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  letter-spacing: -0.01em;
  margin-bottom: 2rem !important;
}

.about__pull {
  position: sticky;
  top: 100px;
}

.pull {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 2.4rem 2.2rem 2rem;
  position: relative;
}
.pull__mark {
  position: absolute;
  top: -10px;
  left: 1.6rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--c-red);
  font-weight: 400;
}
.pull__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1.5rem;
  font-variation-settings: "opsz" 60, "SOFT" 90;
}
.pull__attr {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}

.figures {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0;
}
.figure {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.figure__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.figure__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.3;
}

/* ============== THEMES ============== */
.section--themes {
  background:
    linear-gradient(180deg, transparent 0%, var(--bg-alt) 80px, var(--bg-alt) calc(100% - 80px), transparent 100%);
  max-width: 100vw;
  padding-left: 0;
  padding-right: 0;
}
.section--themes > .section__head,
.section--themes > .themes-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-left: 1px solid var(--rule-strong);
}

.theme {
  --accent: var(--c-red);
  position: relative;
  padding: 2.2rem 1.8rem 2.2rem;
  border-right: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  background: var(--bg-alt);
  transition: background .35s var(--ease);
  display: flex;
  flex-direction: column;
}

.theme::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.theme:hover { background: var(--paper); }
.theme:hover::before { transform: scaleX(1); }

.theme__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.theme__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.theme__tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--rule-strong);
}
.theme__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 60, "SOFT" 35;
}
.theme__body {
  font-size: 0.93rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 1.4rem;
  flex: 1;
}
.theme__q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-2);
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  line-height: 1.55;
  display: flex;
  gap: 0.7rem;
}
.theme__q-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: normal;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

/* ============== INITIATIVES ============== */
.init-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.init {
  padding: 2.6rem 2.2rem 2.4rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.init:nth-child(odd) {
  border-right: 1px solid var(--rule);
}
.init__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.2rem;
}
.init__tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 600;
}
.init__date {
  font-size: 0.78rem;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.init__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 1rem;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 60, "SOFT" 30;
}
.init__body {
  font-size: 0.97rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 1.4rem;
}
.init__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.2rem;
}
.init__list li {
  font-size: 0.9rem;
  color: var(--ink-2);
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
}
.init__list li span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--c-red);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  min-width: 22px;
  font-style: italic;
}

/* ============== SUB UNITS ============== */
.units-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.unit {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.8rem, 3.5vw, 2.6rem);
  position: relative;
  display: flex;
  flex-direction: column;
}
.unit::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
}
.unit--act::before { background: var(--c-maroon); }
.unit--iks::before { background: var(--c-saffron); }

.unit__label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.unit__title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 25;
}
.unit--act .unit__title { color: var(--c-maroon); }
.unit--iks .unit__title { color: var(--c-saffron); }
.unit__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-2);
  margin: 0.4rem 0 1.5rem;
  font-variation-settings: "opsz" 60, "SOFT" 100;
}
.unit__body {
  font-size: 0.97rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 1.4rem;
}
.unit__trajectory {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-3);
  margin: auto 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
}
.unit__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.unit__list li {
  font-size: 0.9rem;
  color: var(--ink-2);
  padding-left: 1.2rem;
  position: relative;
}
.unit__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--c-saffron);
  font-weight: 700;
}
.unit__list strong {
  color: var(--ink);
  font-weight: 600;
}
.unit__link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  transition: color .25s var(--ease);
}
.unit--act .unit__link { color: var(--c-maroon); }
.unit--iks .unit__link { color: var(--c-saffron); }
.unit__link:hover { color: var(--c-red); }

/* When a link follows the trajectory note, drop the duplicate divider */
.unit__trajectory + .unit__link {
  margin-top: 0.9rem;
  padding-top: 0;
  border-top: none;
}

/* ============== DISHA ============== */
.section--disha {
  max-width: 100vw;
  padding: 0 var(--gutter);
}
.disha-card {
  max-width: var(--max);
  margin: clamp(4rem, 8vw, 7rem) auto;
  background: var(--bg-deep);
  color: var(--bg);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.disha-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(circle at 80% 20%, rgba(231, 122, 42, 0.18), transparent 60%);
  pointer-events: none;
}
.disha-card .display {
  max-width: 22ch;
  position: relative;
}
.disha-card__body {
  max-width: 60ch;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 1.5rem 0 3rem;
  position: relative;
}
.disha-letters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.dl {
  padding: 1.8rem 1rem 1.6rem;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.dl:last-child { border-right: none; }
.dl__letter {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--c-saffron);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.dl__word {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

/* ============== ROADMAP ============== */
.roadmap {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  counter-reset: phase;
}
.phase {
  padding: 2.4rem 1.8rem 2.6rem;
  border-right: 1px solid var(--rule);
  position: relative;
}
.phase:last-child { border-right: none; }
.phase__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.phase__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-red);
  font-variation-settings: "opsz" 60, "SOFT" 100;
}
.phase__years {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.phase__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 60, "SOFT" 30;
}
.phase__body {
  font-size: 0.93rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.78);
  padding: clamp(4rem, 7vw, 6rem) var(--gutter) 2rem;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer__brand {
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--bg);
  margin: 0 0 0.4rem;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.footer__logo span { color: var(--c-saffron); }
.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-saffron);
  margin: 0 0 0.6rem;
}
.footer__col a, .footer__col span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.footer__col a:hover { color: var(--bg); }
.footer__rule {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 1.5rem 0;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer__motto {
  font-family: var(--font-display);
  color: var(--c-saffron);
  font-size: 1rem;
}

/* ============== TEAM ============== */
.section--team {
  /* gentle background tint to set this section apart */
  background:
    linear-gradient(180deg, transparent 0%, var(--bg-alt) 80px, var(--bg-alt) calc(100% - 80px), transparent 100%);
  max-width: 100vw;
  padding-left: 0;
  padding-right: 0;
}
.section--team > .section__head,
.section--team > .founder,
.section--team > .team-divider,
.section--team > .team-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Founder feature card */
.founder {
  --accent: var(--c-red);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.8rem, 4vw, 3rem);
  position: relative;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.founder::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
}

.founder__avatar {
  width: clamp(120px, 14vw, 160px);
  height: clamp(120px, 14vw, 160px);
  border-radius: 50%;
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--accent) 60%, white),
    var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 12px 28px -16px rgba(0,0,0,0.25);
  border: 3px solid var(--paper);
  outline: 1px solid var(--rule);
}
.founder__avatar img,
.member__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder__avatar .member__initials {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
}

.founder__body {
  display: flex;
  flex-direction: column;
}
.founder__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.founder__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.1;
  margin: 0 0 0.3rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 60, "SOFT" 30;
}
.founder__role {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-2);
  margin: 0 0 1rem;
  font-variation-settings: "opsz" 60, "SOFT" 100;
}
.founder__sep {
  color: var(--accent);
  margin: 0 0.4rem;
  font-style: normal;
}
.founder__bio {
  font-size: 0.97rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 1.4rem;
  max-width: 60ch;
}
.founder__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  align-self: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.founder__link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* Section divider between founder and team grid */
.team-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.team-divider__line {
  flex: 1;
  height: 1px;
  background: var(--rule-strong);
}
.team-divider__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-strong);
  border: 1px solid var(--rule-strong);
}

.member {
  --accent: var(--c-red);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
  background: var(--bg-alt);
  padding: 1.5rem 1.4rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background .3s var(--ease);
}
.member::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.member:hover { background: var(--paper); }
.member:hover::before { transform: scaleX(1); }
.member:hover .member__arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.member__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--accent) 65%, white),
    var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--paper);
  outline: 1px solid var(--rule);
}
.member__initials {
  color: white;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}

.member__body {
  min-width: 0;
}
.member__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.2rem;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
.member__discipline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.86rem;
  color: var(--ink-3);
  margin: 0;
  font-variation-settings: "opsz" 36, "SOFT" 100;
}
.member__arrow {
  color: var(--ink-3);
  font-size: 1.1rem;
  transition: transform .3s var(--ease), color .3s var(--ease);
  flex-shrink: 0;
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }
.reveal[data-delay="7"] { transition-delay: 0.56s; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .themes-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "title"
      "logo"
      "lede"
      "motto"
      "cta";
  }
  .hero__logo { justify-self: start; max-width: 380px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__pull { position: static; }
  .units-grid { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: 1fr; }
  .phase { border-right: none; border-bottom: 1px solid var(--rule); }
  .phase:last-child { border-bottom: none; }
  .init-grid { grid-template-columns: 1fr; }
  .init:nth-child(odd) { border-right: none; }
  .disha-letters { grid-template-columns: repeat(5, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .founder { grid-template-columns: 1fr; text-align: left; }
  .founder__avatar { margin-bottom: 0.5rem; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__menu { display: flex; }
  .nav__inner.is-open + .nav__mobile,
  .nav.is-open .nav__links {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem var(--gutter);
    border-bottom: 1px solid var(--rule);
    gap: 1.2rem;
  }

  .themes-grid { grid-template-columns: 1fr; }
  .figures { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .figure__num { font-size: 2rem; }
  .disha-letters { grid-template-columns: repeat(2, 1fr); }
  .dl { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .dl:nth-child(2) { border-right: none; }
  .footer__cols { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .team-divider { gap: 0.8rem; }
  .team-divider__label { font-size: 0.65rem; }
}

@media (max-width: 480px) {
  .disha-letters { grid-template-columns: 1fr; }
  .dl { border-right: none; }
  .hero__motto-text { font-size: 1.4rem; }
  .pull { padding: 2rem 1.5rem 1.7rem; }
  .pull__text { font-size: 1.1rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
