/* ==========================================================================
   STYLE — Component styles, Home page
   Order follows the HTML top to bottom. Desktop-first base; responsive.css
   layers the tablet/mobile adjustments on top of this file.
   ========================================================================== */

/* ==========================================================================
   1. HEADER / NAVBAR
   ========================================================================== */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color var(--duration-base) var(--ease-premium),
              box-shadow var(--duration-base) var(--ease-premium);
}

.site-header.is-scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  justify-content: space-between;
  height: var(--header-height);
}

.navbar__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-left: calc(-1 * var(--space-2xs));
}

.navbar__logo {
  height: 46px;
  width: auto;
  /* Default state sits over the hero photo: render as a clean white mark. */
  filter: none;
  transition: filter var(--duration-base) var(--ease-premium);
}

.site-header.is-scrolled .navbar__logo {
  filter: none;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__item {
  position: relative;
}

.navbar__link {
  display: flex;
  align-items: center;
  gap: var(--space-3xs);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: var(--fs-small);
  color: var(--color-white);
  padding-block: var(--space-2xs);
  position: relative;
  transition: color var(--duration-fast) var(--ease-premium);
}

.site-header.is-scrolled .navbar__link {
  color: var(--color-ink-navy);
}

.navbar__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--color-heritage-gold);
  transition: width var(--duration-base) var(--ease-premium);
}

.navbar__link:hover::after,
.navbar__link.is-active::after {
  width: 100%;
}

.navbar__dropdown-toggle {
  cursor: pointer;
}

.navbar__caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
}

.navbar__dropdown-toggle[aria-expanded="true"] .navbar__caret {
  transform: rotate(225deg);
  margin-top: 3px;
}

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 240px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.navbar__dropdown li a {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--color-charcoal);
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background-color var(--duration-fast) var(--ease-premium),
              color var(--duration-fast) var(--ease-premium);
}

.navbar__dropdown li a:hover {
  background-color: var(--color-mist);
  color: var(--color-ink-gold);
}

/* Desktop: open on hover/focus for pointer devices that support true hover */
@media (hover: hover) and (min-width: 992px) {
  .navbar__item--dropdown:hover .navbar__dropdown,
  .navbar__item--dropdown:focus-within .navbar__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

/* All devices: also respond to aria-expanded, set by navbar.js on click/tap */
.navbar__dropdown-toggle[aria-expanded="true"] + .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.navbar__cta {
  flex-shrink: 0;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
}

.navbar__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
}

.site-header.is-scrolled .navbar__toggle-bar {
  background-color: var(--color-ink-navy);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}
.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   2. HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 28, 44, 0.82) 0%,
    rgba(8, 28, 44, 0.62) 45%,
    rgba(8, 28, 44, 0.85) 100%);
}

.hero__laurel-motif {
  position: absolute;
  top: 8%;
  right: -4%;
  width: 460px;
  height: 165px;
  -webkit-mask-image: var(--laurel-sprig);
  mask-image: var(--laurel-sprig);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-heritage-gold);
  opacity: 0.14;
  transform: rotate(18deg) scaleX(-1);
  z-index: 1;
  pointer-events: none;
}

.hero__content{
    position: relative;
    z-index: 5;
    max-width: 650px;
    color: #fff;

    /* Left align */
    margin-left: 25px;
    margin-right: auto;
    text-align: left;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.hero__title {
  color: var(--color-white);
  font-size: var(--fs-h1);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ==========================================================================
   3. QUOTE STRIP
   ========================================================================== */

.quote-strip {
  background-color: var(--color-mist);
  border-bottom: 1px solid var(--color-hairline);
  padding-block: var(--space-md);
}

.quote-strip__inner {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.quote-strip__label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-gold);
  flex-shrink: 0;
}

.quote-strip__text {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-small);
  color: var(--color-ink-navy);
}

/* ==========================================================================
   4. NOTICES + EVENTS
   ========================================================================== */

/* Shared vertical rhythm for every content section site-wide. Originally
   written for Home's four sections only — About, Academics and Admissions
   later added sections reusing/introducing these same wrapper classes
   (.value-cards, .leader-message, .timeline-section, .content-split,
   .fee-section) but the padding was never extended to cover them, so
   those sections had been rendering with zero vertical gap. Fixed here
   rather than patched per-page, since this is one shared rule. */
.notices-events,
.highlights,
.achievements,
.testimonials,
.explore,
.value-cards,
.leader-message,
.timeline-section,
.content-split,
.fee-section,
.documents-section,
.admission-form-section,
.faq-section,
.toppers-section,
.sports-section,
.gallery-section,
.video-section,
.map-section,
.downloads-section {
  padding-block: var(--space-3xl);
}

.notices-events {
  background-color: var(--color-white);
}

.notices-events__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-2xl);
}

.notices__list,
.events__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.notice-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
}

.notice-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.notice-card--hidden {
  display: none;
}

.notice-card--hidden.is-visible {
  display: flex;
}

.notice-card__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-color: var(--color-ink-navy);
  color: var(--color-white);
}

.notice-card__day {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.notice-card__month {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.notice-card__title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--color-ink-navy);
  margin-bottom: 2px;
}

.notice-card__meta {
  font-size: var(--fs-caption);
  color: var(--color-slate);
}

.event-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background-color: var(--color-mist);
  border-left: 3px solid var(--color-heritage-gold);
}

.event-card:hover {
  transform: translateY(-2px);
}

.event-card__title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--color-ink-navy);
  margin-bottom: 4px;
}

.event-card__date {
  font-size: var(--fs-caption);
  color: var(--color-ink-gold);
  font-weight: 600;
}

/* ==========================================================================
   5. ADMISSION CTA BANNER
   ========================================================================== */

.admission-cta {
  background-color: var(--color-ink-navy);
  background-image: linear-gradient(120deg, var(--color-ink-navy) 0%, var(--color-navy-mid) 100%);
  padding-block: var(--space-2xl);
}

.admission-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.admission-cta__title {
  color: var(--color-white);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-2xs);
}

.admission-cta__text {
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
}

/* ==========================================================================
   6. SCHOOL HIGHLIGHTS
   ========================================================================== */

.highlights {
  background-color: var(--color-white);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.highlight-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background-color: var(--color-mist);
  text-align: left;
}

.highlight-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-md);
  background-color: var(--color-ink-navy);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

/* --faculty (Home) and --degree (Academics: Qualified Educators) share
   the same graduation-cap glyph — same underlying idea, no reason for
   a second icon. */
.highlight-card__icon--faculty,
.highlight-card__icon--degree {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4 2 9l10 5 10-5-10-5Z'/%3E%3Cpath d='M6 11.5V17c0 1.1 2.7 2 6 2s6-.9 6-2v-5.5'/%3E%3Cpath d='M22 9v6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4 2 9l10 5 10-5-10-5Z'/%3E%3Cpath d='M6 11.5V17c0 1.1 2.7 2 6 2s6-.9 6-2v-5.5'/%3E%3Cpath d='M22 9v6'/%3E%3C/svg%3E");
}

.highlight-card__icon--infra {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='1'/%3E%3Cpath d='M9 21v-4h6v4'/%3E%3Cpath d='M8 7h2M14 7h2M8 11h2M14 11h2M8 15h2M14 15h2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='1'/%3E%3Cpath d='M9 21v-4h6v4'/%3E%3Cpath d='M8 7h2M14 7h2M8 11h2M14 11h2M8 15h2M14 15h2'/%3E%3C/svg%3E");
}

.highlight-card__icon--sports {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10v5a5 5 0 0 1-10 0V4Z'/%3E%3Cpath d='M7 6H4a3 3 0 0 0 3 5M17 6h3a3 3 0 0 1-3 5'/%3E%3Cpath d='M12 14v3M9 21h6M10 17h4v4h-4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10v5a5 5 0 0 1-10 0V4Z'/%3E%3Cpath d='M7 6H4a3 3 0 0 0 3 5M17 6h3a3 3 0 0 1-3 5'/%3E%3Cpath d='M12 14v3M9 21h6M10 17h4v4h-4z'/%3E%3C/svg%3E");
}

.highlight-card__icon--safety {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 4 6v6c0 5 3.4 7.9 8 9 4.6-1.1 8-4 8-9V6l-8-3Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 4 6v6c0 5 3.4 7.9 8 9 4.6-1.1 8-4 8-9V6l-8-3Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

/* ---- Added for About page: Infrastructure & Facilities grid ---- */

.highlight-card__icon--lab {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 3h6M10 3v6L4.5 18a1 1 0 0 0 .9 1.5h13.2a1 1 0 0 0 .9-1.5L14 9V3'/%3E%3Cpath d='M8 15h8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 3h6M10 3v6L4.5 18a1 1 0 0 0 .9 1.5h13.2a1 1 0 0 0 .9-1.5L14 9V3'/%3E%3Cpath d='M8 15h8'/%3E%3C/svg%3E");
}

.highlight-card__icon--computer {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='12' rx='1.5'/%3E%3Cpath d='M8 20h8M12 16v4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='12' rx='1.5'/%3E%3Cpath d='M8 20h8M12 16v4'/%3E%3C/svg%3E");
}

.highlight-card__icon--auditorium {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4v12a3 3 0 0 0 3 3'/%3E%3Cpath d='M20 4v12a3 3 0 0 1-3 3'/%3E%3Cpath d='M4 4h16'/%3E%3Cpath d='M9 20h6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4v12a3 3 0 0 0 3 3'/%3E%3Cpath d='M20 4v12a3 3 0 0 1-3 3'/%3E%3Cpath d='M4 4h16'/%3E%3Cpath d='M9 20h6'/%3E%3C/svg%3E");
}

.highlight-card__icon--transport {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='11' rx='2'/%3E%3Cpath d='M3 11h18'/%3E%3Ccircle cx='7.5' cy='18.5' r='1.5'/%3E%3Ccircle cx='16.5' cy='18.5' r='1.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='11' rx='2'/%3E%3Cpath d='M3 11h18'/%3E%3Ccircle cx='7.5' cy='18.5' r='1.5'/%3E%3Ccircle cx='16.5' cy='18.5' r='1.5'/%3E%3C/svg%3E");
}

.highlight-card__icon--cafeteria {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3v7a2 2 0 0 0 2 2v9'/%3E%3Cpath d='M7 3v4M9 3v4'/%3E%3Cpath d='M17 3c-1.6 0-2.5 1.6-2.5 4s.9 4 2.5 4v10'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3v7a2 2 0 0 0 2 2v9'/%3E%3Cpath d='M7 3v4M9 3v4'/%3E%3Cpath d='M17 3c-1.6 0-2.5 1.6-2.5 4s.9 4 2.5 4v10'/%3E%3C/svg%3E");
}

.highlight-card__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-2xs);
}

.highlight-card__text {
  font-size: var(--fs-small);
  color: var(--color-slate);
}

/* ==========================================================================
   7. ACHIEVEMENTS (laurel-framed stat counters — signature element)
   ========================================================================== */

.achievements {
  background-color: var(--color-ink-navy);
}

.achievements__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.achievement-card {
  text-align: center;
  padding-block: var(--space-md);
}

.achievement-card__laurel {
  display: inline-block;
  width: 64px;
  height: 24px;
  vertical-align: middle;
  background-color: var(--color-heritage-gold);
  -webkit-mask-image: var(--laurel-sprig);
  mask-image: var(--laurel-sprig);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.achievement-card__laurel--left {
  transform: scaleX(-1);
}

.achievement-card__number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.6rem + 1.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  vertical-align: middle;
  margin-inline: var(--space-2xs);
  min-width: 2.5ch;
}

.achievement-card__label {
  margin-top: var(--space-xs);
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   8. TESTIMONIALS
   ========================================================================== */

.testimonials {
  background-color: var(--color-mist);
}

.testimonials__track {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-sm);
  scrollbar-width: thin;
  scrollbar-color: var(--color-heritage-gold) transparent;
}

.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 min(400px, 82vw);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: none;
}

.testimonial-card__quote {
  margin: 0 0 var(--space-lg);
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-style: italic;
  color: var(--color-ink-navy);
  line-height: var(--lh-snug);
}

.testimonial-card__quote::before {
  content: '\201C';
}
.testimonial-card__quote::after {
  content: '\201D';
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-hairline);
  padding-top: var(--space-sm);
}

.testimonial-card__name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--color-ink-navy);
}

.testimonial-card__role {
  font-size: var(--fs-caption);
  color: var(--color-slate);
}

/* ==========================================================================
   9. QUICK LINKS + GALLERY PREVIEW
   ========================================================================== */

.explore__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-2xl);
}

.quick-links__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.quick-link-tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-hairline);
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--color-ink-navy);
}

.quick-link-tile:hover {
  border-color: var(--color-heritage-gold);
  box-shadow: var(--shadow-sm);
}

.quick-link-tile__icon {
  width: 28px;
  height: 28px;
  background-color: var(--color-ink-gold);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* --academics (Home quick link) and --specialist (Academics: Subject
   Specialists) share the same open-book glyph. */
.quick-link-tile__icon--academics,
.highlight-card__icon--specialist {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5.5C4 4.7 4.7 4 5.5 4H12v16H5.5A1.5 1.5 0 0 1 4 18.5v-13Z'/%3E%3Cpath d='M20 5.5c0-.8-.7-1.5-1.5-1.5H12v16h6.5a1.5 1.5 0 0 0 1.5-1.5v-13Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5.5C4 4.7 4.7 4 5.5 4H12v16H5.5A1.5 1.5 0 0 1 4 18.5v-13Z'/%3E%3Cpath d='M20 5.5c0-.8-.7-1.5-1.5-1.5H12v16h6.5a1.5 1.5 0 0 0 1.5-1.5v-13Z'/%3E%3C/svg%3E");
}

.quick-link-tile__icon--admissions {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='4' width='14' height='17' rx='1.5'/%3E%3Cpath d='M9 4V3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1'/%3E%3Cpath d='m9 13 2 2 4-4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='4' width='14' height='17' rx='1.5'/%3E%3Cpath d='M9 4V3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1'/%3E%3Cpath d='m9 13 2 2 4-4'/%3E%3C/svg%3E");
}

.quick-link-tile__icon--gallery {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='15' height='13' rx='1.5'/%3E%3Ccircle cx='8' cy='10' r='1.5'/%3E%3Cpath d='m4 17 4.5-4.5L12 16l3-3 3 3'/%3E%3Cpath d='M21 8v9a2 2 0 0 1-2 2H8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='15' height='13' rx='1.5'/%3E%3Ccircle cx='8' cy='10' r='1.5'/%3E%3Cpath d='m4 17 4.5-4.5L12 16l3-3 3 3'/%3E%3Cpath d='M21 8v9a2 2 0 0 1-2 2H8'/%3E%3C/svg%3E");
}

.quick-link-tile__icon--downloads {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v11'/%3E%3Cpath d='m7.5 10 4.5 4.5L16.5 10'/%3E%3Cpath d='M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v11'/%3E%3Cpath d='m7.5 10 4.5 4.5L16.5 10'/%3E%3Cpath d='M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2'/%3E%3C/svg%3E");
}

.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.gallery-preview__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
}

.gallery-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-preview__item--more {
  position: relative;
}

.gallery-preview__item--more::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(12, 43, 66, 0.6);
}

.gallery-preview__more-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-caption);
  padding: var(--space-sm);
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--color-depth-navy);
  color: rgba(255, 255, 255, 0.8);
  padding-top: var(--space-2xl);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col__logo {
  height: 42px;
  width: auto;
  filter: none;
  margin-bottom: var(--space-md);
}

.footer-col__text {
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  margin-bottom: var(--space-md);
}

.footer-col__socials {
  display: flex;
  gap: var(--space-sm);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  transition: background-color var(--duration-fast) var(--ease-premium),
              border-color var(--duration-fast) var(--ease-premium);
}

.social-icon:hover {
  background-color: var(--color-heritage-gold);
  border-color: var(--color-heritage-gold);
}

.social-icon::before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: var(--color-white);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.social-icon--facebook::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 8h2V4.5h-2.5A4 4 0 0 0 10 8.5V11H8v3.5h2V21h3.5v-6.5H16l.5-3.5h-3V9c0-.6.4-1 1-1Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 8h2V4.5h-2.5A4 4 0 0 0 10 8.5V11H8v3.5h2V21h3.5v-6.5H16l.5-3.5h-3V9c0-.6.4-1 1-1Z'/%3E%3C/svg%3E");
}

.social-icon--instagram::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8'%3E%3Crect x='3.5' y='3.5' width='17' height='17' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17' cy='7' r='0.9' fill='%23000' stroke='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8'%3E%3Crect x='3.5' y='3.5' width='17' height='17' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17' cy='7' r='0.9' fill='%23000' stroke='none'/%3E%3C/svg%3E");
}

.social-icon--youtube::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2.5' y='6' width='19' height='12' rx='3' fill='none' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='m10.5 9.5 5 2.5-5 2.5v-5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2.5' y='6' width='19' height='12' rx='3' fill='none' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='m10.5 9.5 5 2.5-5 2.5v-5Z'/%3E%3C/svg%3E");
}

.footer-col__heading {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: var(--fs-small);
}

.footer-col__list a:hover {
  color: var(--color-heritage-gold);
}

.footer-col__address {
  font-style: normal;
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}

.footer-col__address a:hover {
  color: var(--color-heritage-gold);
}

.newsletter-form {
  display: flex;
  gap: var(--space-2xs);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem var(--space-sm);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-size: var(--fs-caption);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus-visible {
  outline: 2px solid var(--color-heritage-gold);
  outline-offset: 2px;
}

.site-footer__bottom {
  padding-block: var(--space-md);
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--fs-caption);
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__credit a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.site-footer__credit a:hover {
  color: var(--color-heritage-gold);
}

/* ==========================================================================
   11. PAGE HEADER (interior-page banner — used on About and every page
   after it instead of repeating the full-viewport home hero)
   ========================================================================== */

.page-header {
  position: relative;
  background-color: var(--color-depth-navy);
  background-image: linear-gradient(120deg, var(--color-depth-navy) 0%, var(--color-navy-mid) 100%);
  padding-block: calc(var(--header-height) + var(--space-xl)) var(--space-2xl);
  overflow: hidden;
}

.page-header > .container {
  position: relative;
  z-index: 2;
}

.page-header__laurel-motif {
  position: absolute;
  top: -18%;
  right: -3%;
  width: 380px;
  height: 137px; /* preserves the sprig's native 100:36 aspect ratio */
  background-color: var(--color-heritage-gold);
  -webkit-mask-image: var(--laurel-sprig);
  mask-image: var(--laurel-sprig);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 0.12;
  transform: rotate(-14deg);
  pointer-events: none;
  z-index: 1;
}

.page-header__title {
  color: var(--color-white);
  font-size: var(--fs-h1);
  margin-top: var(--space-2xs);
  max-width: 720px;
}

/* ==========================================================================
   12. BREADCRUMB
   ========================================================================== */

.breadcrumb {
  margin-bottom: var(--space-md);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3xs);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--fs-caption);
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: var(--space-3xs);
}

.breadcrumb__list li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb__list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.breadcrumb__list a:hover,
.breadcrumb__list a:focus-visible {
  color: var(--color-heritage-gold);
}

.breadcrumb__list li[aria-current="page"] {
  color: var(--color-white);
  font-weight: 600;
}

/* ==========================================================================
   13. CONTENT SPLIT (image + text — About the School; reusable on later pages)
   ========================================================================== */

.content-split__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.content-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.content-split__body .eyebrow {
  margin-bottom: var(--space-2xs);
}

.content-split__body .section-head__title {
  margin-bottom: var(--space-md);
}

.content-split__body p {
  color: var(--color-slate);
  margin-bottom: var(--space-sm);
}

.content-split__body p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   14. VALUE CARDS (Vision & Mission)
   ========================================================================== */

.value-cards {
  background-color: var(--color-mist);
}

.value-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.value-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.value-card__laurel {
  display: block;
  width: 56px;
  height: 20px;
  margin-bottom: var(--space-md);
  background-color: var(--color-heritage-gold);
  -webkit-mask-image: var(--laurel-sprig);
  mask-image: var(--laurel-sprig);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.value-card__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
}

.value-card__text {
  color: var(--color-slate);
}

.value-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.value-card__list li {
  position: relative;
  padding-left: var(--space-md);
  color: var(--color-slate);
}

.value-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-heritage-gold);
}

/* ==========================================================================
   15. LEADER MESSAGE (Principal's / Chairman's Message)
   ========================================================================== */

.leader-message:nth-of-type(even) {
  background-color: var(--color-mist);
}

.leader-message__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.leader-message--reverse .leader-message__media {
  order: 2;
}

.leader-message--reverse .leader-message__body {
  order: 1;
}

.leader-message__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.leader-message__quote {
  margin: var(--space-md) 0;
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-heritage-gold);
}

.leader-message__quote p {
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.leader-message__quote p:last-child {
  margin-bottom: 0;
}

.leader-message__signature {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-md);
}

.leader-message__name {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--color-ink-navy);
}

.leader-message__role {
  font-size: var(--fs-small);
  color: var(--color-slate);
}

/* ==========================================================================
   16. TIMELINE (School History)
   ========================================================================== */

.timeline-section {
  background-color: var(--color-white);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 84px;
  width: 2px;
  background-color: var(--color-hairline);
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-2xl);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: 84px;
  top: 0.3em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-heritage-gold);
  box-shadow: 0 0 0 3px var(--color-white);
  transform: translateX(-50%);
}

.timeline__year {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--color-ink-gold);
  text-align: right;
  padding-top: 0.15em;
}

.timeline__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-3xs);
}

.timeline__text {
  color: var(--color-slate);
}

/* ==========================================================================
   17. ACADEMICS PAGE — new icons (Faculty, School Timings)
   ========================================================================== */

.highlight-card__icon--ratio {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3 20c0-4 2.5-6 6-6s6 2 6 6'/%3E%3Ccircle cx='17.5' cy='9' r='2.2'/%3E%3Cpath d='M15.8 14.3c2.5 0 4.2 1.9 4.2 5.2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3 20c0-4 2.5-6 6-6s6 2 6 6'/%3E%3Ccircle cx='17.5' cy='9' r='2.2'/%3E%3Cpath d='M15.8 14.3c2.5 0 4.2 1.9 4.2 5.2'/%3E%3C/svg%3E");
}

.highlight-card__icon--training {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 18 9 12l4 3 8-9'/%3E%3Cpath d='M15 6h6v6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 18 9 12l4 3 8-9'/%3E%3Cpath d='M15 6h6v6'/%3E%3C/svg%3E");
}

.highlight-card__icon--clock {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l4 2.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l4 2.5'/%3E%3C/svg%3E");
}

.highlight-card__icon--assembly {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3v18'/%3E%3Cpath d='M6 4h11l-3 4 3 4H6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3v18'/%3E%3Cpath d='M6 4h11l-3 4 3 4H6Z'/%3E%3C/svg%3E");
}

.highlight-card__icon--dismissal {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H6v18h8'/%3E%3Cpath d='M11 12h10m-4-4 4 4-4 4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H6v18h8'/%3E%3Cpath d='M11 12h10m-4-4 4 4-4 4'/%3E%3C/svg%3E");
}

.highlight-card__icon--office {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4c3 0 4.8.3 5.5 2 .6 1.5-.5 2.5-1.5 3 .8 3 3.6 5.8 6.6 6.6.5-1 1.5-2.1 3-1.5 1.7.7 2 2.5 2 5.5-1.5 1-4 1.5-6.6 1-6-1.2-10.9-6.1-12.1-12.1-.5-2.6 0-5.1 1-6.5.5-.7 1.1-1 2.1-1Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4c3 0 4.8.3 5.5 2 .6 1.5-.5 2.5-1.5 3 .8 3 3.6 5.8 6.6 6.6.5-1 1.5-2.1 3-1.5 1.7.7 2 2.5 2 5.5-1.5 1-4 1.5-6.6 1-6-1.2-10.9-6.1-12.1-12.1-.5-2.6 0-5.1 1-6.5.5-.7 1.1-1 2.1-1Z'/%3E%3C/svg%3E");
}

/* ==========================================================================
   18. VALUE CARD META + THREE-COLUMN VARIANT
   (grade range on Classes Offered / exam timing on Examinations)
   ========================================================================== */

.value-card__meta {
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-ink-gold);
  margin-bottom: var(--space-xs);
}

.value-cards__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

/* ==========================================================================
   19. TAG LIST (Curriculum: subjects taught)
   ========================================================================== */

.tag-group {
  margin-top: var(--space-lg);
}

.tag-group + .tag-group {
  margin-top: var(--space-md);
}

.tag-group__label {
  font-family: var(--font-ui);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-bottom: var(--space-xs);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag {
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-ink-navy);
  background-color: var(--color-mist);
  border-radius: var(--radius-pill);
  padding: var(--space-3xs) var(--space-sm);
}

/* ==========================================================================
   20. FEE TABLE
   ========================================================================== */

.fee-section {
  background-color: var(--color-mist);
}

.table-scroll {
  max-width: 900px;
  margin-inline: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.fee-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background-color: var(--color-white);
  font-family: var(--font-body);
}

.fee-table thead th {
  background-color: var(--color-ink-navy);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-small);
  text-align: center;
  padding: var(--space-sm) var(--space-md);
}

.fee-table thead th:first-child {
  text-align: left;
}

.fee-table tbody th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: var(--color-ink-navy);
  padding: var(--space-sm) var(--space-md);
  white-space: nowrap;
}

.fee-table tbody td {
  text-align: center;
  color: var(--color-charcoal);
  padding: var(--space-sm) var(--space-md);
}

.fee-table tbody tr {
  border-bottom: 1px solid var(--color-hairline);
}

.fee-table tbody tr:last-child {
  border-bottom: none;
}

.fee-table tbody tr:nth-child(even) {
  background-color: var(--color-mist);
}

.fee-table__note {
  display: block;
  font-weight: 400;
  font-size: var(--fs-caption);
  opacity: 0.75;
}

.fee-section__notes {
  max-width: 900px;
  margin: var(--space-lg) auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.fee-section__notes li {
  position: relative;
  padding-left: var(--space-md);
  color: var(--color-slate);
  font-size: var(--fs-small);
}

.fee-section__notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-heritage-gold);
}

.fee-section__disclaimer {
  max-width: 900px;
  margin: var(--space-md) auto 0;
  font-size: var(--fs-caption);
  font-style: italic;
  color: var(--color-slate);
  text-align: center;
}

/* ==========================================================================
   21. HIGHLIGHTS FOOTNOTE (School Timings)
   ========================================================================== */

.highlights__footnote {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: var(--fs-small);
  color: var(--color-slate);
}

/* ==========================================================================
   22. ADMISSION PROCESS TWEAK — timeline reused with step labels
   (no new rule needed: .timeline__year already styles the "Step 01"
   text exactly like a year, same visual weight fits both)
   ========================================================================== */

/* ==========================================================================
   23. ADMISSION FORM
   ========================================================================== */

.admission-form-section {
  background-color: var(--color-mist);
}

.section-head__intro {
  margin-top: var(--space-sm);
  color: var(--color-slate);
  font-size: var(--fs-lead);
}

.admission-form {
  max-width: 880px;
  margin-inline: auto;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.admission-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-lg);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--color-ink-navy);
}

.form-field__optional {
  font-weight: 400;
  color: var(--color-slate);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-charcoal);
  background-color: var(--color-white);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-sm);
  padding: 0.75rem var(--space-sm);
  transition: border-color var(--duration-fast) var(--ease-premium),
              box-shadow var(--duration-fast) var(--ease-premium);
}

.form-field textarea {
  resize: vertical;
  min-height: 96px;
  font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-heritage-gold);
  box-shadow: 0 0 0 3px var(--color-gold-glow);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B6B7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-sm) center;
  background-size: 16px;
  padding-right: var(--space-xl);
}

.admission-form__consent {
  font-size: var(--fs-caption);
  color: var(--color-slate);
  margin-bottom: var(--space-md);
}

/* ---- Form feedback (also used by the footer newsletter form) ---- */

.form-feedback {
  margin-top: var(--space-sm);
  font-size: var(--fs-small);
  font-weight: 500;
}

.form-feedback--success {
  color: var(--color-success);
}

.form-feedback--error {
  color: var(--color-error);
}

/* ==========================================================================
   24. DOCUMENTS CHECKLIST
   ========================================================================== */

.documents-section {
  background-color: var(--color-white);
}

.checklist {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md) var(--space-xl);
}

.checklist__item {
  position: relative;
  padding-left: var(--space-xl);
  color: var(--color-charcoal);
}

.checklist__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background-color: var(--color-heritage-gold);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M7.5 12.5l3 3 6-6.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M7.5 12.5l3 3 6-6.5'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* ==========================================================================
   25. FAQ ACCORDION
   ========================================================================== */

.faq-section {
  background-color: var(--color-mist);
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-hairline);
}

.faq-item__heading {
  margin: 0;
  font-family: inherit;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-md);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--color-ink-navy);
  text-align: left;
}

.faq-item__trigger::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: var(--color-ink-navy);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: transform var(--duration-base) var(--ease-premium);
}

.faq-item__trigger[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* JS toggles both aria-expanded (trigger) and .is-open (panel) together —
   they aren't adjacent siblings in the DOM (trigger sits inside an h3),
   so a pure CSS sibling-selector toggle isn't reliable here. */
.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-premium);
}

.faq-item__panel.is-open {
  max-height: 400px;
}

.faq-item__panel p {
  padding-bottom: var(--space-md);
  color: var(--color-slate);
  max-width: 640px;
}

/* ==========================================================================
   26. TOPPERS GRID (Students: Class Toppers showcase)
   ========================================================================== */

.toppers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.student-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.student-card__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-sm);
  border: 3px solid var(--color-mist);
}

.student-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-card__badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-caption);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-heritage-gold);
  padding: var(--space-3xs) var(--space-sm);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-xs);
}

.student-card__name {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-3xs);
}

.student-card__meta {
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  color: var(--color-slate);
}

.toppers-section__table {
  margin-top: var(--space-2xl);
}

/* ==========================================================================
   27. SPORTS TAG LIST VARIANT + CLUB ICONS
   ========================================================================== */

.tag-list--center {
  justify-content: center;
}

.tag--lg {
  font-size: var(--fs-body);
  padding: var(--space-xs) var(--space-md);
}

.highlight-card__icon--debate {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16v11H8l-4 4V5Z'/%3E%3Cpath d='M8 9h8M8 12h5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16v11H8l-4 4V5Z'/%3E%3Cpath d='M8 9h8M8 12h5'/%3E%3C/svg%3E");
}

.highlight-card__icon--eco {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 19c0-8 5-14 14-14 0 9-6 14-14 14Z'/%3E%3Cpath d='M5 19c2-4 5-7 9-9'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 19c0-8 5-14 14-14 0 9-6 14-14 14Z'/%3E%3Cpath d='M5 19c2-4 5-7 9-9'/%3E%3C/svg%3E");
}

.highlight-card__icon--art {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3C6.5 3 3 6.8 3 11.5 3 15 5.5 17 8 17c1 0 1.5-.6 1.5-1.3 0-.6-.3-1-.3-1.7 0-1 .8-1.5 1.8-1.5H13c4 0 8-2 8-6.5C21 4 17 3 12 3Z'/%3E%3Ccircle cx='7.5' cy='10' r='.8'/%3E%3Ccircle cx='11' cy='7' r='.8'/%3E%3Ccircle cx='15' cy='7.5' r='.8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3C6.5 3 3 6.8 3 11.5 3 15 5.5 17 8 17c1 0 1.5-.6 1.5-1.3 0-.6-.3-1-.3-1.7 0-1 .8-1.5 1.8-1.5H13c4 0 8-2 8-6.5C21 4 17 3 12 3Z'/%3E%3Ccircle cx='7.5' cy='10' r='.8'/%3E%3Ccircle cx='11' cy='7' r='.8'/%3E%3Ccircle cx='15' cy='7.5' r='.8'/%3E%3C/svg%3E");
}

.highlight-card__icon--robotics {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 3v2.5M12 18.5V21M21 12h-2.5M5.5 12H3M18.4 5.6l-1.8 1.8M7.4 16.6l-1.8 1.8M18.4 18.4l-1.8-1.8M7.4 7.4 5.6 5.6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 3v2.5M12 18.5V21M21 12h-2.5M5.5 12H3M18.4 5.6l-1.8 1.8M7.4 16.6l-1.8 1.8M18.4 18.4l-1.8-1.8M7.4 7.4 5.6 5.6'/%3E%3C/svg%3E");
}

/* ==========================================================================
   28. GALLERY — filter bar + grid
   ========================================================================== */

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.gallery-filter__btn {
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-ink-navy);
  background-color: var(--color-mist);
  border-radius: var(--radius-pill);
  padding: var(--space-2xs) var(--space-md);
  transition: background-color var(--duration-fast) var(--ease-premium),
              color var(--duration-fast) var(--ease-premium);
}

.gallery-filter__btn:hover {
  background-color: var(--color-hairline);
}

.gallery-filter__btn.is-active {
  background-color: var(--color-ink-navy);
  color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-base) var(--ease-premium);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 28, 44, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-premium);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.08);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-section__empty {
  text-align: center;
  color: var(--color-slate);
  padding-block: var(--space-xl);
}

/* ==========================================================================
   29. LIGHTBOX
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(8, 28, 44, 0.92);
  padding: var(--space-lg);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  max-width: min(900px, 90vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.lightbox__image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox__caption {
  margin-top: var(--space-sm);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-small);
  text-align: center;
  max-width: 640px;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color var(--duration-fast) var(--ease-premium);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox__close {
  top: var(--space-lg);
  right: var(--space-lg);
}

.lightbox__close::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: var(--color-white);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: var(--space-lg);
}

.lightbox__nav--next {
  right: var(--space-lg);
}

/* Reuses the same chevron asset as the FAQ trigger and select arrow,
   just rotated — one icon, three jobs. */
.lightbox__nav::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--color-white);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.lightbox__nav--prev::before {
  transform: rotate(90deg);
}

.lightbox__nav--next::before {
  transform: rotate(-90deg);
}

/* ==========================================================================
   30. VIDEO GALLERY
   ========================================================================== */

.video-section {
  background-color: var(--color-mist);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(8, 28, 44, 0.3);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-heritage-gold);
  z-index: 1;
}

.video-card__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--color-white);
}

.video-card__title {
  margin-top: var(--space-sm);
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--color-ink-navy);
  text-align: center;
}

/* ==========================================================================
   31. MAP (Contact page)
   ========================================================================== */

.map-section {
  background-color: var(--color-mist);
  padding-inline: var(--space-md);
}

.map-embed {
  max-width: 1000px;
  margin-inline: auto;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ==========================================================================
   32. CONTACT DETAIL ICONS
   ========================================================================== */

.highlight-card__icon--address {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s7-7.5 7-13a7 7 0 0 0-14 0c0 5.5 7 13 7 13Z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s7-7.5 7-13a7 7 0 0 0-14 0c0 5.5 7 13 7 13Z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C/svg%3E");
}

.highlight-card__icon--envelope {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3.5 6.5 12 13l8.5-6.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3.5 6.5 12 13l8.5-6.5'/%3E%3C/svg%3E");
}

/* ==========================================================================
   33. DOWNLOADS GRID
   ========================================================================== */

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.download-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-base) var(--ease-premium),
              box-shadow var(--duration-base) var(--ease-premium);
}

.download-card:not(.download-card--pending):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.download-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-md);
  background-color: var(--color-heritage-gold);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2h9l5 5v15H6Z'/%3E%3Cpath d='M15 2v5h5'/%3E%3Cpath d='M9 13h6M9 16.5h6M9 9.5h2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2h9l5 5v15H6Z'/%3E%3Cpath d='M15 2v5h5'/%3E%3Cpath d='M9 13h6M9 16.5h6M9 9.5h2'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.download-card--pending .download-card__icon {
  background-color: var(--color-slate);
}

.download-card__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-2xs);
}

.download-card__text {
  color: var(--color-slate);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}

.download-card__badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-slate);
  background-color: var(--color-mist);
  padding: var(--space-2xs) var(--space-md);
  border-radius: var(--radius-pill);
}