/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
}

body {
  font-family: 'Avenir Next', 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #202020;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

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

/* =====================
   LOAD ANIMATIONS
   ===================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero__image {
  animation: fadeIn 0.9s ease 0.2s both;
}

.hero__panel--1 .hero__title {
  opacity: 0;
}

/* =====================
   REVEAL ANIMATIONS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.typing::after {
  content: '|';
  display: inline;
  margin-left: 1px;
  animation: blink-cursor 0.6s step-end infinite;
}

/* =====================
   TOKENS
   ===================== */
:root {
  --green:      #178452;
  --green-dark: #0a5f38;
  --green-hero-top: #178653;
  --text-dark:  #202020;
  --white:      #ffffff;

  --font-serif: 'Bree Serif', Georgia, serif;
  --font-sans:  'Avenir Next', 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --pad-x: 60px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.85; }

.btn--green {
  background: var(--green);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--green-dark);
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--green-dark);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.navbar.navbar--visible {
  opacity: 1;
  pointer-events: auto;
}

.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 37px;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.navbar__nav a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity 0.15s;
}
.navbar__nav a:hover { opacity: 0.6; }
.navbar__btn {
  color: var(--green-dark);
  background: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}


@media (max-width: 900px) {
  .navbar__nav-link { display: none; }
}

/* =====================
   HERO
   ===================== */
.hero-wrap {
  height: 100vh;
  position: relative;
}

.hero {
  background: #fff;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Top bar: fund name left, lang right */
.hero__topbar {
  position: absolute;
  top: 40px;
  left: var(--pad-x);
  right: var(--pad-x);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 3;
}

.hero__org {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__org-line {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  line-height: 1.5;
}

.hero__org-name {
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  color: #555;
  line-height: 1;
  margin-top: 2px;
}

.hero__lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__lang-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #bbb;
  transition: color 0.15s;
}

.hero__lang-link--active {
  color: var(--green-dark);
}

.hero__lang-link:hover {
  color: var(--green-dark);
}

.hero__lang-sep {
  font-size: 12px;
  color: #ccc;
}

/* Stage: full height flex row, vertically + horizontally centered */
.hero__stage {
  position: absolute;
  inset: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x) 0 calc(var(--pad-x) + 160px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Photo — JS handles initial centering + slide-left */
.hero__image {
  width: 280px;
  flex-shrink: 0;
  opacity: 0;
  will-change: transform;
  position: relative;
  bottom: 26px;
  clip-path: inset(-100vh 0 0 0);
}

/* Gray noisy square behind the photo — aligned bottom+sides, photo overflows top */
.hero__image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 67%;
  z-index: 0;
  opacity: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E"),
    linear-gradient(243deg, rgba(222, 222, 222, 0.70) 0.04%, rgba(91, 91, 91, 0.70) 78.76%);
  background-size: 280px 280px, 100% 100%;
  animation: square-appear 0.8s ease forwards 0s;
}

@keyframes square-appear {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* White overlay slides up → reveals photo bottom to top */
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 3;
  animation: photo-unveil 0.85s cubic-bezier(0.76, 0, 0.24, 1) forwards 1.3s;
}

@keyframes photo-unveil {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}

.hero__image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.28));
  transform-origin: bottom center;
  animation: hero-photo-zoom 16s ease-out 2.3s forwards;
}

@keyframes hero-photo-zoom {
  from { transform: scale(1)    translateY(0); }
  to   { transform: scale(1.12) translateY(20px); }
}

/* Vertical divider line — grows in height */
.hero__divider {
  width: 2px;
  height: 0;
  background: var(--green-dark);
  margin: 0 80px;
  flex-shrink: 0;
  opacity: 0;
  transition: height 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

/* Text side */
.hero__text-side {
  width: 420px;
  flex-shrink: 0;
  opacity: 0;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.25;
  color: var(--green-dark);
  max-width: 560px;
  min-height: 158px;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--green-dark);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scroll-bounce 1.6s ease-in-out infinite;
  z-index: 3;
  white-space: nowrap;
  transition: opacity 0.6s ease;
}

.hero__scroll-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =====================
   ROMAN INTRO
   ===================== */
.roman-intro {
  background: #fff;
  padding-top: 0;
  padding-bottom: 100px;
}

.roman-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.roman-intro__para {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.roman-intro__para:last-child {
  margin-bottom: 0;
}

/* =====================
   SCHOLARSHIP BLOCKS
   ===================== */
.schol-blocks {
  background: #f8f8f6;
  padding: 100px 0;
}

.schol-blocks__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.schol-blocks__title {
  font-family: var(--font-serif);
  font-size: 36px;
  color: #000;
  margin-bottom: 48px;
}

.schol-blocks__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.schol-block {
  padding: 32px 32px 32px 0;
  border-top: 1px solid var(--green);
}

.schol-block:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
  border-left: 1px solid #e0e0e0;
}

.schol-block p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
}

.schol-semibold {
  font-weight: 600;
}

.schol-times-italic {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 18px;
}

.schol-block a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.schol-block--amount {
  display: flex;
  flex-direction: column;
  gap: 24px;
  grid-column: 1 / -1;
  border-left: none;
  padding-left: 0;
}

/* After the full-width block, nth-child parity flips — correct it */
.schol-block--amount ~ .schol-block:nth-child(even) {
  padding-left: 0;
  padding-right: 32px;
  border-left: none;
}

.schol-block--amount ~ .schol-block:nth-child(odd) {
  padding-left: 48px;
  padding-right: 0;
  border-left: 1px solid #e0e0e0;
}

.schol-amount {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.schol-amount__left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.schol-amount__primary {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

.schol-amount__currency {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 4px;
}

.schol-amount__divider {
  width: 1px;
  height: 48px;
  background: #ddd;
  flex-shrink: 0;
}

.schol-amount__equiv {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #888;
  letter-spacing: 0.02em;
  line-height: 2;
  display: flex;
  flex-direction: column;
}

/* =====================
   SHARED
   ===================== */
.section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 40px;
}

.section-title--white {
  color: var(--white);
}

/* =====================
   STATS BAND
   ===================== */
.stats {
  background: var(--green-dark);
  padding: 48px 0;
}

.stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stats__number {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1;
  color: var(--white);
}

.stats__label {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.stats__divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
}


/* =====================
   ABOUT ROMAN
   ===================== */
.roman {
  background: #fff;
  padding: 100px 0;
}

.roman__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 100px;
  align-items: stretch;
}

.roman__text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.roman__lead {
  font-size: 22px !important;
  line-height: 1.45 !important;
  color: #000 !important;
  font-weight: 600;
  margin-bottom: 24px !important;
}

.roman__quote {
  margin-top: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--green);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

.roman__photo {
  overflow: hidden;
  border-radius: 4px;
  max-height: 640px;
}

.roman__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
}

/* =====================
   WHAT PARTNERS SAY
   ===================== */
.partners {
  background: linear-gradient(135deg, var(--green-hero-top), var(--green-dark));
  padding: 100px 0;
}

.partners__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.quote-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 36px 32px;
}

.quote-card__mark {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}

.quote-card p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.quote-card__author {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  display: block;
}

.quote-card__author span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

/* =====================
   WHAT STUDENTS SAY
   ===================== */
.students {
  background: #f8f8f6;
  padding: 100px 0;
}

.students__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.students__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.students__header .section-title {
  margin-bottom: 0;
}

/* Vertical marquee */
.students__marquee-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 720px;
  overflow: hidden;
  position: relative;
  cursor: default;
}

.students__marquee-wrap::before,
.students__marquee-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  pointer-events: none;
}

.students__marquee-wrap::before {
  top: 0;
  background: linear-gradient(to bottom, #f8f8f6, transparent);
}

.students__marquee-wrap::after {
  bottom: 0;
  background: linear-gradient(to top, #f8f8f6, transparent);
}

.students__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
}

/* Expanded grid */
.students__all {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin-bottom: 40px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.students__all-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.students__all .student-card {
  margin-bottom: 0;
}

.students__all[hidden] {
  display: none !important;
}

.students__show-all {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: none;
  border: 1.5px solid var(--green-dark);
  border-radius: 0;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.students__show-all:hover {
  background: var(--green-dark);
  color: #fff;
}

.students__footer {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.students__show-all--wide {
  width: 100%;
  justify-content: center;
}

.student-card {
  background: #fff;
  border-radius: 4px;
  padding: 32px;
  border-left: 3px solid var(--green);
  flex-shrink: 0;
}

.student-card__mark {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: rgba(10, 95, 56, 0.2);
  margin-bottom: 8px;
}

.student-card p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.student-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  color: #000;
}

.student-card cite span {
  font-weight: 400;
  color: #888;
  margin-left: 8px;
}

/* =====================
   HOW TO APPLY
   ===================== */
.apply {
  background: #fff;
  padding: 100px 0;
}

.apply__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.apply__header {
  max-width: 700px;
  margin-bottom: 64px;
}

.apply__motto {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.5;
  color: #444;
  font-style: italic;
  margin-bottom: 8px;
}

.apply__motto-author {
  font-style: normal;
  font-size: 14px;
  color: #888;
}

.apply__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}

.apply__step {
  padding: 36px 32px;
  background: #f8f8f6;
  border-radius: 4px;
}

.apply__step-num {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1;
}

.apply__step h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 12px;
  color: #000;
}

.apply__step p,
.apply__step-list {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

.apply__step-list {
  padding-left: 18px;
  margin: 0;
  list-style: disc;
}

.apply__step-list li + li {
  margin-top: 8px;
}

.apply__uni-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #000;
  margin-bottom: 24px;
}

.apply__uni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.apply__uni-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #f8f8f6;
  border-radius: 4px;
  font-size: 16px;
  color: var(--text-dark);
}

.apply__uni-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.apply__action-row {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 40px;
}

.apply__callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #112d4a;
  border-radius: 4px;
  padding: 20px 24px;
  flex: 3;
}

.apply__callout-icon {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  margin-top: 2px;
}

.apply__callout p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  font-weight: 500;
}

.apply__regulation {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #f0f7f4;
  border-left: 3px solid var(--green);
  border-radius: 4px;
  flex: 2;
  color: var(--text-dark);
  transition: background 0.2s;
}

.apply__regulation:hover {
  background: #e4f0ea;
}

.apply__regulation > svg:first-child {
  flex-shrink: 0;
  opacity: 0.7;
}

.apply__regulation-title {
  display: block;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.apply__regulation-sub {
  display: block;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
}

.apply__regulation-arrow {
  flex-shrink: 0;
  margin-left: auto;
  opacity: 0.5;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--green-dark);
  padding: 80px 0 48px;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: left;
}

.footer__inner .section-title {
  margin-bottom: 16px;
}

.footer__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.footer__inner .btn {
  font-size: 15px;
  padding: 14px 28px;
  text-transform: none;
  letter-spacing: 0;
}

.footer__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

.footer__col p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.footer__col p strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.footer__credit {
  margin-top: 8px;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.footer__legal {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
  text-align: left;
}

/* =====================
   RESPONSIVE — TABLET (≤ 900px)
   ===================== */
@media (max-width: 900px) {
  :root { --pad-x: 32px; }

  .navbar__inner { height: 64px; padding: 0 32px; }

  .partners__grid { grid-template-columns: 1fr; }

  .students__marquee-wrap { grid-template-columns: 1fr; height: 600px; }
  #studentsCol2 { display: none; }

  .students__all { grid-template-columns: 1fr; }

  .apply__steps { grid-template-columns: 1fr 1fr; }

  .footer__details { gap: 32px; }
}

/* =====================
   RESPONSIVE — MOBILE (≤ 640px)
   ===================== */
@media (max-width: 640px) {
  :root { --pad-x: 20px; }

  html { font-size: 15px; }

  /* Navbar */
  .navbar__inner { height: 56px; padding: 0 20px; }
  .navbar__btn { font-size: 12px; padding: 8px 12px; }

  /* Hero */
  .hero__topbar { top: 20px; left: 20px; right: 20px; }

  .hero__stage {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 28px;
  }

  .hero__image {
    width: 160px;
    bottom: 0;
  }

  .hero__divider {
    width: 0;
    height: 2px;
    margin: 20px 0;
    transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  }

  .hero__text-side { width: 100%; }

  .hero__title {
    font-size: 26px;
    min-height: auto;
    text-align: center;
  }

  /* Roman intro */
  .roman-intro { padding-bottom: 64px; }
  .roman-intro__para { font-size: 16px; }

  /* Scholarship */
  .schol-blocks { padding: 64px 0; }
  .schol-blocks__title { font-size: 28px; }
  .schol-blocks__grid { grid-template-columns: 1fr; }

  .schol-block,
  .schol-block:nth-child(even),
  .schol-block--amount ~ .schol-block:nth-child(even),
  .schol-block--amount ~ .schol-block:nth-child(odd) {
    padding-left: 0;
    padding-right: 0;
    border-left: none;
  }

  .schol-amount { flex-direction: column; align-items: flex-start; gap: 12px; }
  .schol-amount__divider { width: 48px; height: 1px; }
  .schol-amount__primary { font-size: 48px; }

  .schol-blocks__grid > .schol-block:nth-child(4) { order: 1; }
  .schol-blocks__grid > .schol-block:nth-child(6) { order: 2; }
  .schol-blocks__grid > .schol-block:nth-child(7) { order: 3; }

  /* Section titles */
  .section-title,
  .schol-blocks__title { font-size: 28px; }

  /* Partners */
  .partners { padding: 64px 0; }
  .quote-card { padding: 28px 20px; }

  /* Students */
  .students { padding: 64px 0; }
  .students__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .students__marquee-wrap { height: 480px; }
  .students__show-all--wide { width: auto; }

  /* Apply */
  .apply { padding: 64px 0; }
  .apply__steps { grid-template-columns: 1fr; }
  .apply__uni-grid { grid-template-columns: 1fr; }
  .apply__action-row { flex-direction: column; }
  .apply__regulation { flex-wrap: wrap; gap: 12px; }
  .apply__regulation-arrow { margin-left: 0; }

  /* Footer */
  .footer { padding: 56px 0 32px; }
  .footer__details { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Lighter reveal lift on mobile */
  .reveal { transform: translateY(20px); }
}
