/* MIT Shillong Landing — Design tokens & base (Figma 1728 → 1920 canvas) */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-orange: #f7941d;
  --color-orange-hot: #ff853a;
  --color-orange-deep: #ff6f00;
  --color-orange-soft: #ffd8b4;
  --color-cream: #fdf8f2;
  --color-cream-2: #faf6f0;
  --color-peach: #ffd7ba;
  --color-butter: #fefae0;
  --color-green: #2e9b45;
  --color-gray-600: #626262;
  --color-gray-500: #818181;
  --color-gray-400: #8a8a8a;
  --color-gray-300: #c8c8c8;
  --color-gray-200: #e5e5e5;
  --color-footer-muted: #575757;

  --font-sans: "SF Pro Text", "SF Pro", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "SF Pro Display", "SF Pro", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Libre Bodoni", "Bodoni MT", Georgia, serif;

  --design-width: 1728;
  --page-max: 1920px;
  --header-h: 97px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.45s;
  --shadow-form: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius-pill: 999px;
  --accent-bar: 4px;
  --bg-orange-wash:
    radial-gradient(ellipse 95% 85% at 100% 0%, #ff883e 0%, #ff9a4a 28%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 72% 18%, #ffb068 0%, transparent 50%),
    linear-gradient(180deg, #fefffa 0%, #fefef4 40%, #ffffff 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.page {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  position: relative;
}

.container {
  width: min(100% - 48px, 1460px);
  margin-inline: auto;
}

/* Shared UI */
.accent-bar {
  width: var(--accent-bar);
  height: 124px;
  background: var(--color-black);
  flex-shrink: 0;
}

.section-heading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.section-heading__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading__title strong {
  font-weight: 700;
}

.section-heading__sub {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--color-black);
  max-width: 586px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-soft), background var(--duration) var(--ease-soft);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--orange {
  color: var(--color-white);
  background: linear-gradient(180deg, #ff9a3c 0%, #f58220 55%, #e86f0f 100%);
  box-shadow: 0 10px 24px rgba(245, 130, 32, 0.35);
}

.btn--orange:hover {
  box-shadow: 0 14px 30px rgba(245, 130, 32, 0.45);
}

.spark {
  width: 28px;
  height: 28px;
  position: absolute;
  pointer-events: none;
  opacity: 0.95;
  animation: spark-pulse 3.2s var(--ease-soft) infinite;
}

@keyframes spark-pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.12) rotate(8deg);
    opacity: 1;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.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;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal .accent-bar {
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.65s var(--ease-out) 0.18s;
}

.reveal.is-visible .accent-bar {
  transform: scaleY(1);
}

/* ========== HERO ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 980px;
  padding-top: var(--header-h);
  background: #ffffff;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform-origin: center center;
}

.hero__glow--yellow {
  width: 1436px;
  height: 1425px;
  left: calc(50% - 864px - 723px);
  top: calc(var(--header-h) - 867px);
  background: #fdf9b4;
  animation: glow-breathe 9s var(--ease-soft) infinite;
}

.hero__glow--orange {
  width: 1648px;
  height: 1639px;
  left: calc(50% - 864px + 393px);
  top: calc(var(--header-h) - 757px);
  background: #ff853a;
  animation: glow-breathe 11s var(--ease-soft) infinite reverse;
  animation-delay: -2s;
}

@keyframes glow-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.88;
  }
}

.hero__grid {
  position: absolute;
  inset: var(--header-h) auto auto 0;
  width: 48%;
  height: 78%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 622px) 451px;
  gap: 56px;
  align-items: start;
  justify-content: center;
  /* 1129 content + badge overhang further left */
  width: min(100% - 24px, 1289px);
  margin-inline: auto;
  padding: 10px 0 72px 160px;
  box-sizing: border-box;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  width: 100%;
  min-width: 0;
}

.hero__visual-wrap {
  position: relative;
  width: 100%;
  max-width: 622px;
  margin: 0 auto;
  overflow: visible;
}

.hero__visual {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.16));
  animation: hero-float 6s var(--ease-soft) infinite;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Campus tour badge — Figma Component 6 / Frame 416 */
.hero__tour {
  position: absolute;
  /* Shifted further left of the student graphic */
  left: -160px;
  top: 22%;
  z-index: 3;
  width: 230px;
  height: 230px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #111;
  transition: transform 0.35s var(--ease-out);
}

.hero__tour:hover {
  transform: scale(1.04);
}

.hero__tour-ring {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  animation: badge-spin-slow 22s linear infinite;
}

.hero__tour:hover .hero__tour-ring {
  animation-duration: 10s;
}

@keyframes badge-spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.hero__tour-ring svg {
  width: 230px;
  height: 230px;
  display: block;
  overflow: visible;
}

.hero__tour-text {
  fill: #111;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero__tour-media {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero__tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__tour-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  /* Figma polygon ~42px inside 90px photo */
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
  transform: translateX(3px);
  animation: play-pulse 2.4s var(--ease-soft) infinite;
}

@keyframes play-pulse {
  0%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
  }
  50% {
    opacity: 0.72;
    filter: drop-shadow(0 1px 8px rgba(255, 255, 255, 0.55));
  }
}

.hero__copy {
  width: min(100%, 560px);
  margin: 4px auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero load choreography */
.hero-enter {
  opacity: 0;
  animation: hero-rise 0.85s var(--ease-out) forwards;
}

.hero-enter--1 {
  animation-delay: 0.08s;
}
.hero-enter--2 {
  animation-delay: 0.18s;
}
.hero-enter--3 {
  animation-delay: 0.3s;
}
.hero-enter--4 {
  animation-delay: 0.42s;
}
.hero-enter--5 {
  animation-delay: 0.54s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.45vw, 42px);
  font-weight: 510;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #111;
}

.hero__title-serif {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(34px, 3.05vw, 52px);
  margin-top: 2px;
  letter-spacing: 0;
  line-height: 1.1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 7px 18px;
  border: 1px solid #111;
  border-radius: var(--radius-pill);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #111;
}

.hero__programs {
  margin: 12px 0 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: #111;
}

.hero__cta {
  min-width: 192px;
  min-height: 44px;
  padding: 0 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero__form-col {
  position: relative;
  width: 451px;
  max-width: 100%;
  /* Figma: form group y=188, visual y=107 → +81px */
  padding-top: 81px;
  margin-left: auto;
}

.hero__tag {
  position: absolute;
  /* BornToCreate y=133 → 26px above form card (form at 188) */
  top: 26px;
  left: 0;
  right: 20px;
  display: block;
  text-align: center;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: #111;
}

.hero__form-wrap {
  position: relative;
  width: 100%;
  /* Figma: bg peeks +19–20px right & bottom past 431×625 card */
  padding: 0 20px 20px 0;
  isolation: isolate;
}

.hero__form-bg {
  position: absolute;
  z-index: 0;
  top: 24px;
  left: 19px;
  width: 432px;
  max-width: calc(100% - 19px);
  height: calc(100% - 24px);
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  user-select: none;
}

.enquiry-form {
  background: var(--color-white);
  border: 1px solid #d9d9d9;
  box-shadow: var(--shadow-form);
  padding: 28px 26px 24px;
  width: min(100%, 420px);
  margin-left: auto;
}

.enquiry-form--hero {
  position: relative;
  z-index: 1;
  width: 431px;
  max-width: 100%;
  margin: 0;
  padding: 28px 17px 22px;
  border: 1px solid #000;
  border-radius: 0;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.enquiry-form__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.enquiry-form--hero .enquiry-form__title {
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 590;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #111;
}

.enquiry-form__sub {
  margin: 6px 0 18px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.enquiry-form--hero .enquiry-form__sub {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 16.62px;
  font-weight: 400;
  line-height: 1.35;
  color: #555;
}

.form-field {
  margin-bottom: 12px;
}

.enquiry-form--hero .form-field {
  margin-bottom: 12px;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  background: var(--color-white);
  outline: none;
  transition: border-color 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft);
}

.enquiry-form--hero .form-field input,
.enquiry-form--hero .form-field select {
  height: 42px;
  padding: 0 12px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: #585858;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.18);
}

.enquiry-form--hero .form-field input:focus,
.enquiry-form--hero .form-field select:focus {
  border-color: #ff853a;
  box-shadow: 0 0 0 2px rgba(255, 133, 58, 0.15);
  outline: none;
}

.enquiry-form--hero .form-field input::placeholder {
  color: #585858;
  opacity: 1;
}

.enquiry-form--hero .form-field select {
  color: #585858;
  background-image: url("../icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 11px;
  padding-right: 32px;
}

.enquiry-form--hero .form-field select:invalid,
.enquiry-form--hero .form-field select option[value=""] {
  color: #585858;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.enquiry-form--hero .form-row {
  gap: 10px;
}

.form-mobile {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
}

.form-mobile--hero {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  align-items: stretch;
}

.enquiry-form--hero .form-mobile__code {
  position: relative;
  display: block;
  height: 42px;
  padding: 0;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}

.enquiry-form--hero .form-mobile__code select {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 22px 0 10px !important;
  margin: 0;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
  background: #fff !important;
  background-image: none !important;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 40px;
  color: #585858;
  cursor: pointer;
}

.enquiry-form--hero .form-mobile__code select:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none;
}

.enquiry-form--hero .form-mobile__code img {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.enquiry-form--hero .form-mobile--hero > input {
  height: 42px;
}

.form-captcha {
  display: grid;
  grid-template-columns: 110px 36px 1fr;
  gap: 8px;
  align-items: center;
}

.enquiry-form--hero .form-captcha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}

.form-captcha__code {
  height: 44px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 1px;
  background:
    radial-gradient(circle at 30% 40%, #ffb4a2, transparent 50%),
    radial-gradient(circle at 70% 60%, #a2d8ff, transparent 45%),
    #f7f7f7;
  user-select: none;
}

.enquiry-form--hero .form-captcha__box {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  height: 42px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  overflow: hidden;
  background: #f2f2f2;
}

.enquiry-form--hero .form-captcha__code {
  height: 100%;
  border: none;
  border-radius: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #222;
  background:
    radial-gradient(circle at 26% 48%, rgba(126, 217, 87, 0.9) 0%, transparent 42%),
    radial-gradient(circle at 58% 38%, rgba(192, 132, 252, 0.85) 0%, transparent 40%),
    radial-gradient(circle at 48% 72%, rgba(251, 113, 133, 0.8) 0%, transparent 38%),
    #ececec;
}

.form-captcha__refresh {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease-out);
}

.enquiry-form--hero .form-captcha__refresh {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border: none;
  border-radius: 50%;
  background: transparent;
}

.form-captcha__refresh:hover {
  transform: rotate(180deg);
}

.enquiry-form--hero .form-captcha > input {
  height: 42px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  padding: 0 12px;
  width: 100%;
  font-size: 13px;
  color: #585858;
  font-family: var(--font-sans);
}

.enquiry-form--hero .form-captcha > input::placeholder {
  color: #585858;
  opacity: 1;
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.4;
  margin: 8px 0 16px;
}

.enquiry-form--hero .form-consent {
  margin: 4px 0 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.45;
  color: #585858;
}

.form-consent input {
  margin-top: 2px;
}

.enquiry-form--hero .form-consent input {
  flex-shrink: 0;
  accent-color: #f58220;
}

.enquiry-form--hero .form-consent strong {
  font-weight: 700;
  color: #111;
}

.enquiry-form .btn {
  width: 100%;
}

.enquiry-form--hero .btn--hero-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Figma Group 2: 252×38, centered in 431 card */
  width: 252px;
  max-width: 100%;
  min-height: 38px;
  height: 38px;
  margin: 0 auto;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, #ff9d52 0%, #ff7e30 50%, #ef6a18 100%);
  box-shadow: 0 8px 20px rgba(255, 126, 48, 0.32);
  transition: filter 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft),
    transform 0.25s var(--ease-out);
}

.enquiry-form--hero .btn--hero-apply:hover {
  filter: brightness(1.04);
  box-shadow: 0 10px 24px rgba(255, 126, 48, 0.4);
  transform: translateY(-1px);
}

.enquiry-form--hero .btn--hero-apply:active {
  transform: translateY(0) scale(0.98);
}

/* ========== RECOGNITION / STATS ========== */
.recognition {
  padding: 72px 0 0;
  background: var(--color-white);
  text-align: center;
}

.recognition__intro {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
  position: relative;
}

.recognition__title {
  margin: 0 auto;
  min-height: 1em;
  font-family: var(--font-display);
  font-size: 85px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-black);
  white-space: nowrap;
}

.recognition__title-em {
  font-family: var(--font-sans);
  font-weight: 500;
}

.recognition__title-thin {
  font-family: var(--font-sans);
  font-weight: 300;
}

.recognition__copy {
  position: relative;
  max-width: 759px;
  margin: 28px auto 0;
}

.recognition__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--color-black);
  text-align: center;
}

.recognition__spark {
  position: absolute;
  pointer-events: none;
  animation: spark-pulse 3.2s var(--ease-soft) infinite;
}

.recognition__spark--lg {
  width: 32px;
  height: 34px;
  top: 8px;
  right: -72px;
  animation-delay: 0.4s;
}

.recognition__spark--sm {
  width: 23px;
  height: 24px;
  right: 12px;
  bottom: -48px;
  animation-delay: 1.1s;
}

.recognition__media {
  position: relative;
  width: 100%;
  margin: 106px auto 0;
}

.recognition__media-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  margin: 48px auto 0;
  padding: 0 0 36px;
  background: var(--color-white);
}

.stats-bar__item {
  text-align: center;
  padding: 28px 12px;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), color 0.3s ease;
}

.stats-bar.is-visible .stats-bar__item {
  opacity: 1;
  transform: none;
}

.stats-bar.is-visible .stats-bar__item:nth-child(1) {
  transition-delay: 0.05s;
}
.stats-bar.is-visible .stats-bar__item:nth-child(2) {
  transition-delay: 0.12s;
}
.stats-bar.is-visible .stats-bar__item:nth-child(3) {
  transition-delay: 0.19s;
}
.stats-bar.is-visible .stats-bar__item:nth-child(4) {
  transition-delay: 0.26s;
}
.stats-bar.is-visible .stats-bar__item:nth-child(5) {
  transition-delay: 0.33s;
}

.stats-bar__item:hover {
  transform: translateY(-2px);
}

.stats-bar.is-visible .stats-bar__item:hover {
  transform: translateY(-2px);
}

.stats-bar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 114px;
  max-height: 70%;
  width: 1px;
  background: #e6d7cd;
}

.stats-bar__value {
  display: block;
  font-family: var(--font-sans);
  font-size: 33px;
  font-weight: 600;
  line-height: 1.27;
  color: var(--color-black);
}

.stats-bar__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 33px;
  font-weight: 300;
  line-height: 1.27;
  margin-top: 0;
  color: var(--color-black);
}

/* ========== CREATOR LINE ========== */
.creator-line {
  background: var(--color-cream);
  padding: 56px 0 72px;
}

.creator-line__heading {
  align-items: center;
  gap: 35px;
}

.creator-line__bar {
  width: 4px;
  height: 124px;
}

.creator-line__quote {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 35px);
  font-weight: 300;
  line-height: 1.2;
  max-width: 725px;
  color: var(--color-black);
}

.creator-line__quote strong {
  font-weight: 700;
}

/* ========== I AM A ========== */
.iam {
  position: relative;
  background-color: #000000;
  background-image: url("../images/bg-im.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  width: 100%;
  height: auto;
  aspect-ratio: 2054 / 766;
  overflow: hidden;
}

.iam__stage {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
}

.iam__text {
  position: absolute;
  z-index: 5;
  left: 0;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  max-width: calc(100% - clamp(48px, 16vw, 320px));
  margin: 0;
  padding-left: clamp(48px, 18vw, 314px);
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0.28em;
  text-align: left;
  font-size: 53px;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.iam__fixed {
  color: #ff863b;
  font-weight: 500;
  flex-shrink: 0;
}

.iam__changing {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  color: var(--color-white);
}

.iam__changing .role {
  color: var(--color-white);
  font-weight: 400;
}

.iam__changing .italic {
  color: var(--color-white);
  font-style: italic;
  font-weight: 300;
}

@media (prefers-reduced-motion: reduce) {
  .iam__changing {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .reveal .accent-bar,
  .reveal.is-visible .accent-bar,
  .stats-bar__item,
  .stats-bar.is-visible .stats-bar__item,
  .hero-enter {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .hero__glow--yellow,
  .hero__glow--orange,
  .hero__visual,
  .hero__tour-ring,
  .hero__tour-play,
  .spark,
  .recognition__spark {
    animation: none !important;
  }
}

/* ========== PROGRAMS ========== */
.programs {
  background: var(--color-cream);
  padding: 64px 0 0;
  overflow: hidden;
}

.programs__intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}

.programs .section-heading {
  gap: 32px;
  align-items: stretch;
  width: max-content;
  max-width: 100%;
}

.programs .accent-bar {
  display: block;
  width: 4px;
  height: auto;
  min-height: 100%;
  align-self: stretch;
  flex-shrink: 0;
}

.programs .section-heading > div {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.programs .section-heading__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--color-black);
  max-width: none;
  white-space: nowrap;
}

.programs .section-heading__title strong {
  font-weight: 500;
}

.programs .section-heading__sub {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-black);
  max-width: 586px;
}

.programs__visual {
  justify-self: end;
  width: min(404px, 90%);
  height: auto;
  display: block;
}

.programs-list {
  border-top: 1.5px solid var(--color-black);
}

.program-row {
  --program-pad-x: max(24px, calc((100% - 1460px) / 2 + 24px));
  --program-h: 214px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  height: var(--program-h);
  min-height: var(--program-h);
  max-height: var(--program-h);
  padding: 0 var(--program-pad-x);
  border-bottom: 1.5px solid var(--color-black);
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
  background: var(--color-cream);
}


.program-row__bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/program-row-bg.webp") center / cover no-repeat,
    linear-gradient(90deg, #ffb078 0%, #ffd4b0 35%, #ffe8d0 55%, #ffc090 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-soft);
  pointer-events: none;
  z-index: 0;
}

.program-row--bdes .program-row__bg,
.program-row--mdes .program-row__bg {
  background:
    url("../images/program-row-bg-bdes.webp") center / cover no-repeat,
    linear-gradient(90deg, #f0a66e 0%, #ffe8d0 40%, #ffd8b4 70%, #f5b080 100%);
}

.program-row--film .program-row__bg {
  background:
    url("../images/program-row-bg-film.webp") center / cover no-repeat,
    linear-gradient(90deg, #9dc757 0%, #fcd44d 45%, #f47b20 78%, #ef5339 100%);
}

.program-row__media {
  position: relative;
  flex: 0 0 0;
  width: 0;
  height: 136px;
  margin-right: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    flex-basis 0.35s var(--ease-out),
    width 0.35s var(--ease-out),
    margin 0.35s var(--ease-out),
    opacity 0.3s var(--ease-soft);
  z-index: 1;
}

.program-row__media img {
  width: 266px;
  height: 136px;
  max-width: none;
  object-fit: cover;
  border-radius: 68px;
  display: block;
}

.program-row__spark {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease-soft);
}

.program-row__spark--tl {
  top: -8px;
  left: -4px;
  width: 20px;
  height: 22px;
}

.program-row__spark--br {
  right: 6px;
  bottom: 2px;
  width: 10px;
  height: 10px;
}

.program-row__body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  gap: 0;
}

.program-row__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.4vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--color-black);
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.program-row--serif .program-row__title {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.program-row__years {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: center;
}

.program-row__years-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  background: var(--color-white);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.program-row__years-label {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
  white-space: nowrap;
}

.program-row__divider {
  display: block;
  width: 0;
  height: 120px;
  margin: 0;
  background: var(--color-black);
  flex-shrink: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
}

.program-row__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  flex: 0 0 0;
  width: 0;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.program-row__specs {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-black);
  white-space: nowrap;
}

.program-row__specs li {
  position: relative;
  padding-left: 16px;
}

.program-row__specs li + li {
  margin-top: 0;
}

.program-row__specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-black);
  transform: translateY(-50%);
}

.program-row--dense .program-row__specs {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.32;
}

.program-row--dense .program-row__specs li::before {
  width: 5px;
  height: 5px;
  border-radius: 1px;
  transform: translateY(-50%) rotate(45deg);
}

.program-row__explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 95px;
  height: 29px;
  padding: 0 18px;
  margin-left: 16px;
  border-radius: 23px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  transition:
    background 0.3s var(--ease-soft),
    color 0.3s var(--ease-soft),
    transform 0.3s var(--ease-soft);
}

.program-row__explore:hover {
  background: #222;
  color: #f8f17d;
  transform: translateY(-1px);
}

/* Expanded — fixed height, exact gaps & vertical centering */
.program-row.is-active {
  cursor: default;
  z-index: 1;
}

.program-row.is-active .program-row__bg {
  opacity: 1;
}

.program-row.is-active .program-row__media {
  flex: 0 0 266px;
  width: 266px;
  margin-right: 40px;
  opacity: 1;
  visibility: visible;
  overflow: visible;
  pointer-events: auto;
}

.program-row.is-active .program-row__spark {
  opacity: 1;
}

.program-row.is-active .program-row__body {
  align-items: center;
}

.program-row.is-active .program-row__title {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  font-size: clamp(28px, 3.1vw, 52px);
  font-weight: 500;
  padding-right: 28px;
}

.program-row--serif.is-active .program-row__title {
  font-weight: 400;
  font-size: clamp(30px, 3.3vw, 56px);
}

.program-row.is-active .program-row__years {
  width: auto;
  margin: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow: visible;
  flex: 0 0 59px;
}

.program-row.is-active .program-row__divider {
  width: 1px;
  height: 120px;
  margin: 0 28px;
  opacity: 1;
  visibility: visible;
  overflow: visible;
}

.program-row.is-active .program-row__aside {
  flex: 0 0 auto;
  width: auto;
  max-width: 290px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow: visible;
  gap: 12px;
}

/* ========== ADMISSION ========== */
.admission {
  position: relative;
  padding: 64px 0 80px;
  background:
    radial-gradient(ellipse 85% 130% at 78% 45%, rgba(255, 168, 87, 0.7) 0%, rgba(255, 168, 87, 0.28) 38%, transparent 68%),
    linear-gradient(90deg, #fcf9ba 0%, #fef6d4 38%, #ffe3c4 72%, #ffd3ac 100%);
  overflow: hidden;
}

.admission__inner {
  position: relative;
}

.admission__heading {
  align-items: center;
  gap: 30px;
  max-width: 640px;
}

.admission .accent-bar {
  width: 4px;
  height: 124px;
}

.admission .section-heading__title {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-black);
}

.admission .section-heading__title strong {
  font-weight: 600;
}

.admission .section-heading__sub {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
}

.admission__spark {
  position: absolute;
  top: 18px;
  right: 4%;
  width: 45px;
  height: 46px;
  z-index: 1;
  animation-delay: 0.6s;
}

.admission__steps {
  position: relative;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 2.2vw, 72px);
}

.admission__steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: var(--color-black);
  z-index: 0;
  transform: translate(-50%, -50%);
}

.admission-step {
  position: relative;
  z-index: 1;
  width: 234px;
  height: 234px;
  flex: 0 1 234px;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 30px 24px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-soft);
}

.admission-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.admission-step img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.admission-step h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-black);
}

.admission-step p {
  margin: 0;
  max-width: 174px;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  letter-spacing: -0.36px;
  color: var(--color-black);
}

/* ========== WHY CHOOSE ========== */
.why {
  background: #fcf6f2;
  padding: 56px 0;
  overflow: hidden;
}

.why__inner {
  position: relative;
  width: min(100% - 32px, 1640px);
  margin-inline: auto;
  /* Height fits absolute stage: stage top + triangle height */
  min-height: calc(140px + min(34vw, 520px) * 831 / 960);
}

.why__heading {
  position: relative;
  z-index: 3;
  max-width: min(100%, 720px);
  align-items: flex-start;
  gap: 18px;
}

.why .accent-bar {
  width: 4px;
  height: 139px;
  margin-top: 8px;
}

.why .section-heading__title {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.15;
  color: #000;
  white-space: nowrap;
}

.why .section-heading__title strong {
  font-weight: 500;
}

.why .section-heading__sub {
  margin-top: 8px;
  max-width: 491px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
}

.why__stage {
  position: absolute;
  left: 0;
  right: 0;
  top: 140px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  z-index: 1;
  pointer-events: none;
}

.why__features {
  display: flex;
  flex: 1 1 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  min-width: 0;
  width: 100%;
  margin-top: 153px;
  z-index: 2;
  pointer-events: auto;
}

.why__features--left,
.why__features--right {
  width: auto;
  max-width: none;
  margin-left: 0;
}

.why-feature {
  text-align: center;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 19px;
  flex: 0 1 auto;
  min-width: 0;
}

.why-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 115px;
  width: 1px;
  background: #c8c8c8;
}

.why-feature img {
  display: block;
  width: auto;
  height: 45px;
  max-width: 70px;
  margin: 0;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.why-feature__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  color: #000;
  text-align: center;
}

.why-feature__label > span {
  display: block;
  white-space: nowrap;
}

.why__visual {
  position: relative;
  flex: 0 0 auto;
  width: min(34vw, 520px);
  max-width: 520px;
  aspect-ratio: 960 / 831;
  margin: 0;
  pointer-events: none;
}

.why__triangle-stroke {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
}

.why__triangle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  display: block;
  /* Scale from equilateral centroid so side & bottom gaps match */
  transform: scale(0.9);
  transform-origin: 50% 66.666%;
}

.why__student {
  position: absolute;
  left: 62%;
  top: 48%;
  width: 23%;
  height: auto;
  z-index: 3;
}

/* ========== PLACEMENTS ========== */
.placements {
  padding: 80px 0 72px;
  background: var(--bg-orange-wash);
  border-top: 1px solid #222;
  overflow: hidden;
}

.placements .section-heading {
  align-items: center;
  gap: 30px;
}

.placements .accent-bar {
  width: 4px;
  height: 124px;
}

.placements .section-heading__title {
  font-size: 35px;
  font-weight: 400;
  color: #000000;
  line-height: 1.15;
}

.placements .section-heading__sub {
  margin-top: 8px;
  max-width: 586px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
}

.placements__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 958fr) minmax(0, 502fr);
  column-gap: 18px;
  row-gap: 14px;
  align-items: end;
}

.placements__panel {
  position: relative;
  overflow: hidden;
  background: transparent;
  aspect-ratio: 661 / 377;
  grid-column: 1;
}

.placements__panel > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.placements__panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.placements__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px 32px 38px;
}

.placements__metrics {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  color: #ffffff;
}

.placements__metrics span {
  font-size: clamp(12px, 1.15vw, 17.67px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.53px;
  padding: 0 18px;
  border-right: 1px solid #ffffff;
  white-space: nowrap;
}

.placements__metrics span:first-child {
  padding-left: 0;
}

.placements__metrics span:last-child {
  border-right: none;
  padding-right: 0;
}

.placements__metrics strong {
  font-weight: 600;
}

.placements__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid var(--color-orange-soft);
  border-radius: 20px;
  background: transparent;
  color: var(--color-orange-soft);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.42px;
  white-space: nowrap;
  line-height: 1.2;
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
}

.placements__cta:hover {
  background: var(--color-orange-soft);
  color: var(--color-black);
}

.placements__recruiters {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: end;
  gap: 14px;
  width: 100%;
}

.placements__recruiters-title {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 25px;
  letter-spacing: -0.25px;
  color: #000000;
  line-height: 1.1;
}

.recruiter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  align-content: end;
}

.recruiter-grid img {
  width: 100%;
  aspect-ratio: 160 / 137;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: var(--color-white);
  display: block;
  transition: transform 0.35s var(--ease-out);
}

.recruiter-grid img:hover {
  transform: scale(1.04);
}

/* ========== VOICES ========== */
.voices {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 100% at 72% 88%, #ff883f 0%, #ff9a4a 22%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 88% 70%, #ffb068 0%, transparent 50%),
    linear-gradient(105deg, #fcf9ba 0%, #fff6df 28%, #ffe0b8 62%, #ffc48a 100%);
}

.voices .section-heading {
  align-items: center;
  gap: 30px;
}

.voices .accent-bar {
  width: 4px;
  height: 124px;
}

.voices .section-heading__title {
  font-size: 35px;
  font-weight: 400;
  color: #000000;
  line-height: 1.15;
}

.voices .section-heading__sub {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
}

.voices__track-wrap {
  position: relative;
  margin-top: 48px;
  padding: 0 56px;
}

.voices__nav {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 48px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  color: var(--color-black);
  transition: opacity 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}

.voices__nav svg {
  display: block;
  width: 28px;
  height: 40px;
}

.voices__nav:hover {
  opacity: 0.65;
  transform: scale(1.08);
}

.voices__nav--prev {
  left: 0;
}

.voices__nav--next {
  right: 0;
}

.voices-owl {
  width: 100%;
}

.voices-owl .owl-stage-outer {
  overflow: visible;
  padding-bottom: 0;
}

.voices-owl .owl-stage {
  display: flex;
  align-items: flex-start;
}

.voices-owl .owl-item {
  display: flex;
  justify-content: center;
}

.voices-owl .owl-nav {
  display: none !important;
}

.voices-owl .owl-dots {
  display: none !important;
}

/* Voice card: white front + art peek (offset) + portrait at bottom */
.voice-card {
  --voice-offset-x: 20px;
  --voice-offset-y: 13px;
  --voice-card-w: 420px;
  position: relative;
  width: 100%;
  max-width: calc(var(--voice-card-w) + var(--voice-offset-x));
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: none;
  transition: transform 0.4s var(--ease-out);
}

.voice-card:hover {
  transform: translateY(-4px);
}

.voice-card__art {
  position: absolute;
  top: var(--voice-offset-y);
  left: var(--voice-offset-x);
  width: min(var(--voice-card-w), calc(100% - var(--voice-offset-x)));
  aspect-ratio: 420 / 498;
  border: 1px solid var(--color-black);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  background: #111;
}

.voice-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.voice-card__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(var(--voice-card-w), calc(100% - var(--voice-offset-x)));
  aspect-ratio: 420 / 498;
  box-sizing: border-box;
  padding: 52px 36px 148px;
  background: var(--color-white);
  border: 1px solid var(--color-black);
  text-align: center;
}

.voice-card__panel blockquote {
  margin: 0;
  max-width: 338px;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.27;
  color: var(--color-black);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

.voice-card__panel hr {
  width: min(100%, 326px);
  border: none;
  border-top: 1px solid #000;
  margin: 30px auto 26px;
  flex-shrink: 0;
}

.voice-card__panel cite {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  max-width: 338px;
  font-style: normal;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.36;
  color: var(--color-black);
}

.voice-card__portrait-wrap {
  position: relative;
  z-index: 2;
  width: min(var(--voice-card-w), calc(100% - var(--voice-offset-x)));
  margin-top: -92px;
  margin-inline: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
  min-height: 180px;
  margin-bottom: 40px;
}

.voice-card__portrait {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 0.6px #000);
}

.voice-card__portrait--pentagon,
.voice-card__portrait--circle,
.voice-card__portrait--triangle {
  width: 180px;
  height: 180px;
}

/* ========== LIFE ========== */
.life {
  background:
    /* top wash — same as Faculty */
    radial-gradient(ellipse 95% 85% at 100% 0%, #ff883e 0%, #ff9a4a 28%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 72% 18%, #ffb068 0%, transparent 50%),
    /* bottom wash — reverse of top */
    radial-gradient(ellipse 95% 85% at 100% 100%, #ff883e 0%, #ff9a4a 28%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 72% 82%, #ffb068 0%, transparent 50%),
    linear-gradient(180deg, #fefffa 0%, #fefef4 50%, #fefffa 100%);
  padding: 72px 0 56px;
  border-top: 1px solid #222;
  overflow: hidden;
}

.life .section-heading {
  align-items: center;
  gap: 30px;
}

.life .accent-bar {
  width: 6px;
  height: 157px;
}

.life .section-heading__title {
  font-size: 35px;
  font-weight: 400;
  color: #000000;
  line-height: 1.15;
}

.life .section-heading__sub {
  margin-top: 8px;
  max-width: 909px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
}

.life .section-heading__sub strong {
  font-weight: 600;
}

.life__gallery-wrap {
  margin-top: 70px;
}

/* Owl Carousel — Life gallery */
.life-owl {
  width: 100%;
}

.life-owl .owl-stage {
  display: flex;
  align-items: stretch;
}

.life-owl .owl-item {
  display: flex;
}

.life-card {
  width: 407px;
  height: 384px;
  margin: 0;
  transition: width 0.4s var(--ease-out);
}

.life-owl .owl-item.center .life-card {
  width: 696px;
}

.life-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--color-black);
  background: #fbd9c2;
  display: block;
}

/* Owl dots — match design */
.life-owl .owl-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 46px;
}

.life-owl .owl-dot {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  outline: none;
}

.life-owl .owl-dot span {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: none !important;
  transition: background 0.3s var(--ease-soft);
  display: block;
}

.life-owl .owl-dot.active span,
.life-owl .owl-dot:hover span {
  background: #000000 !important;
  transform: none !important;
}

.life-owl .owl-nav {
  display: none !important;
}

/* ========== FACULTY ========== */
.faculty {
  padding: 72px 0 100px;
  background: var(--bg-orange-wash);
}

.faculty .section-heading {
  align-items: center;
  gap: 30px;
}

.faculty .accent-bar {
  width: 6px;
  height: 157px;
}

.faculty .section-heading__title {
  font-size: 35px;
  font-weight: 400;
  color: #000000;
  line-height: 1.15;
}

.faculty .section-heading__sub {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  color: #000000;
  max-width: none;
}

.faculty__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.faculty-owl.owl-loaded {
  display: block;
}

.faculty-owl .owl-stage {
  display: flex;
  align-items: stretch;
}

.faculty-owl .owl-item {
  display: flex;
}

.faculty-owl .owl-item .faculty-card {
  width: 100%;
}

.faculty-owl .owl-nav {
  display: none !important;
}

.faculty-owl .owl-dots {
  display: none !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.faculty-owl .owl-dot {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
}

.faculty-owl .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #333 !important;
  display: block;
}

.faculty-owl .owl-dot.active span,
.faculty-owl .owl-dot:hover span {
  background: #000000 !important;
}

.faculty-card {
  position: relative;
  border: 1px solid #000000;
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 14px 24px;
  min-height: 353px;
  box-sizing: border-box;
  transition: transform 0.4s var(--ease-out);
}

.faculty-card:hover {
  transform: translateY(-6px);
}

.faculty-card__linkedin {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 25px;
  height: 25px;
  display: block;
  line-height: 0;
}

.faculty-card__linkedin img {
  width: 25px;
  height: 25px;
  display: block;
}

.faculty-card__photo {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 20px auto 14px;
}

.faculty-card__name {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: #3f3023;
}

.faculty-card__role {
  margin: 6px 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #3f3023;
}

/* ========== FAQ ========== */
.faq {
  padding: 72px 0 90px;
  background: var(--color-white);
}

.faq .section-heading {
  align-items: center;
  gap: 30px;
}

.faq .accent-bar {
  width: 6px;
  height: 157px;
}

.faq .section-heading__title {
  font-size: 35px;
  font-weight: 400;
  color: #000000;
  line-height: 1.15;
}

.faq .section-heading__sub {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  color: #000000;
  max-width: none;
}

.faq__list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 100%;
}

.faq-item {
  border: 1px solid var(--color-black);
  border-radius: 0;
  background: var(--color-white);
  overflow: hidden;
  padding: 32px 35px;
  transition: background 0.35s var(--ease-soft);
}

.faq-item.is-open {
  background: linear-gradient(90deg, #fdf9b4 0%, #feb770 100%);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #3f3023;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 15px;
  height: 10px;
  display: block;
  transition: transform 0.35s var(--ease-out);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.45s var(--ease-out), margin 0.35s var(--ease-soft);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #3f3023;
  max-width: 1013px;
}

.faq-item.is-open .faq-item__answer {
  max-height: 220px;
  margin-top: 16px;
}

/* (mobile hamburger removed — CTAs stay visible) */

