/* ==========================================================================
   Bachelor of Arts — Aarsh Institute
   Theme: "The Great Library" — dark academia / editorial archive
   Namespace: every selector begins with ba2-
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Source+Serif+4:ital,wght@0,400;0,500;0,600;1,400&family=Special+Elite&display=swap');

:root{
  /* -- palette -- */
  --ba2-ink:        #1b140f;
  --ba2-ink-2:      #241a13;
  --ba2-leather:    #4a2f1f;
  --ba2-gold:       #b8905a;
  --ba2-gold-bright:#d9b578;
  --ba2-brass:      #8a6d3b;
  --ba2-olive:      #3d4536;
  --ba2-cream:      #f2e8d2;
  --ba2-cream-soft: #faf6ea;
  --ba2-warmwhite:  #fbf8f1;
  --ba2-black:      #0e0a07;
  --ba2-ink-text:    #241a13;

  /* -- type -- */
  --ba2-font-display: 'Fraunces', 'Georgia', serif;
  --ba2-font-body:    'Source Serif 4', 'Georgia', serif;
  --ba2-font-mono:    'Special Elite', 'Courier New', monospace;

  /* -- rhythm -- */
  --ba2-gutter: clamp(1.25rem, 4vw, 4rem);
  --ba2-section-y: clamp(4rem, 9vw, 8rem);
  --ba2-radius: 2px;
  --ba2-ease: cubic-bezier(.22,.61,.36,1);
}

/* ==========================================================================
   Reset scoped to page root
   ========================================================================== */
#ba2-main, #ba2-main *{ box-sizing: border-box; }
#ba2-main{
  background: var(--ba2-cream);
  color: var(--ba2-ink-text);
  font-family: var(--ba2-font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: clip;
  position: relative;
}
#ba2-main img{ max-width: 100%; display: block; }
#ba2-main ul, #ba2-main ol{ margin: 0; padding: 0; list-style: none; }
#ba2-main a{ color: inherit; text-decoration: none; }
#ba2-main h1, #ba2-main h2, #ba2-main h3{
  font-family: var(--ba2-font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ba2-ink);
  margin: 0;
}

@media (prefers-reduced-motion: reduce){
  #ba2-main *{ animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Shared bits: eyebrow, buttons, section rhythm
   ========================================================================== */
.ba2-eyebrow{
  font-family: var(--ba2-font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ba2-brass);
  margin: 0 0 1rem;
}
.ba2-eyebrow--gold{ color: var(--ba2-gold); }

.ba2-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--ba2-font-mono);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid var(--ba2-gold);
  border-radius: var(--ba2-radius);
  transition: background .35s var(--ba2-ease), color .35s var(--ba2-ease), transform .2s var(--ba2-ease);
  will-change: transform;
}
.ba2-btn--primary{ background: var(--ba2-gold); color: var(--ba2-black); }
.ba2-btn--primary:hover{ background: var(--ba2-gold-bright); }
.ba2-btn--ghost{ color: var(--ba2-cream-soft); border-color: rgba(242,232,210,.4); }
.ba2-btn--ghost:hover{ border-color: var(--ba2-gold); color: var(--ba2-gold); }
.ba2-btn--large{ padding: 1.2rem 2.6rem; font-size: .9rem; }
.ba2-btn:focus-visible{ outline: 2px solid var(--ba2-gold-bright); outline-offset: 3px; }

.ba2-main section{ padding: var(--ba2-section-y) var(--ba2-gutter); position: relative; }

/* generic reveal-on-scroll state, toggled by JS via .ba2-is-visible */
[data-ba2-reveal], [data-ba2-fade], [data-ba2-split]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ba2-ease), transform .8s var(--ba2-ease);
}
[data-ba2-fade]{ transform: translateY(10px); }
.ba2-is-visible[data-ba2-reveal], .ba2-is-visible[data-ba2-fade], .ba2-is-visible[data-ba2-split]{
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Reading progress ribbon
   ========================================================================== */
.ba2-progress{
  position: sticky;
  top: 0;
  height: 3px;
  background: rgba(27,20,15,.08);
  z-index: 40;
}
.ba2-progress__bar{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ba2-brass), var(--ba2-gold-bright));
  transition: width .1s linear;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.ba2-hero{
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 100% at 50% 0%, var(--ba2-ink-2) 0%, var(--ba2-black) 70%);
  color: var(--ba2-cream-soft);
  padding: var(--ba2-gutter);
  isolation: isolate;
}
.ba2-hero__atmosphere{ position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.ba2-hero__columns{ position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.ba2-hero__column rect{ fill: #2a1e15; }
.ba2-hero__rays{ position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: screen; opacity: .35; }
.ba2-hero__ray{ fill: url(#ba2-ray-gradient); fill: var(--ba2-gold); opacity: .12; }
.ba2-hero__dust{ position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.ba2-hero__spotlight{
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(280px 280px at var(--ba2-mx, 50%) var(--ba2-my, 30%), rgba(216,181,120,.14), transparent 70%);
  transition: background .1s linear;
  pointer-events: none;
}
.ba2-hero__vignette{
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 40%, transparent 40%, rgba(14,10,7,.75) 100%);
}

.ba2-hero__inner{ position: relative; z-index: 2; max-width: 62rem; margin: 0 auto; text-align: center; }
.ba2-hero__title{ display: flex; flex-direction: column; gap: .35em; }
.ba2-hero__kicker{
  font-family: var(--ba2-font-mono);
  font-size: clamp(.85rem, 1.4vw, 1.05rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ba2-gold);
}
.ba2-hero__headline{
  font-size: clamp(2.6rem, 7.4vw, 6.4rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ba2-cream-soft);
}
.ba2-hero__lede{
  max-width: 34rem;
  margin: 1.75rem auto 0;
  font-size: 1.1rem;
  color: rgba(250,246,234,.78);
}
.ba2-hero__actions{ display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

.ba2-hero__book{
  position: absolute;
  bottom: 6%;
  right: 6%;
  width: clamp(140px, 16vw, 220px);
  opacity: .9;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
}
.ba2-book-svg__cover{ fill: var(--ba2-leather); }
.ba2-book-svg__page{ fill: var(--ba2-cream-soft); opacity: .92; }
.ba2-book-svg__spine{ stroke: var(--ba2-gold); stroke-width: 2; }

.ba2-scrollcue{
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  z-index: 2; color: rgba(250,246,234,.6);
}
.ba2-scrollcue span{
  width: 1px; height: 34px; background: linear-gradient(var(--ba2-gold), transparent);
  animation: ba2-scrollcue 1.8s ease-in-out infinite;
}
.ba2-scrollcue p{ font-family: var(--ba2-font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
@keyframes ba2-scrollcue{ 0%{ transform: scaleY(0); transform-origin: top;} 50%{ transform: scaleY(1); transform-origin: top;} 50.01%{ transform-origin: bottom; } 100%{ transform: scaleY(0); transform-origin: bottom; } }

/* ==========================================================================
   THESIS — Why Humanities Matter
   ========================================================================== */
.ba2-thesis{ background: var(--ba2-cream-soft); }
.ba2-thesis__frame{ max-width: 54rem; margin: 0 auto; }
.ba2-thesis__statement{
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ba2-thesis__statement em{ font-style: italic; color: var(--ba2-brass); }
.ba2-thesis__margins{
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  border-top: 1px solid rgba(74,47,31,.2);
  padding-top: 2rem;
}
.ba2-marginnote{ display: flex; gap: .9rem; }
.ba2-marginnote__mark{ font-family: var(--ba2-font-display); font-style: italic; color: var(--ba2-gold); font-size: 1.4rem; }
.ba2-marginnote p{ font-size: .95rem; color: #40332a; }

/* ==========================================================================
   CORRIDOR — History timeline
   ========================================================================== */
.ba2-corridor{ background: var(--ba2-ink); color: var(--ba2-cream-soft); }
.ba2-corridor__head{ max-width: 42rem; margin: 0 auto 4rem; text-align: center; }
.ba2-corridor__head h2{ color: var(--ba2-cream-soft); font-size: clamp(1.8rem,3.6vw,2.6rem); }
.ba2-corridor__intro{ margin-top: 1rem; color: rgba(242,232,210,.65); }

.ba2-timeline{ position: relative; max-width: 68rem; margin: 0 auto; }
.ba2-timeline__rail{
  position: absolute; left: 0; right: 0; top: 1.1rem; height: 1px; background: rgba(184,144,90,.25);
}
.ba2-timeline__rail-fill{ height: 100%; width: 0%; background: var(--ba2-gold); transition: width .2s linear; }
.ba2-timeline__list{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.ba2-timeline__item{
  border-top: 3px solid var(--ba2-brass);
  padding-top: 1.4rem;
}
.ba2-timeline__era{ font-family: var(--ba2-font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ba2-gold); }
.ba2-timeline__item h3{ color: var(--ba2-cream-soft); font-size: 1.2rem; margin: .6rem 0 .5rem; }
.ba2-timeline__item p{ font-size: .88rem; color: rgba(242,232,210,.6); }

/* ==========================================================================
   DEPARTMENTS — Reading rooms
   ========================================================================== */
.ba2-departments{ background: var(--ba2-cream); }
.ba2-departments__head{ max-width: 40rem; margin: 0 auto 3.5rem; text-align: center; }
.ba2-departments__head h2{ font-size: clamp(1.8rem, 3.4vw, 2.6rem); }

.ba2-rooms{
  max-width: 76rem; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(74,47,31,.2);
  border: 1px solid rgba(74,47,31,.2);
}
.ba2-room{
  background: var(--ba2-cream-soft);
  padding: 2.4rem 2rem;
  cursor: pointer;
  transition: background .4s var(--ba2-ease);
}
.ba2-room:hover, .ba2-room:focus-within{ background: var(--ba2-warmwhite); }
.ba2-room__plate{ font-family: var(--ba2-font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ba2-brass); margin-bottom: .9rem; }
.ba2-room h3{ font-size: 1.35rem; margin-bottom: .6rem; }
.ba2-room__summary{ color: #5a4a3c; font-size: .95rem; }
.ba2-room__detail{
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .5s var(--ba2-ease);
}
.ba2-room__detail > *{ min-height: 0; }
.ba2-room__detail p, .ba2-room__detail ul{ overflow: hidden; padding-top: 1.1rem; }
.ba2-room.ba2-is-open .ba2-room__detail{ grid-template-rows: 1fr; }
.ba2-room__detail ul{ margin-top: .6rem; display: flex; flex-direction: column; gap: .35rem; }
.ba2-room__detail li{ font-size: .85rem; color: var(--ba2-brass); position: relative; padding-left: 1.1rem; }
.ba2-room__detail li::before{ content: '—'; position: absolute; left: 0; color: var(--ba2-gold); }

/* ==========================================================================
   FORUM — Skills wing
   ========================================================================== */
.ba2-forum{ background: var(--ba2-olive); color: var(--ba2-cream-soft); }
.ba2-forum__head{ max-width: 40rem; margin: 0 auto 3.5rem; }
.ba2-forum__head h2{ color: var(--ba2-cream-soft); font-size: clamp(1.8rem,3.4vw,2.4rem); margin-bottom: 1rem; }
.ba2-forum__head p{ color: rgba(242,232,210,.7); }
.ba2-forum__grid{
  max-width: 76rem; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.ba2-forum__card{
  border: 1px solid rgba(242,232,210,.18);
  padding: 1.75rem 1.4rem;
  border-radius: var(--ba2-radius);
  transition: border-color .3s var(--ba2-ease), transform .3s var(--ba2-ease);
}
.ba2-forum__card:hover{ border-color: var(--ba2-gold); transform: translateY(-4px); }
.ba2-forum__glyph{ font-family: var(--ba2-font-mono); color: var(--ba2-gold); font-size: .78rem; }
.ba2-forum__card h3{ color: var(--ba2-cream-soft); font-size: 1.1rem; margin: .8rem 0 .5rem; }
.ba2-forum__card p{ font-size: .85rem; color: rgba(242,232,210,.65); }

/* ==========================================================================
   CIVIL SERVICES ROADMAP
   ========================================================================== */
.ba2-civil{ background: var(--ba2-cream-soft); }
.ba2-civil__inner{ max-width: 60rem; margin: 0 auto; }
.ba2-civil__inner h2{ font-size: clamp(1.8rem,3.4vw,2.4rem); margin-bottom: 1.25rem; }
.ba2-civil__intro{ color: #40332a; max-width: 46rem; margin-bottom: 3rem; }
.ba2-roadmap{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.ba2-roadmap__step{ border-top: 1px solid var(--ba2-brass); padding-top: 1.2rem; }
.ba2-roadmap__stamp{
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border: 1px solid var(--ba2-gold); border-radius: 50%;
  font-family: var(--ba2-font-mono); font-size: .8rem; color: var(--ba2-brass); margin-bottom: 1rem;
}
.ba2-roadmap__step h3{ font-size: 1.05rem; margin-bottom: .5rem; }
.ba2-roadmap__step p{ font-size: .88rem; color: #5a4a3c; }

/* ==========================================================================
   SHELF — Careers bookshelf
   ========================================================================== */
.ba2-shelf{ background: var(--ba2-black); color: var(--ba2-cream-soft); }
.ba2-shelf__head{ max-width: 40rem; margin: 0 auto 3rem; text-align: center; }
.ba2-shelf__head h2{ color: var(--ba2-cream-soft); font-size: clamp(1.8rem,3.4vw,2.4rem); }
.ba2-shelf__head p:last-child{ color: var(--ba2-gold); font-family: var(--ba2-font-mono); font-size: .8rem; margin-top: .5rem; letter-spacing: .08em; }

.ba2-bookshelf{
  max-width: 74rem; margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  padding: 0 0 .75rem;
  border-bottom: 10px solid var(--ba2-leather);
  overflow-x: auto;
  scrollbar-width: thin;
}
.ba2-spine{
  flex: 1 0 auto;
  min-width: 3.4rem;
  height: 15rem;
  border: none;
  border-radius: 3px 3px 0 0;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.4rem;
  transition: transform .35s var(--ba2-ease), height .35s var(--ba2-ease);
  writing-mode: vertical-rl;
}
.ba2-spine:hover, .ba2-spine.ba2-is-active{ transform: translateY(-18px); }
.ba2-spine__title{
  font-family: var(--ba2-font-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--ba2-cream-soft);
  text-transform: uppercase;
  transform: rotate(180deg);
}
.ba2-spine--1{ background: #6b2f2b; }
.ba2-spine--2{ background: #4a5233; }
.ba2-spine--3{ background: #2d3a4a; }
.ba2-spine--4{ background: #5a3d1f; }
.ba2-spine--5{ background: #6e5a2d; }
.ba2-spine--6{ background: #3f4a3a; }
.ba2-spine--7{ background: #4a2f1f; }
.ba2-spine--8{ background: #5b3652; }
.ba2-spine--9{ background: #7a5a2e; }
.ba2-spine:focus-visible{ outline: 2px solid var(--ba2-gold-bright); outline-offset: 2px; }

.ba2-shelf__reader{
  max-width: 74rem; margin: 2.5rem auto 0;
  border: 1px solid rgba(242,232,210,.15);
  border-radius: var(--ba2-radius);
  padding: 2rem;
  min-height: 6rem;
}
.ba2-shelf__hint{ color: rgba(242,232,210,.5); font-family: var(--ba2-font-mono); font-size: .82rem; }
.ba2-shelf__reader-title{ font-family: var(--ba2-font-display); font-size: 1.4rem; color: var(--ba2-gold-bright); margin-bottom: .6rem; }
.ba2-shelf__reader-text{ color: rgba(242,232,210,.82); max-width: 46rem; }

/* ==========================================================================
   READING ROOM — resources
   ========================================================================== */
.ba2-reading{ background: var(--ba2-cream); }
.ba2-reading__head{ max-width: 40rem; margin: 0 auto 3rem; text-align: center; }
.ba2-reading__head h2{ font-size: clamp(1.8rem,3.4vw,2.4rem); }
.ba2-reading__grid{
  max-width: 70rem; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.ba2-reading__card{
  background: var(--ba2-cream-soft);
  border: 1px solid rgba(74,47,31,.18);
  padding: 1.8rem 1.5rem;
  border-radius: var(--ba2-radius);
}
.ba2-reading__card h3{ font-size: 1.05rem; margin-bottom: .6rem; }
.ba2-reading__card p{ font-size: .87rem; color: #5a4a3c; }

/* ==========================================================================
   FACULTY PHILOSOPHY
   ========================================================================== */
.ba2-faculty{ background: var(--ba2-cream-soft); }
.ba2-faculty__inner{ max-width: 54rem; margin: 0 auto; }
.ba2-faculty__inner h2{ font-size: clamp(1.8rem,3.4vw,2.4rem); margin-bottom: 1.1rem; }
.ba2-faculty__inner > p{ color: #40332a; max-width: 46rem; margin-bottom: 2.5rem; }
.ba2-faculty__grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.ba2-faculty__card{ text-align: center; }
.ba2-faculty__photo{ width: 120px; height: 120px; margin: 0 auto .9rem; border-radius: 50%; overflow: hidden; background: rgba(74,47,31,.12); }
.ba2-faculty__photo img{ width: 100%; height: 100%; object-fit: cover; }
.ba2-faculty__card h3{ font-size: 1rem; }
.ba2-faculty__card p{ font-size: .82rem; color: var(--ba2-brass); }
.ba2-faculty__placeholder{ font-family: var(--ba2-font-mono); font-size: .85rem; color: var(--ba2-brass); }

/* ==========================================================================
   PARENTS SECTION
   ========================================================================== */
.ba2-parents{ background: var(--ba2-olive); color: var(--ba2-cream-soft); }
.ba2-parents__inner{ max-width: 50rem; margin: 0 auto; }
.ba2-parents__inner h2{ color: var(--ba2-cream-soft); font-size: clamp(1.8rem,3.4vw,2.4rem); margin-bottom: 1.1rem; }
.ba2-parents__inner > p{ color: rgba(242,232,210,.72); margin-bottom: 1.75rem; }
.ba2-parents__list{ display: flex; flex-direction: column; gap: .75rem; }
.ba2-parents__list li{ position: relative; padding-left: 1.4rem; font-size: .95rem; color: rgba(242,232,210,.85); }
.ba2-parents__list li::before{ content: '§'; position: absolute; left: 0; color: var(--ba2-gold); }

/* ==========================================================================
   CATALOG — FAQ signature element
   ========================================================================== */
.ba2-catalog{ background: var(--ba2-leather); }
.ba2-catalog__head{ max-width: 40rem; margin: 0 auto 3rem; text-align: center; }
.ba2-catalog__head h2{ color: var(--ba2-cream-soft); font-size: clamp(1.8rem,3.4vw,2.4rem); }

.ba2-cabinet{ max-width: 56rem; margin: 0 auto; display: flex; flex-direction: column; gap: .6rem; }
.ba2-drawer{ background: #2a1c12; border: 1px solid rgba(184,144,90,.3); border-radius: 2px; }
.ba2-drawer__face{
  width: 100%;
  display: grid;
  grid-template-columns: 3.5rem 1fr 1.5rem;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: transparent;
  border: none;
  color: var(--ba2-cream-soft);
  text-align: left;
  cursor: pointer;
  font-family: var(--ba2-font-body);
}
.ba2-drawer__label{ font-family: var(--ba2-font-mono); font-size: .7rem; color: var(--ba2-gold); letter-spacing: .1em; }
.ba2-drawer__question{ font-size: 1.02rem; }
.ba2-drawer__handle{
  width: 1.5rem; height: .28rem; border-radius: 4px;
  background: var(--ba2-gold);
  justify-self: end;
  transition: transform .3s var(--ba2-ease);
}
.ba2-drawer[data-ba2-open] .ba2-drawer__handle{ transform: rotate(90deg); }
.ba2-drawer__card{
  display: grid; grid-template-rows: 0fr; overflow: hidden;
  transition: grid-template-rows .45s var(--ba2-ease);
  border-top: 1px dashed rgba(184,144,90,.3);
  margin: 0 1.4rem;
}
.ba2-drawer[data-ba2-open] .ba2-drawer__card{ grid-template-rows: 1fr; border-top-color: rgba(184,144,90,.5); }
.ba2-drawer__card p{ overflow: hidden; padding: 1.1rem 0 1.3rem; font-size: .92rem; color: rgba(242,232,210,.78); max-width: 42rem; }

/* ==========================================================================
   ADMISSIONS STEPS
   ========================================================================== */
.ba2-admissions{ background: var(--ba2-cream); }
.ba2-admissions__head{ max-width: 40rem; margin: 0 auto 3rem; text-align: center; }
.ba2-admissions__head h2{ font-size: clamp(1.8rem,3.4vw,2.4rem); }
.ba2-steps{
  max-width: 66rem; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.ba2-steps__item{ text-align: center; padding: 1.5rem 1rem; }
.ba2-steps__seal{
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  border: 1px solid var(--ba2-gold); font-family: var(--ba2-font-display); font-style: italic;
  font-size: 1.2rem; color: var(--ba2-brass); margin-bottom: 1rem;
}
.ba2-steps__item h3{ font-size: 1.05rem; margin-bottom: .5rem; }
.ba2-steps__item p{ font-size: .87rem; color: #5a4a3c; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.ba2-finalcta{
  background: radial-gradient(120% 100% at 50% 100%, var(--ba2-ink-2), var(--ba2-black));
  color: var(--ba2-cream-soft);
  text-align: center;
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  overflow: hidden;
}
.ba2-finalcta__atmosphere{ position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: .06; pointer-events: none; }
.ba2-finalcta__seal{ width: 46vw; max-width: 640px; }
.ba2-finalcta__seal circle{ fill: none; stroke: var(--ba2-gold); stroke-width: 1; }
.ba2-finalcta__seal text{ font-family: var(--ba2-font-display); font-size: 2.4rem; fill: var(--ba2-gold); font-style: italic; }
.ba2-finalcta__inner{ position: relative; z-index: 1; max-width: 40rem; margin: 0 auto; }
.ba2-finalcta__inner h2{ color: var(--ba2-cream-soft); font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 2.2rem; font-style: italic; font-family: var(--ba2-font-display); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px){
  .ba2-timeline__list{ grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
  .ba2-rooms{ grid-template-columns: repeat(2, 1fr); }
  .ba2-forum__grid{ grid-template-columns: repeat(3, 1fr); }
  .ba2-roadmap{ grid-template-columns: repeat(2, 1fr); }
  .ba2-reading__grid{ grid-template-columns: repeat(2, 1fr); }
  .ba2-steps{ grid-template-columns: repeat(2, 1fr); }
  .ba2-thesis__margins{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .ba2-timeline__list{ grid-template-columns: repeat(2, 1fr); }
  .ba2-rooms{ grid-template-columns: 1fr; }
  .ba2-forum__grid{ grid-template-columns: 1fr; }
  .ba2-roadmap{ grid-template-columns: 1fr; }
  .ba2-reading__grid{ grid-template-columns: 1fr; }
  .ba2-steps{ grid-template-columns: 1fr; }
  .ba2-hero__book{ display: none; }
  .ba2-drawer__face{ grid-template-columns: 2.4rem 1fr 1.2rem; }
  .ba2-spine{ min-width: 2.6rem; height: 11rem; }
}





/* =====================================================
   BA PAGE VISIBILITY + MOBILE FIX
   Paste at the END of ba.css
===================================================== */

/* ---------- Force Visible ---------- */

#ba2-main{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
}

#ba2-main section{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    position:relative;
}

[data-ba2-reveal],
[data-ba2-fade],
[data-ba2-split]{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}

.ba2-is-visible[data-ba2-reveal],
.ba2-is-visible[data-ba2-fade],
.ba2-is-visible[data-ba2-split]{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}

/* ---------- Hero ---------- */

.ba2-hero{
    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;
    position:relative;
    overflow:hidden;
}

.ba2-hero__inner{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    position:relative;
    z-index:100;
}

.ba2-hero__title,
.ba2-hero__headline,
.ba2-hero__kicker,
.ba2-hero__lede,
.ba2-hero__actions{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}

/* ---------- Mobile ---------- */

@media (max-width:768px){

    .ba2-hero{
        min-height:auto !important;
        padding:120px 20px 70px !important;
        align-items:flex-start !important;
    }

    .ba2-hero__inner{
        max-width:100% !important;
        text-align:left !important;
    }

    .ba2-hero__headline{
        font-size:clamp(38px,11vw,56px) !important;
        line-height:1.05 !important;
    }

    .ba2-hero__lede{
        max-width:100% !important;
        font-size:16px !important;
        margin-top:20px !important;
    }

    .ba2-hero__actions{
        display:flex !important;
        flex-direction:column !important;
        gap:14px !important;
        margin-top:28px !important;
    }

    .ba2-btn{
        width:100% !important;
        justify-content:center !important;
    }

    .ba2-thesis__margins,
    .ba2-rooms,
    .ba2-forum__grid,
    .ba2-roadmap,
    .ba2-reading__grid,
    .ba2-steps{
        grid-template-columns:1fr !important;
    }

    .ba2-bookshelf{
        overflow-x:auto !important;
        padding-bottom:20px !important;
    }

    .ba2-spine{
        min-width:70px !important;
    }

    .ba2-scrollcue{
        display:none !important;
    }

    .ba2-hero__book{
        display:none !important;
    }
}





/*==================================================
 ADMISSION SECTION
==================================================*/

#contact{
    position:relative;
    padding:110px 0;
    background:#0d0d0d;
}

#contact .container{
    width:min(1180px,92%);
    margin:auto;
}

.section-head{
    text-align:center;
    margin-bottom:70px;
}

.section-title{
    font-size:clamp(34px,5vw,58px);
    color:#fff;
    font-weight:800;
    margin-bottom:15px;
}

.section-kicker{
    color:#bdbdbd;
    max-width:760px;
    margin:auto;
    line-height:1.8;
}

.contact-wrap{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:start;
}

@media(max-width:991px){

.contact-wrap{

grid-template-columns:1fr;

}

}

/*============================
FORM
============================*/

.class5-form{

background:#171717;

border:1px solid rgba(255,255,255,.08);

padding:40px;

border-radius:22px;

display:flex;

flex-direction:column;

gap:22px;

box-shadow:0 15px 60px rgba(0,0,0,.35);

}

.class5-field{

display:flex;

flex-direction:column;

gap:8px;

}

.class5-field label{

font-size:15px;

font-weight:600;

color:#fff;

}

.class5-field input,
.class5-field textarea{

width:100%;

padding:15px 18px;

border-radius:12px;

border:1px solid rgba(255,255,255,.08);

background:#111;

color:#fff;

font-size:15px;

transition:.3s;

outline:none;

}

.class5-field textarea{

resize:vertical;

min-height:140px;

}

.class5-field input:focus,
.class5-field textarea:focus{

border-color:#f3b400;

box-shadow:0 0 0 3px rgba(243,180,0,.15);

}

.class5-form-note{

font-size:14px;

line-height:1.7;

color:#bdbdbd;

}

.class5-btn{

height:58px;

border:none;

cursor:pointer;

border-radius:14px;

font-size:17px;

font-weight:700;

transition:.35s;

}

.class5-btn--primary{

background:#f3b400;

color:#000;

}

.class5-btn--primary:hover{

transform:translateY(-3px);

box-shadow:0 18px 35px rgba(243,180,0,.28);

}


/*======================================
CONTACT INFO
======================================*/

.contact-info{

display:flex;

flex-direction:column;

gap:25px;

background:#171717;

padding:40px;

border-radius:22px;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 15px 60px rgba(0,0,0,.35);

}

.contact-info__row{

display:flex;

gap:18px;

align-items:flex-start;

}

.contact-info__icon{

width:56px;

height:56px;

border-radius:50%;

background:#f3b400;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

font-weight:700;

color:#000;

flex-shrink:0;

}

.contact-info__title{

font-size:18px;

font-weight:700;

color:#fff;

margin-bottom:6px;

}

.contact-info__text{

font-size:15px;

line-height:1.8;

color:#cfcfcf;

}

.contact-info__text a{

color:#fff;

text-decoration:none;

}

.contact-info__text a:hover{

color:#f3b400;

}

.map-embed{

overflow:hidden;

border-radius:18px;

margin-top:10px;

}

.map-embed iframe{

width:100%;

height:300px;

border:none;

display:block;

}


/*========================================
THANK YOU POPUP
========================================*/

.thankyou-modal{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(8px);
    z-index:999999;
    padding:20px;
}

.thankyou-modal.show{
    display:flex;
    animation:thankFade .35s ease;
}

.thankyou-box{
    width:100%;
    max-width:560px;
    background:#151515;
    border:1px solid rgba(255,255,255,.08);
    border-radius:26px;
    padding:42px 35px;
    text-align:center;
    color:#fff;
    box-shadow:0 35px 90px rgba(0,0,0,.45);
    animation:thankPopup .35s ease;
}

.thankyou-icon{
    width:95px;
    height:95px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#16a34a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-weight:700;
    color:#fff;
}

.thankyou-box h3{
    margin:0 0 15px;
    font-size:34px;
    color:#fff;
    font-weight:700;
}

.thankyou-box p{
    color:#bfbfbf;
    line-height:1.8;
    font-size:16px;
    margin:0 0 28px;
}

.thankyou-actions{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom:30px;
}

.thankyou-btn{
    height:52px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    color:#fff;
    transition:.3s;
}

.thankyou-btn:hover{
    transform:translateY(-3px);
}

.thankyou-btn.whatsapp{
    background:#25D366;
}

.thankyou-btn.instagram{
    background:#E1306C;
}

.thankyou-btn.facebook{
    background:#1877F2;
}

.thankyou-btn.youtube{
    background:#FF0000;
}

.thankyou-close{
    width:100%;
    height:54px;
    border:none;
    border-radius:14px;
    background:#fdbe00;
    color:#111;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.thankyou-close:hover{
    background:#e2aa00;
}

@keyframes thankFade{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@keyframes thankPopup{
    from{
        opacity:0;
        transform:translateY(25px) scale(.92);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

@media(max-width:768px){

    .thankyou-box{
        padding:30px 22px;
    }

    .thankyou-actions{
        grid-template-columns:1fr;
    }

    .thankyou-box h3{
        font-size:28px;
    }

    .thankyou-box p{
        font-size:15px;
    }

}