/* ── CAROUSEL ── */
.carousel-band {
  background: var(--charcoal-plum);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.carousel-label {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 52px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.carousel-label-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-h2 {
  font-family: "Exquise", serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.carousel-h2 em {
  font-style: italic;
  color: var(--orange);
}
.carousel-label-line {
  display: none;
}
.carousel-label-text {
  font-family: "Jost", sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.carousel-label-text em {
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}
.carousel-controls {
  display: flex;
  gap: 8px;
}
.carousel-btn {
  font-family: "Jost", sans-serif;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.carousel-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}
.carousel-viewport {
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  padding: 28px 52px 24px;
}
.carousel-track {
  display: flex;
  gap: 14px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* All cards square, image always greyscale */
.c-card {
  flex: 0 0 calc(25% - 10.5px);
  min-width: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: #888;
}
/* Remove any portrait/landscape overrides — all square now */
.c-card.portrait,
.c-card.landscape {
  aspect-ratio: 1/1;
}

.c-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.5s ease;
}
.c-card:hover img {
  transform: scale(1.06);
}

/* Solid colour filter overlay — mix-blend-mode:multiply over greyscale = tinted photo */
.c-filter {
  position: absolute;
  inset: 0;
  background: var(--dusty-blush);
  mix-blend-mode: multiply;
  opacity: 0.22;
  transition: opacity 0.35s ease;
}
/* On hover lighten the filter so image reads more clearly */
.c-card:hover .c-filter {
  opacity: 0.08;
}

/* c-overlay/c-caption/c-tag removed — clean photos only */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 52px 20px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.carousel-dot.active {
  background: var(--orange);
  width: 20px;
  border-radius: 3px;
}
.carousel-quote-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 52px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.cqs-text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 24px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.88);
  flex: 1;
  line-height: 1.55;
}
.cqs-text strong {
  color: #fff;
  font-style: normal;
  font-weight: 400;
}
.cqs-attr {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
}

/* ── SHARED PAGE UTILS ── */
.page-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 52px;
}
.section-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}

/* ── INTRO BAND ── */
.intro-band {
  background: var(--chalk);
  padding: 72px 0 32px;
  border-bottom: none;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-h2 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 22px;
}
.intro-h2 em {
  font-style: italic;
  color: var(--pink);
}
.intro-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
}
.intro-body p + p {
  margin-top: 16px;
}

/* Founder panel — Gingi Lee bio on intro RHS */
.founder-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.founder-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(10%);
  display: block;
}
.founder-body {
  background: var(--pinked-linen);
  padding: 32px 34px 34px;
  flex: 1;
}
.founder-name {
  font-family: "Exquise", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: var(--aubergine);
  margin-bottom: 16px;
}
.founder-name em {
  font-style: italic;
  color: var(--pink);
}
.founder-bio {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal-plum);
  margin-bottom: 22px;
}
.founder-quote {
  position: relative;
  padding: 0 0 0 28px;
  margin: 0;
}
.founder-quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -6px;
  font-family: "Exquise", serif;
  font-size: 48px;
  line-height: 1;
  color: var(--pink);
  font-style: italic;
}
.founder-quote-text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--grey-magenta);
}

/* ── INTRO QUOTE BAND (centred, full-width quote under Foundation) ── */
.intro-quote-band {
  background: var(--chalk);
  padding: 24px 0 72px;
}
.intro-quote-band-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 52px;
  text-align: center;
}
.intro-quote-band-text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  line-height: 1.55;
  color: var(--pink);
}
.intro-quote-band-attr {
  display: inline-block;
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-plum);
  font-weight: 500;
  font-style: normal;
}

/* ── WHAT HAPPENS ── */
.what-band {
  background: var(--pinked-linen);
  padding: 72px 0;
}
.what-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.what-h2 {
  font-family: "Exquise", serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 0;
}
.what-h2 em {
  font-style: italic;
  color: var(--pink);
}

.what-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
}
.what-body p + p {
  margin-top: 18px;
}
.pull-quote {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--greige);
  border-bottom: 1px solid var(--greige);
}
.pull-quote-text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 21px;
  font-style: italic;
  line-height: 1.55;
  color: var(--pink);
}

/* ── LINEAGE ── */
.lineage-band {
  background: var(--linen);
  padding: 72px 0;
}
.lineage-header {
  margin-bottom: 40px;
}
.lineage-h2 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
}
.lineage-h2 em {
  font-style: italic;
  color: var(--pink);
}
.lineage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.lineage-card {
  padding: 32px 28px;
  transition: filter 0.2s;
}
.lineage-card:nth-child(1) {
  background: var(--orange);
}
.lineage-card:nth-child(2) {
  background: var(--pink);
}
.lineage-card:nth-child(3) {
  background: var(--charcoal-plum);
}
.lineage-card:hover {
  filter: brightness(1.05);
}
.lineage-card-title {
  font-family: "Exquise", serif;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.lineage-card-body {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  font-weight: 400;
}

/* ── STORY / TIMELINE ── */
.story-band {
  background: var(--chalk);
  padding: 72px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-right-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.story-h2 {
  font-family: "Exquise", serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 40px;
}
.story-h2 em {
  font-style: italic;
  color: var(--pink);
}
.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0 16px;
  margin-bottom: 28px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 28px;
  bottom: -28px;
  width: 1px;
  background: var(--greige);
}
.timeline-item:last-child::before {
  display: none;
}
.tl-year-wrap {
  text-align: center;
}
.tl-year {
  font-family: "Exquise", serif;
  font-size: 14px;
  color: var(--pink);
  font-weight: 400;
  padding-top: 2px;
  display: block;
}
.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  margin: 5px auto 0;
  position: relative;
  z-index: 1;
}
.tl-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  padding-bottom: 4px;
}
.tl-body strong {
  font-family: "Exquise", serif;
  font-weight: 400;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
/* Story images — stacked to fill timeline height */
.story-imgs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.story-img-main {
  overflow: hidden;
  height: 260px;
  position: relative;
  flex-shrink: 0;
}
.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}
.story-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(43, 28, 34, 0.65), transparent);
  padding: 18px;
}
.story-img-caption-text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}
.story-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  flex-shrink: 0;
}
.story-img-small {
  overflow: hidden;
  height: 150px;
}
.story-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.3s;
}
.story-img-small:hover img {
  filter: grayscale(0%);
}
.story-img-tall {
  overflow: hidden;
  flex-shrink: 0;
}
.story-img-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  display: block;
  transition: filter 0.3s;
}
.story-img-tall:hover img {
  filter: grayscale(0%);
}
.story-img-mixed-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  height: 340px;
}
.story-img-portrait-single {
  overflow: hidden;
}
.story-img-portrait-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.3s;
  display: block;
}
.story-img-portrait-single:hover img {
  filter: grayscale(0%);
}
.story-img-landscapes {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.story-img-landscapes > div {
  overflow: hidden;
  min-height: 0;
}
.story-img-landscapes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.3s;
  display: block;
}
.story-img-landscapes > div:hover img {
  filter: grayscale(0%);
}

/* ── FACULTY ── */
.faculty-band {
  background: var(--pinked-linen);
  padding: 72px 0;
}
.faculty-header {
  margin-bottom: 32px;
  max-width: 780px;
}
.faculty-h2 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 18px;
}
.faculty-h2 em {
  font-style: italic;
  color: var(--pink);
}
.faculty-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
}

/* Faculty quote — centred, full-width within section */
.faculty-quote {
  max-width: 780px;
  margin: 0 auto 48px;
  padding: 36px 56px 32px;
  position: relative;
  text-align: center;
  background: transparent;
}
.faculty-quote::before {
  content: "\201C";
  position: absolute;
  left: 18px;
  top: 14px;
  font-family: "Exquise", serif;
  font-size: 72px;
  line-height: 1;
  color: var(--pink);
  font-style: italic;
}
.faculty-quote::after {
  content: "\201D";
  position: absolute;
  right: 18px;
  bottom: -8px;
  font-family: "Exquise", serif;
  font-size: 72px;
  line-height: 1;
  color: var(--pink);
  font-style: italic;
}
.faculty-quote-text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  line-height: 1.55;
  color: var(--aubergine);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.faculty-quote-attr {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-plum);
  font-weight: 500;
}

/* Unified 3-column grid — lead cards span larger text, specialist cards regular */
.faculty-unified-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.faculty-card {
  background: var(--chalk);
  padding: 22px 22px;
  transition:
    background 0.25s,
    transform 0.25s;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.faculty-card:hover {
  background: var(--charcoal-plum);
}

/* Lead variants — bigger text to stand out */
.faculty-card-lead {
  padding: 30px 28px;
}
.fc-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
  display: block;
  transition: color 0.25s;
  font-weight: 500;
}
.faculty-card-lead:hover .fc-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.fc-name-lg {
  font-family: "Exquise", serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--aubergine);
  margin-bottom: 8px;
  transition: color 0.25s;
  line-height: 1.2;
}
.fc-name-lg em {
  font-style: italic;
  color: var(--pink);
  transition: color 0.25s;
}
.faculty-card-lead:hover .fc-name-lg {
  color: #fff;
}
.faculty-card-lead:hover .fc-name-lg em {
  color: rgba(255, 255, 255, 0.95);
}
.fc-desc {
  font-size: 15px;
  color: var(--charcoal-plum);
  line-height: 1.65;
  transition: color 0.25s;
}
.faculty-card-lead:hover .fc-desc {
  color: rgba(255, 255, 255, 0.92);
}

/* Specialist variants */
.fc-name {
  font-family: "Exquise", serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--aubergine);
  margin-bottom: 10px;
  transition: color 0.25s;
  display: block;
  line-height: 1.2;
}
.fc-name em {
  font-style: italic;
  color: var(--pink);
  transition: color 0.25s;
}
.faculty-card:hover .fc-name {
  color: #fff;
}
.faculty-card:hover .fc-name em {
  color: rgba(255, 255, 255, 0.95);
}
.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.fc-tag + .fc-tag:before {
  content: "·";
  color: var(--greige);
  margin: 0 6px;
}
.fc-tag {
  font-family: "Jost", sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0;
  color: var(--light-plum);
  transition: color 0.25s;
}
.faculty-card:hover .fc-tag {
  color: rgba(255, 255, 255, 0.85);
}
.faculty-card:hover .fc-tag + .fc-tag:before {
  color: rgba(255, 255, 255, 0.45);
}

/* ── STUDENTS ── */
.students-band {
  background: var(--linen);
  padding: 72px 0;
}
.students-header {
  margin-bottom: 40px;
}
.students-h2 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
}
.students-h2 em {
  font-style: italic;
  color: var(--pink);
}
.students-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: stretch;
}
.students-single-col {
  max-width: 820px;
}
.students-two-col-new {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 32px;
}
.students-text-col p:last-child {
  margin-bottom: 0;
}
.students-left {
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}
.students-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.students-include {
  margin-top: 24px;
}
.students-include-heading {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}
.students-list {
  list-style: none;
  padding: 0;
}
.students-list li {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 18px;
  font-style: italic;
  color: var(--aubergine);
  padding: 7px 0;
  border-bottom: 1px solid var(--greige);
  line-height: 1.3;
}
.students-list li:first-child {
  border-top: 1px solid var(--greige);
}

.programmes-band {
  background: var(--chalk);
  padding: 72px 0;
}
.prog-eyebrow {
  color: var(--orange);
}
.prog-h2 {
  font-family: "Exquise", serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 12px;
}
.prog-h2 em {
  font-style: italic;
  color: var(--pink);
}
.prog-h2-aubergine {
  color: var(--aubergine);
  font-weight: 500;
}
.prog-intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal);
  max-width: 640px;
  margin-bottom: 44px;
}
.prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.prog-card {
  background: var(--chalk);
  padding: 36px 30px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
}
.prog-card:nth-child(1) {
  border-top-color: var(--orange);
}
.prog-card:nth-child(2) {
  border-top-color: var(--pink);
}
.prog-card:nth-child(3) {
  border-top-color: var(--charcoal);
}
.prog-card:hover {
  background: var(--pinked-linen);
}
.prog-hours {
  font-family: "Exquise", serif;
  font-size: 42px;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  font-weight: 400;
}
.prog-card-title {
  font-family: "Exquise", serif;
  font-size: 19px;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 10px;
}
.prog-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.prog-card-link {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
  border-bottom: 1px solid var(--dusty-blush);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.prog-card-link:hover {
  border-color: var(--pink);
}
/* YA logo badge — uses actual logo images from project */
.prog-ya-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
}

/* ── COMMITMENT ── */
.commit-band {
  background: var(--linen);
  padding: 72px 0;
}
.commit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.commit-h2 {
  font-family: "Exquise", serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 22px;
}
.commit-h2 em {
  font-style: italic;
  color: var(--pink);
}
.commit-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
}
.commit-body p + p {
  margin-top: 16px;
}
.commit-pillars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--chalk);
}
.pillar-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.pillar:nth-child(1) .pillar-icon {
  background: var(--pink);
}
.pillar:nth-child(2) .pillar-icon {
  background: var(--orange);
}
.pillar:nth-child(3) .pillar-icon {
  background: var(--dusty-blush);
}
.pillar:nth-child(4) .pillar-icon {
  background: var(--greige);
}
.pillar-title {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--aubergine);
  margin-bottom: 4px;
}
.pillar-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal-plum);
}

/* ── CTA ── */
.cta-band {
  background: var(--pink);
  padding: 88px 0 84px;
  text-align: center;
}
.cta-h2 {
  font-family: "Exquise", serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.cta-h2 em {
  font-style: italic;
  color: var(--orange);
}
.cta-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 44px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 30px;
  background: #fff;
  color: var(--pink);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-white:hover {
  background: var(--chalk);
}
.btn-ghost-w {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 30px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}
.btn-ghost-w:hover {
  border-color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — standardised breakpoints 1100 / 900 / 600
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .page-wrap {
    padding: 0 36px;
  }
  .carousel-label,
  .carousel-viewport,
  .carousel-dots,
  .carousel-quote-strip {
    padding-left: 36px;
    padding-right: 36px;
  }
  .hdr-content {
    padding: 48px 36px 48px 32px;
  }
  .hdr-title {
    font-size: clamp(36px, 5vw, 56px);
  }
  .intro-grid,
  .story-grid,
  .commit-grid {
    gap: 48px;
  }
  .what-inner {
    gap: 40px;
  }
  .faculty-unified-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .foot-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .page-wrap {
    padding: 0 24px;
  }

  /* Hero stacks vertically */
  .hdr {
    flex-direction: column;
    min-height: auto;
  }
  .hdr-circle-wrap {
    width: 100%;
    height: 200px;
  }
  .hdr-circle-wrap::after {
    background: linear-gradient(
      to bottom,
      transparent 50%,
      var(--light-plum) 100%
    );
  }
  .hdr-content {
    padding: 36px 24px 48px;
  }
  .hdr-bc {
    margin-bottom: 20px;
  }
  .hdr-sub {
    padding-bottom: 0;
  }

  /* Carousel paddings */
  .carousel-label,
  .carousel-viewport,
  .carousel-dots,
  .carousel-quote-strip {
    padding-left: 24px;
    padding-right: 24px;
  }
  .carousel-quote-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cqs-text {
    font-size: 20px;
  }
  .c-card {
    flex: 0 0 calc(50% - 7px);
  }

  /* Sections — stack two-col grids */
  .intro-grid,
  .story-grid,
  .commit-grid,
  .students-two-col,
  .students-two-col-new,
  .what-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .students-left {
    padding-right: 0;
  }
  .intro-quote-with-image {
    grid-template-columns: 140px 1fr;
  }
  .intro-quote-img {
    width: 140px;
  }

  /* 3-col grids → 2 */
  .lineage-grid,
  .prog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lineage-card:nth-child(3) {
    grid-column: 1 / -1;
  }
  .prog-card:nth-child(3) {
    grid-column: 1 / -1;
  }
  .faculty-unified-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Section padding tightens */

  /* v12 responsive fixes */
  .students-two-col-new {
    gap: 32px;
  }
  .founder-img {
    height: 240px;
  }
  .faculty-quote {
    padding: 32px 44px 28px;
  }
  .faculty-quote::before {
    font-size: 56px;
    left: 10px;
    top: 10px;
  }
  .faculty-quote::after {
    font-size: 56px;
    right: 10px;
    bottom: -6px;
  }
  /* Carousel heading reduces */
  .carousel-h2 {
    font-size: clamp(20px, 3vw, 26px);
  }
  .intro-band,
  .what-band,
  .lineage-band,
  .story-band,
  .faculty-band,
  .students-band,
  .programmes-band,
  .commit-band {
    padding: 56px 0;
  }
  .cta-band {
    padding: 64px 0;
  }
}

@media (max-width: 600px) {
  .page-wrap {
    padding: 0 20px;
  }

  /* Hero */
  .hdr-content {
    padding: 28px 20px 36px;
  }
  .hdr-title {
    font-size: clamp(32px, 8vw, 44px);
  }
  .hdr-sub {
    font-size: 17px;
  }
  .hdr-circle-wrap {
    height: 160px;
  }

  /* Carousel */
  .carousel-label,
  .carousel-viewport,
  .carousel-dots,
  .carousel-quote-strip {
    padding-left: 20px;
    padding-right: 20px;
  }
  .carousel-label-text {
    font-size: 9px;
  }
  .c-card {
    flex: 0 0 calc(100% - 0px);
  }
  .cqs-text {
    font-size: 18px;
  }

  /* Sections */
  .intro-band,
  .what-band,
  .lineage-band,
  .story-band,
  .faculty-band,
  .students-band,
  .programmes-band,
  .commit-band {
    padding: 44px 0;
  }
  .cta-band {
    padding: 52px 0;
  }

  /* Cards stack fully on mobile */
  .lineage-grid,
  .prog-grid,
  .faculty-unified-grid {
    grid-template-columns: 1fr;
  }
  .lineage-card:nth-child(3),
  .prog-card:nth-child(3) {
    grid-column: auto;
  }

  /* Intro quote stacks */
  .intro-quote-with-image {
    grid-template-columns: 1fr;
  }
  .intro-quote-img {
    width: 100%;
    height: 220px;
  }

  /* Story timeline */
  .timeline-item {
    grid-template-columns: 64px 1fr;
  }
  .timeline-item::before {
    left: 28px;
  }

  /* Faculty header */
  .faculty-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons a {
    text-align: center;
  }

  /* v12 responsive fixes — mobile */
  .students-two-col-new {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pillar {
    padding: 18px 18px;
    gap: 14px;
  }
  .pillar-icon {
    width: 30px;
    height: 30px;
  }
  .faculty-quote {
    padding: 24px 32px 22px;
    margin: 0 auto 36px;
  }
  .faculty-quote::before {
    font-size: 44px;
    left: 6px;
    top: 6px;
  }
  .faculty-quote::after {
    font-size: 44px;
    right: 6px;
    bottom: -4px;
  }
  .faculty-quote-text {
    font-size: 18px;
  }
  .founder-img {
    height: 200px;
  }
  .founder-body {
    padding: 24px 22px;
  }
  .founder-name {
    font-size: 24px;
  }
  .carousel-h2 {
    font-size: 18px;
  }
  /* Intro-quote-band tighten */
  .intro-quote-band {
    padding: 16px 0 48px;
  }
  .intro-quote-band-text {
    font-size: 18px;
  }
  .intro-quote-band-inner {
    padding: 0 20px;
  }
  /* Stats num smaller on mobile */
  .stat-num {
    font-size: 28px;
  }
  /* Faculty card padding */
  .faculty-card {
    padding: 18px 18px;
  }
  .faculty-card-lead {
    padding: 22px 20px;
  }
  .fc-name-lg {
    font-size: 20px;
  }
  /* Heading sizes */
  .intro-h2,
  .lineage-h2,
  .commit-h2,
  .faculty-h2,
  .students-h2 {
    font-size: clamp(22px, 5.5vw, 28px);
  }
  .story-h2,
  .prog-h2 {
    font-size: clamp(24px, 6vw, 30px);
  }
  .what-h2 {
    font-size: clamp(22px, 5.5vw, 28px);
  }
  .cta-h2 {
    font-size: clamp(26px, 6.5vw, 32px);
  }
}
