/* ══ DESIGN TOKENS ══ */
:root {
  --pink: #d81b7d;
  --pink-deep: #b01564;
  --pink-light: #e84595;
  --pink-pale: #fef0f7;
  --pink-tint: #fff5fa;
  --navy: #0d1238;
  --navy-mid: #1a1f50;
  --navy-soft: #252b65;
  --bg: #fafafb;
  --surface: #ffffff;
  --surface-2: #f7f6f9;
  --border: rgba(216, 27, 125, 0.1);
  --border-mid: rgba(216, 27, 125, 0.18);
  --text: #0d1238;
  --text-muted: #4a4f6a;
  --text-faint: #8b8fa8;
  --on-pink: #ffffff;
  --font-head: "Roboto", sans-serif;
  --font-body: "Inter", sans-serif;
  --sz-xs: 0.75rem;
  --sz-sm: 0.875rem;
  --sz-md: 1rem;
  --sz-lg: 1.25rem;
  --sz-xl: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  --sz-2xl: clamp(2rem, 1.2rem + 2.4vw, 3.2rem);
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.25rem;
  --s6: 1.5rem;
  --s8: 2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;
  --sh-sm: 0 1px 3px rgba(13, 18, 56, 0.04), 0 2px 6px rgba(0, 0, 0, 0.03);
  --sh-md: 0 4px 18px rgba(13, 18, 56, 0.06), 0 8px 28px rgba(0, 0, 0, 0.04);
  --sh-lg: 0 8px 30px rgba(13, 18, 56, 0.08), 0 16px 40px rgba(0, 0, 0, 0.05);
  --sh-pink: 0 6px 22px rgba(216, 27, 125, 0.22);
  --ease: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slow: 350ms cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  font-size: var(--sz-md);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
}
p {
  max-width: 66ch;
}

/* ══ TOP BAR ══ */
.top-bar {
  background: linear-gradient(
    120deg,
    var(--navy) 0%,
    var(--navy-mid) 60%,
    #3d0d28 100%
  );
  padding: var(--s2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-bar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
}
.top-bar__left {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--sz-xs);
  transition: color var(--ease);
}
.top-bar__item:hover {
  color: #fff;
}
.top-bar__item svg {
  flex-shrink: 0;
  opacity: 0.65;
}
.top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.top-bar__hours {
  font-size: var(--sz-xs);
  color: rgba(255, 255, 255, 0.65);
  padding: 3px 12px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 5px;
}
.top-bar__social {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--ease),
    color var(--ease);
}
.top-bar__social:hover {
  background: var(--pink);
  color: #fff;
}

/* ══ NAVBAR ══ */
.navbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 10px rgba(13, 18, 56, 0.04);
  position: sticky;
  top: 0;
  z-index: 200;
}
.navbar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--s6);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}
.logo__emblem {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--pink-pale);
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo__emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo__name {
  font-family: var(--font-head);
  font-size: clamp(0.85rem, 0.7rem + 0.4vw, 1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.logo__board {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}
.logo__slogan {
  font-size: 0.6rem;
  color: var(--text-faint);
  font-weight: 500;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__list a {
  display: block;
  padding: var(--s2) var(--s3);
  font-size: var(--sz-sm);
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition:
    color var(--ease),
    background var(--ease);
}
.nav__list a:hover {
  color: var(--pink);
  background: var(--pink-tint);
}
.nav__list a.active {
  color: var(--pink-deep);
  font-weight: 600;
  background: var(--pink-tint);
}
.nav__list .nav__cta {
  background: var(--pink) !important;
  color: #fff !important;
  border-radius: var(--r-full) !important;
  padding: var(--s2) var(--s5) !important;
  font-weight: 700 !important;
  box-shadow: var(--sh-pink);
  margin-left: var(--s2);
  transition:
    background var(--ease),
    box-shadow var(--ease),
    transform var(--ease) !important;
}
.nav__list .nav__cta:hover {
  background: var(--pink-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(216, 27, 125, 0.35) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform var(--ease),
    opacity var(--ease);
}
.mobile-menu {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--s4) var(--s6) var(--s6);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: var(--s3) var(--s2);
  font-size: var(--sz-sm);
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition:
    color var(--ease),
    padding-left var(--ease);
}
.mobile-menu a:hover {
  color: var(--pink);
  padding-left: var(--s4);
}
.mobile-menu__cta {
  display: block;
  margin-top: var(--s4);
  text-align: center;
  background: var(--pink);
  color: #fff !important;
  padding: var(--s3) var(--s4);
  border-radius: var(--r-full);
  font-weight: 700;
  border-bottom: none !important;
}
@media (max-width: 960px) {
  .nav__list {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 620px) {
  .top-bar__hours {
    display: none;
  }
}

/* ══ HERO ══ */
.hero-custom {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.hero-custom__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 18, 56, 0.3) 0%,
    rgba(13, 18, 56, 0.65) 100%
  );
  z-index: 1;
}
.hero-custom__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: var(--s12) var(--s6);
}
.hero-custom__content h1 {
  font-size: var(--sz-2xl);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin: 0 0 var(--s3);
  line-height: 1.1;
}
.hero-subtitle {
  font-size: var(--sz-lg);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  margin: 0 auto;
  max-width: 44ch;
  letter-spacing: 0.01em;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.4rem 1.1rem;
  border-radius: var(--r-full);
  background: rgba(216, 27, 125, 0.25);
  border: 1px solid rgba(216, 27, 125, 0.45);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s5);
}
.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

/* ══ SECTION UTILITIES ══ */
.section {
  padding: var(--s20) var(--s6);
}
.section--light {
  background: var(--surface-2);
}
.section--muted {
  background: var(--pink-tint);
}
.section--dark {
  background: linear-gradient(
    160deg,
    var(--navy) 0%,
    var(--navy-mid) 60%,
    #3a0d28 100%
  );
}
.section__inner {
  max-width: var(--wrap);
  margin: 0 auto;
}
.section__header {
  margin-bottom: var(--s12);
}
.section__header--center {
  text-align: center;
}
.section__title {
  font-size: var(--sz-xl);
  font-weight: 700;
  color: var(--navy);
  margin-top: var(--s3);
  letter-spacing: -0.02em;
}
.section--dark .section__title {
  color: #fff;
}
.section__desc {
  font-size: var(--sz-sm);
  color: var(--text-muted);
  max-width: 52ch;
  margin: var(--s3) auto 0;
  line-height: 1.8;
}
.section--dark .section__desc {
  color: rgba(255, 255, 255, 0.62);
}
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border: 1px solid rgba(216, 27, 125, 0.18);
}
.section--dark .section-pill {
  background: rgba(216, 27, 125, 0.18);
  color: var(--pink-light);
  border-color: rgba(216, 27, 125, 0.35);
}

/* ══ SECTION 01 — ANNUAL DAY ══ */

.s1-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s6);
  align-items: stretch;
}

/* ── LEFT COLUMN ── */
.s1-left {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: var(--s5);
}

.s1-header {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.s1-header .section-pill {
  align-self: flex-start;
}

.s1-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  min-height: 0;
}

.s1-duo-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 100%;
  min-height: 180px;
}

.s1-duo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.s1-duo-card:hover img {
  transform: scale(1.04);
}

.s1-duo-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s6) var(--s4) var(--s3);
  background: linear-gradient(
    0deg,
    rgba(13, 18, 56, 0.82) 0%,
    transparent 100%
  );
  color: #fff;
  font-size: var(--sz-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity var(--ease),
    transform var(--ease);
}

.s1-duo-card:hover .s1-duo-card__label {
  opacity: 1;
  transform: translateY(0);
}

/* ── RIGHT COLUMN ── */
.s1-right {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: var(--s4);
}

.s1-hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 0;
}

.s1-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.s1-hero-card:hover img {
  transform: scale(1.03);
}

.s1-hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(13, 18, 56, 0.88) 0%,
    rgba(13, 18, 56, 0.08) 55%,
    transparent 100%
  );
}

.s1-hero-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s8) var(--s6) var(--s6);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.s1-hero-card__eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-light);
}

.s1-hero-card__caption h3 {
  font-size: var(--sz-lg);
  font-weight: 700;
  line-height: 1.3;
  max-width: 28ch;
}

.s1-wide-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/7;
  flex-shrink: 0;
}

.s1-wide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.s1-wide-card:hover img {
  transform: scale(1.04);
}

.s1-wide-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 18, 56, 0.75) 0%, transparent 60%);
}

.s1-wide-card__caption {
  position: absolute;
  bottom: var(--s4);
  left: var(--s5);
  color: #fff;
  font-size: var(--sz-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .s1-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .s1-left {
    grid-template-rows: auto auto;
  }

  .s1-duo-card {
    aspect-ratio: 4/3;
    height: auto;
  }

  .s1-right {
    grid-template-rows: auto auto;
  }

  .s1-hero-card {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .s1-duo {
    gap: var(--s3);
  }

  .s1-duo-card {
    aspect-ratio: 1/1;
  }
}

/* ══ SECTION 02 — ACADEMIC EXCELLENCE ══ */

.s2-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s6);
  align-items: stretch;
}

/* ── LEFT COLUMN ── */
.s2-left {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: var(--s3);
}

.s2-left .section-pill {
  align-self: flex-start;
  justify-self: start;
}

.s2-left .section__title {
  margin-top: 0;
}

.s2-left .section__desc {
  margin-top: 0;
  margin-bottom: var(--s2);
}

/* Feature Card — stretches to fill remaining left height */
.s2-feature-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 0;
}

.s2-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.s2-feature-card:hover img {
  transform: scale(1.03);
}

.s2-feature-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(13, 18, 56, 0.88) 0%,
    rgba(13, 18, 56, 0.08) 55%,
    transparent 100%
  );
}

.s2-feature-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s8) var(--s6) var(--s6);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.s2-feature-card__eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-light);
}

.s2-feature-card__caption h3 {
  font-size: var(--sz-lg);
  font-weight: 700;
  line-height: 1.25;
}

.s2-feature-card__caption p {
  font-size: var(--sz-sm);
  opacity: 0.75;
  max-width: 28ch;
}

/* ── RIGHT COLUMN ── */
.s2-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  align-content: start;
}

.s2-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}

.s2-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.s2-card--wide {
  grid-column: span 2;
}

.s2-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.s2-card--wide .s2-card__img-wrap {
  aspect-ratio: 21/8;
}

.s2-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.s2-card:hover .s2-card__img-wrap img {
  transform: scale(1.04);
}

.s2-card__body {
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.s2-card__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: var(--s1);
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-full);
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border-mid);
}

.s2-card__title {
  font-size: var(--sz-sm);
  font-weight: 700;
  color: var(--navy);
}

.s2-card__sub {
  font-size: var(--sz-xs);
  color: var(--text-faint);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .s2-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .s2-left {
    grid-template-rows: auto auto auto auto;
  }

  .s2-feature-card {
    aspect-ratio: 16/8;
  }
}

@media (max-width: 560px) {
  .s2-right {
    grid-template-columns: 1fr;
  }

  .s2-card--wide {
    grid-column: span 1;
  }
}

/* ══ SECTION 03 — SPORTS ══ */

.s3-layout {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

/* ── TOP ROW: header + hero ── */
.s3-header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--s6);
  align-items: stretch;
}

.s3-header__text {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  justify-content: center;
}

.s3-header__text .section-pill {
  align-self: flex-start;
}

.s3-header__text .section__title {
  margin-top: 0;
}

.s3-header__text .section__desc {
  margin-top: 0;
}

/* Hero Card */
.s3-hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/8;
}

.s3-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.s3-hero-card:hover img {
  transform: scale(1.04);
}

.s3-hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(13, 18, 56, 0.88) 0%,
    rgba(13, 18, 56, 0.15) 50%,
    transparent 100%
  );
}

.s3-hero-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s8) var(--s6) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.s3-eyebrow {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-light);
}

.s3-hero-card__title {
  font-family: var(--font-head);
  font-size: var(--sz-xl);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

/* Badge */
.s3-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
  background: rgba(216, 27, 125, 0.35);
  border: 1px solid rgba(216, 27, 125, 0.55);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  align-self: flex-start;
}

.s3-badge--dark {
  background: var(--pink-pale);
  border: 1px solid var(--border-mid);
  color: var(--pink-deep);
}

/* ── BOTTOM ROW: 4 strip cards ── */
.s3-strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}

.s3-strip-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}

.s3-strip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.s3-strip-card__img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.s3-strip-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.s3-strip-card:hover .s3-strip-card__img img {
  transform: scale(1.05);
}

.s3-strip-card__body {
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.s3-strip-card__sport {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
}

.s3-strip-card__title {
  font-size: var(--sz-sm);
  font-weight: 700;
  color: var(--navy);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .s3-header {
    grid-template-columns: 1fr;
  }

  .s3-hero-card {
    aspect-ratio: 16/8;
  }

  .s3-strip-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .s3-strip-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--s3);
  }

  .s3-strip-card__body {
    padding: var(--s3);
  }
}

/* ══ SECTION 04 — SAFETY ══ */

.s4-header {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s10);
}
.s4-header .section-pill {
  align-self: flex-start;
}
.s4-header .section__title,
.s4-header .section__desc {
  margin-top: 0;
}

/* 2-col: timeline left, mosaic right — both stretch to same height */
.s4-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s8);
  align-items: stretch;
}

/* ── LEFT: Timeline fills full column height ── */
.s4-timeline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.s4-titem {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  position: relative;
  flex: 1;
}

/* connector grows to fill gap between dots */
.s4-titem:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(216, 27, 125, 0.28) 0%,
    rgba(216, 27, 125, 0.05) 100%
  );
}

.s4-titem__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(216, 27, 125, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(216, 27, 125, 0.12);
  position: relative;
  z-index: 1;
}

.s4-titem__dot span {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--pink);
}

.s4-titem__body {
  padding-top: var(--s1);
  padding-bottom: var(--s4);
}

.s4-titem:last-child .s4-titem__body {
  padding-bottom: 0;
}

.s4-titem__body h4 {
  font-size: var(--sz-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s1);
}

.s4-titem__body p {
  font-size: var(--sz-xs);
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── RIGHT: Mosaic fills full column height ── */
.s4-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.2fr 1fr;
  gap: var(--s3);
  height: 100%;
}

.s4-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 0;
}

.s4-img--wide {
  grid-column: span 2;
}

.s4-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .s4-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .s4-mosaic {
    grid-template-rows: auto;
    height: auto;
  }
  .s4-img {
    aspect-ratio: 4/3;
  }
  .s4-img--wide {
    aspect-ratio: 16/7;
  }
  .s4-timeline {
    justify-content: flex-start;
    gap: 0;
  }
  .s4-titem__body {
    padding-bottom: var(--s5);
  }
}

@media (max-width: 480px) {
  .s4-mosaic {
    gap: var(--s2);
  }
}

/* ══ SECTION 07 — MEMORY MOSAIC ══ */

.s7-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s10);
}

.s7-header .section__title {
  color: #fff;
  margin-top: 0;
}
.s7-header .section__desc {
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0;
}

/* 12-column grid — every row must sum to 12 */
.s7-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: var(--s3);
}

/* Row 1: 5 + 7 */
.s7-r1a {
  grid-column: span 5;
}
.s7-r1b {
  grid-column: span 7;
}

/* Row 2: 4 + 4 + 4 */
.s7-r2a {
  grid-column: span 4;
}
.s7-r2b {
  grid-column: span 4;
}
.s7-r2c {
  grid-column: span 4;
}

/* Row 3: 7 + 5 — alternates the wide side */
.s7-r3a {
  grid-column: span 7;
}
.s7-r3b {
  grid-column: span 5;
}

/* Row 4: 4 + 4 + 4 */
.s7-r4a {
  grid-column: span 4;
}
.s7-r4b {
  grid-column: span 4;
}
.s7-r4c {
  grid-column: span 4;
}

/* Cell base */
.s7-cell {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.s7-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.s7-cell:hover img {
  transform: scale(1.06);
}

/* Overlay — always visible, deepens on hover */
.s7-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(13, 18, 56, 0.72) 0%,
    rgba(13, 18, 56, 0.1) 55%,
    transparent 100%
  );
  transition: background var(--ease-slow);
}

.s7-cell:hover .s7-overlay {
  background: linear-gradient(
    0deg,
    rgba(13, 18, 56, 0.88) 0%,
    rgba(13, 18, 56, 0.25) 60%,
    transparent 100%
  );
}

/* Tag — always visible */
.s7-tag {
  position: absolute;
  top: var(--s3);
  left: var(--s3);
  padding: 0.22rem 0.65rem;
  border-radius: var(--r-full);
  background: rgba(216, 27, 125, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(216, 27, 125, 0.45);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Caption — slides up on hover */
.s7-caption {
  position: absolute;
  bottom: var(--s4);
  left: var(--s4);
  right: var(--s4);
  color: #fff;
  font-size: var(--sz-xs);
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity var(--ease),
    transform var(--ease);
}

.s7-cell:hover .s7-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .s7-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
  }

  /* Row 1: 3+3 */
  .s7-r1a {
    grid-column: span 3;
  }
  .s7-r1b {
    grid-column: span 3;
  }

  /* Row 2: 2+2+2 */
  .s7-r2a,
  .s7-r2b,
  .s7-r2c {
    grid-column: span 2;
  }

  /* Row 3: 3+3 */
  .s7-r3a {
    grid-column: span 3;
  }
  .s7-r3b {
    grid-column: span 3;
  }

  /* Row 4: 2+2+2 */
  .s7-r4a,
  .s7-r4b,
  .s7-r4c {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .s7-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
    gap: var(--s2);
  }

  .s7-r1a,
  .s7-r1b,
  .s7-r2a,
  .s7-r2b,
  .s7-r2c,
  .s7-r3a,
  .s7-r3b,
  .s7-r4a,
  .s7-r4b,
  .s7-r4c {
    grid-column: span 1;
  }
}

/* ---------- FOOTER BASE ---------- */
.site-footer {
  background: linear-gradient(
    160deg,
    var(--navy) 0%,
    var(--navy-mid) 55%,
    #3a0d28 100%
  );
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
}

/* ---------- MAIN GRID : 3 COLUMNS ---------- */
.footer__main {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.7fr 0.9fr 1.4fr;
  /* 3 columns — no wasted 4th */
  gap: 2.5rem;
  align-items: start;
}

/* ---------- COLUMN 1 : BRAND ---------- */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer__logo-emblem {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(196, 20, 114, 0.15);
  border: 1px solid rgba(196, 20, 114, 0.25);
  flex-shrink: 0;
}
.footer__logo-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.footer__logo-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.footer__logo-board {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.footer__logo-slogan {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__affil {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.footer__affil-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.footer__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 30ch;
}

/* stats */
.footer__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.footer__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 1rem;
}
.footer__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 1rem;
  flex-shrink: 0;
}
.footer__stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.footer__stat-num span {
  color: var(--pink-light);
}
.footer__stat-lbl {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* socials */
.footer__socials {
  display: flex;
  gap: 0.5rem;
}
.footer__social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  text-decoration: none;
}
.footer__social:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

/* ---------- COLUMN 2 & 3 : HEADINGS ---------- */
.footer__col-head {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  position: relative;
}
.footer__col-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 999px;
}

/* ---------- NAV LIST ---------- */
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav-list a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.58);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 3px 0;
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer__nav-list a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.footer__nav-list a:hover {
  color: #fff;
  padding-left: 6px;
}
.footer__nav-list a:hover::before {
  opacity: 1;
}

/* ---------- CONTACT LIST ---------- */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer__contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(196, 20, 114, 0.15);
  border: 1px solid rgba(196, 20, 114, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-light);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer__contact-icon svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.footer__contact-label {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1px;
}
.footer__contact-value {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.5;
}
.footer__contact-value a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__contact-value a:hover {
  color: var(--pink-light);
}

/* ---------- BOTTOM BAR ---------- */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer__bottom-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
}
.footer__copyright {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin: 0;
}
.footer__copyright a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__copyright a:hover {
  color: var(--pink-light);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__desc {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .footer__main {
    grid-template-columns: 1fr;
    padding: 2.5rem 1rem 2rem;
  }
  .footer__bottom-inner {
    padding-inline: 1rem;
  }
  .footer__stats {
    gap: 0;
  }
}
/* ══ SCROLL REVEAL ══ */
.reveal {
  opacity: 1;
}
@supports (animation-timeline: scroll()) {
  .reveal {
    opacity: 0;
    animation: rev-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
  @keyframes rev-fade {
    to {
      opacity: 1;
    }
  }
}
