/* ============================================================
   HOME — HERO
   Full-bleed photo slideshow, photos shown as-is (no color tint).
   Copy sits directly on the photo (no solid card).
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-indicators {
  position: absolute;
  bottom: 22px;
  right: 28px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-indicator {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(241, 240, 231, 0.7);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.hero-indicator.is-active { background: var(--paper); }

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 56px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero .container { grid-template-columns: 1fr; gap: 0; padding-top: 40px; padding-bottom: 40px; }
}

.hero-copy {
  background: transparent;
  padding: 44px 0;
}

.hero-copy .eyebrow { color: var(--brass-200); margin-bottom: 22px; }
.hero-copy .eyebrow::before { background: var(--brass-200); }

.hero-copy h1 {
  color: var(--paper);
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.06;
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(27, 12, 8, 0.35);
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--brass-200);
}

.hero-copy p.lede {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(241, 240, 231, 0.88);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.hero-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(241, 240, 231, 0.25);
}

.hero-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--paper);
}

.hero-meta-item span {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(241, 240, 231, 0.62);
}

/* ============================================================
   CREDENTIALS STRIP
   ============================================================ */

.credentials {
  background: var(--forest-900);
  color: var(--paper);
}

.credentials .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(241, 240, 231, 0.85);
}

.credential-item .icon { width: 19px; height: 19px; color: var(--brass-200); }

.credential-item strong { color: var(--paper); font-weight: 700; }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */

.section { padding: 92px 0; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--forest-100); }

.section-head {
  max-width: 660px;
  margin-bottom: 52px;
}

.section-head .eyebrow { margin-bottom: 16px; }

.section-head h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.16;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 16.5px;
  color: var(--ink-700);
  line-height: 1.65;
}

.section-head--center { margin-inline: auto; text-align: center; }
.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================================
   PILLARS (three philosophy pillars — not numbered, since
   they are not a sequence, just three coequal commitments)
   ============================================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; }
}

.pillar {
  background: var(--paper-raised);
  padding: 40px 36px;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--brass-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-icon .icon { width: 24px; height: 24px; color: var(--forest-700); }

.pillar h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.65;
}

/* ============================================================
   PROGRAMME PHASES (academic stages)
   ============================================================ */

.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 880px) {
  .phases { grid-template-columns: 1fr; }
}

.phase-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.phase-card-head {
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--line);
}

.phase-age {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-700);
  margin-bottom: 8px;
  display: block;
}

.phase-card-head h3 { font-size: 21px; }

.phase-card-body { padding: 22px 28px 28px; flex: 1; display: flex; flex-direction: column; }

.phase-card-body p {
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.6;
  margin-bottom: 18px;
}

.phase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.phase-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-700);
}

.phase-list .icon { width: 15px; height: 15px; color: var(--forest-700); margin-top: 3px; flex-shrink: 0; }

/* ============================================================
   CAMPUS LIFE — gallery composition
   ============================================================ */

.campus-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
}

@media (max-width: 760px) {
  .campus-grid { grid-template-columns: 1fr; }
}

.campus-feature {
  border: 1px solid var(--line-deep);
  background: var(--paper-raised);
  overflow: hidden;
  aspect-ratio: 600 / 630;
}

.campus-feature img, .campus-tile img { width: 100%; height: 100%; display: block; object-fit: cover; }

.campus-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.campus-tile {
  border: 1px solid var(--line-deep);
  background: var(--paper-raised);
  overflow: hidden;
  aspect-ratio: 700 / 460;
}

/* ============================================================
   ADMISSIONS STEPS (a genuine sequence — numbering justified)
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-deep);
}

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}

.step:last-child { border-right: none; }

@media (max-width: 880px) {
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
}

.step-number {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--brass-700);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 880px) {
  .testimonials { grid-template-columns: 1fr; }
}

.testimonial {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--brass-500);
  margin-bottom: 6px;
}

.testimonial p.quote {
  font-size: 15.5px;
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}

.testimonial-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--forest-700);
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-byline strong { display: block; font-size: 14px; color: var(--ink-900); }
.testimonial-byline span { font-size: 12.5px; color: var(--ink-500); }

/* ============================================================
   NEWS / NOTICEBOARD
   ============================================================ */

.notice-list {
  display: flex;
  flex-direction: column;
}

.notice-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 700px) {
  .notice-row { grid-template-columns: 1fr; gap: 8px; }
}

.notice-row:first-child { border-top: 1px solid var(--line-deep); }

.notice-date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brass-700);
  text-transform: uppercase;
}

.notice-body h4 { font-size: 16.5px; margin-bottom: 5px; }
.notice-body p { font-size: 14px; color: var(--ink-500); }

.notice-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line-deep);
  color: var(--ink-700);
  white-space: nowrap;
}

