/* =========================================================
   PREMIUM DESIGN SYSTEM  Â·  "Institutional / Choate-inspired"
   Loaded AFTER main.css + school-theme.css so it wins.
   Re-maps the design tokens to a navy / gold / cream palette,
   introduces a serif display face for headings, and refines
   navigation, hero, cards, buttons, section rhythm & motion.
   Original code & branding â€” no reference assets used.
   ========================================================= */

/* ---------- 1. PALETTE (token remap) ---------- */
:root {
  /* Navy becomes the primary institutional colour (buttons, links) */
  --color-primary-50:  #eef2f7;
  --color-primary-200: #b7c5d8;
  --color-primary-400: #2f527a;
  --color-primary-500: #143253;   /* deep navy â€” main brand */
  --color-primary-600: #0d2240;   /* darker navy */

  /* Gold / bronze accent â€” eyebrows, underlines, fine details */
  --color-gold:        #b8894b;
  --color-gold-soft:   #d8b878;
  --color-gold-tint:   #f3e9d6;

  /* Warm icon chips */
  --color-ns-yellow:       #e7c98f;
  --color-ns-yellow-light: #f4ead4;
  --color-ns-cyan:         #7fa9c9;
  --color-ns-red:          #c07a53;

  /* Grounds â€” cream editorial paper */
  --color-background-1: #fffdf9;
  --color-background-2: #f7f3ec;   /* body ground */
  --color-stroke-2:     #e7dfd2;

  /* Ink */
  --color-secondary: #14202e;

  /* Type scale â€” larger, more editorial display */
  --text-heading-1: 4.75rem;
  --text-heading-2: 3.5rem;
  --text-heading-3: 2.65rem;

  /* Motion */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

.dark {
  --color-primary-400: #5f83ad;
  --color-primary-500: #2f527a;
  --color-primary-600: #143253;
  --color-background-5: #0c141d;
  --color-background-6: #080f17;
}

/* ---------- 2. TYPOGRAPHY ---------- */
/* Fraunces (serif display) for headings; Inter Tight stays for body. */
body {
  font-feature-settings: "ss01", "cv01";
  letter-spacing: -0.005em;
}

h1, h2, h3, h4, h5,
.text-heading-1, .text-heading-2, .text-heading-3,
.text-heading-4, .text-heading-5,
.font-display {
  font-family: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif !important;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.text-heading-1, h1.text-heading-1 { line-height: 1.04; }

/* Editorial eyebrow / kicker label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--color-gold);
  display: inline-block;
}
.eyebrow.is-centered { justify-content: center; }

/* Gold hairline accent under section headings */
.accent-rule {
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-soft) 100%);
}

/* ---------- 3. TOP UTILITY BAR ---------- */
.top-utility-bar {
  background: linear-gradient(90deg, var(--color-primary-600) 0%, var(--color-primary-500) 100%);
  border-bottom: 1px solid color-mix(in oklab, var(--color-gold) 40%, transparent);
}
.erp-pill {
  background: var(--color-gold);
  color: #fff;
}
.erp-pill:hover { background: var(--color-gold-soft); }

/* ---------- 4. FLOATING NAVIGATION ---------- */
.header-one {
  background: color-mix(in oklab, #fffdf9 80%, transparent) !important;
  box-shadow: 0 10px 40px -18px rgba(20, 32, 46, 0.35);
  border: 1px solid color-mix(in oklab, var(--color-gold) 22%, transparent);
  transition: background .35s var(--ease-premium), box-shadow .35s var(--ease-premium),
              max-width .4s var(--ease-premium), border-radius .35s var(--ease-premium);
}
.dark .header-one {
  background: color-mix(in oklab, #0c141d 82%, transparent) !important;
}
/* Solidified state toggled by JS once the hero is scrolled past */
.header-one.is-scrolled {
  background: color-mix(in oklab, #fffdf9 97%, transparent) !important;
  box-shadow: 0 14px 44px -20px rgba(20, 32, 46, 0.5);
}
.dark .header-one.is-scrolled {
  background: color-mix(in oklab, #0c141d 97%, transparent) !important;
}

/* Nav links â€” underline-reveal on hover */
.header-one nav a[data-nav] {
  position: relative;
  font-weight: 500;
}
.header-one nav a[data-nav] > span { position: relative; }
.header-one nav a[data-nav] > span::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-premium);
}
.header-one nav a[data-nav]:hover > span::after,
.header-one nav a[data-nav].is-active > span::after { transform: scaleX(1); }
.header-one nav a[data-nav]:hover { color: var(--color-primary-500) !important; }

/* Dropdown mega-panels for grouped nav items */
.nav-group { position: relative; }
.nav-group > .nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 232px;
  background: #fffdf9;
  border: 1px solid var(--color-stroke-2);
  border-radius: 18px;
  box-shadow: 0 24px 60px -24px rgba(20, 32, 46, 0.4);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease-premium), transform .25s var(--ease-premium);
  z-index: 60;
}
.dark .nav-group > .nav-panel { background: #101a24; border-color: rgba(255,255,255,.08); }
.nav-group:hover > .nav-panel,
.nav-group:focus-within > .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--color-secondary);
  transition: background .2s ease, color .2s ease;
}
.nav-panel a:hover { background: var(--color-gold-tint); color: var(--color-primary-500); }
.dark .nav-panel a { color: var(--color-accent); }
.dark .nav-panel a:hover { background: rgba(184,137,75,.16); }
.nav-caret { width: 14px; height: 14px; opacity: .55; transition: transform .25s ease; }
.nav-group:hover .nav-caret { transform: rotate(180deg); }

/* ---------- 5. BUTTONS ---------- */
.btn-primary {
  background: var(--color-primary-500);
  color: #fff;
  border-radius: 999px;
  transition: transform .25s var(--ease-premium), box-shadow .3s var(--ease-premium), background .3s ease;
}
.btn-primary:hover {
  background: var(--color-primary-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(20, 32, 46, 0.55);
}
/* Gold call-to-action variant */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--color-gold);
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  transition: transform .25s var(--ease-premium), box-shadow .3s var(--ease-premium), background .3s ease;
}
.btn-gold:hover {
  background: var(--color-gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(184, 137, 75, 0.6);
}
/* Ghost / outline link button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1.5px solid color-mix(in oklab, var(--color-secondary) 22%, transparent);
  color: var(--color-secondary);
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  transition: all .28s var(--ease-premium);
}
.btn-ghost:hover {
  border-color: var(--color-primary-500);
  color: var(--color-primary-500);
  transform: translateY(-2px);
}
.dark .btn-ghost { color: var(--color-accent); }

/* Arrow-reveal text link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-primary-500);
}
.link-arrow svg { transition: transform .3s var(--ease-premium); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- 6. CARDS ---------- */
.premium-card {
  background: var(--color-background-1);
  border: 1px solid var(--color-stroke-2);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .4s var(--ease-premium), box-shadow .4s var(--ease-premium), border-color .4s ease;
}
.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -30px rgba(20, 32, 46, 0.45);
  border-color: color-mix(in oklab, var(--color-gold) 45%, var(--color-stroke-2));
}
.dark .premium-card { background: #101a24; border-color: rgba(255,255,255,.07); }
.premium-card img { transition: transform .7s var(--ease-premium); }
.premium-card:hover img { transform: scale(1.05); }

/* Stat tile */
.stat-tile .stat-value {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  color: var(--color-primary-500);
  line-height: 1;
}
.stat-tile .stat-label {
  color: color-mix(in oklab, var(--color-secondary) 62%, transparent);
  font-size: 0.9rem;
}

/* ---------- 7. HERO ---------- */
.hero-premium {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-premium .hero-media,
.hero-premium .hero-media img,
.hero-premium .hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-premium .hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13, 34, 64, 0.55) 0%,
    rgba(13, 34, 64, 0.42) 40%,
    rgba(10, 26, 47, 0.82) 100%);
}
.hero-premium .hero-inner { position: relative; z-index: 2; }
.hero-premium h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.hero-eyebrow { color: var(--color-gold-soft) !important; }
.hero-eyebrow::before { background: var(--color-gold-soft); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.scroll-cue .cue-track {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 999px;
  position: relative;
}
.scroll-cue .cue-dot {
  position: absolute; left: 50%; top: 7px;
  width: 4px; height: 7px; border-radius: 999px;
  background: #fff; transform: translateX(-50%);
  animation: cueMove 1.6s var(--ease-premium) infinite;
}
@keyframes cueMove {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 12px); }
  100% { opacity: 0; }
}

/* ---------- 8. SECTION RHYTHM ---------- */
.section-y { padding-top: clamp(64px, 9vw, 128px); padding-bottom: clamp(64px, 9vw, 128px); }
.section-cream { background: var(--color-background-2); }
.section-navy {
  background: linear-gradient(160deg, var(--color-primary-600) 0%, var(--color-primary-500) 100%);
  color: #fff;
}
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: #fff !important; }
.section-navy .eyebrow { color: var(--color-gold-soft); }
.section-navy .eyebrow::before { background: var(--color-gold-soft); }

/* Subtle divider between stacked bands */
.band-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--color-stroke-2), transparent); }

/* ---------- 9. MOTION REFINEMENTS ---------- */
[data-ns-animate] {
  transition: opacity .7s var(--ease-premium), transform .7s var(--ease-premium), filter .7s var(--ease-premium);
}
@media (prefers-reduced-motion: reduce) {
  [data-ns-animate] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .cue-dot { animation: none; }
  html { scroll-behavior: auto !important; }
}
html { scroll-behavior: smooth; }

/* Image frame with gold offset (editorial imagery) */
.frame-offset { position: relative; }
.frame-offset::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--color-gold);
  border-radius: 24px;
  z-index: 0;
}
.frame-offset img { position: relative; z-index: 1; border-radius: 24px; }

/* Selection colour */
::selection { background: var(--color-gold); color: #fff; }

/* ---------- 10. "OUR DISTINCTIONS" interactive section ---------- */
.distinctions {
  --dist-navy: #0F2D5C;
  --dist-navy-2: #0a2350;
  --dist-gold: #D6A019;
  background: var(--dist-navy) !important;
  padding: clamp(56px, 8vw, 118px) 0;
  overflow: hidden;
}
.dist-grid {
  display: grid;
  grid-template-columns: 1.15fr minmax(300px, 0.85fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
}

/* Rail (now on the right; photo stage on the left) */
.dist-rail { display: flex; flex-direction: row-reverse; gap: clamp(16px, 2.5vw, 34px); order: 2; }
.dist-stage { order: 1; }
.dist-vlabel {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-bottom: 8px;
  font-family: "Inter Tight", sans-serif !important;
}
.dist-vlabel::after {
  content: "";
  position: absolute;
  bottom: 0; right: -1px;   /* becomes the TOP after 180Â° rotation */
  width: 3px; height: 26px;
  background: var(--dist-gold);
  border-radius: 2px;
}
.dist-railmain { flex: 1; }

.dist-steps { position: relative; list-style: none; margin: 0; padding: 0; }
.dist-steps::before {
  content: "";
  position: absolute;
  left: 18px; top: 26px; bottom: 26px;
  width: 2px;
  background: rgba(255, 255, 255, 0.26);
  z-index: 1;
}
.dist-step {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 15px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.dist-node {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: var(--dist-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease-premium);
}
.dist-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transition: opacity 0.25s ease;
}
.dist-shield { display: none; width: 30px; height: 30px; color: var(--dist-gold); }
.dist-step.is-active .dist-node { border-color: transparent; background: transparent; }
.dist-step.is-active .dist-dot { display: none; }
.dist-step.is-active .dist-shield { display: block; }

.dist-step-label {
  font-family: "Inter Tight", sans-serif !important;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.3s var(--ease-premium);
}
.dist-step:hover .dist-step-label { color: #fff; }
.dist-step.is-active .dist-step-label { color: var(--dist-gold); }

.dist-count {
  margin-top: clamp(20px, 3vw, 40px);
  margin-left: 2px;
  width: 78px; height: 78px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
}
.dist-count-cur { font-size: 24px; font-weight: 500; }
.dist-count-sep { font-size: 20px; opacity: 0.6; margin: 0 1px; }
.dist-count-total { font-size: 15px; align-self: flex-end; opacity: 0.75; margin-bottom: 14px; }

/* Right stage */
.dist-stage { position: relative; }
.dist-panel { display: none; margin: 0; }
.dist-panel.is-active { display: block; animation: distFade 0.6s var(--ease-premium); }
@keyframes distFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.dist-photo { width: 100%; overflow: hidden; }
.dist-photo img {
  width: 100%;
  height: clamp(320px, 42vw, 560px);
  object-fit: cover;
  display: block;
}
.dist-caption {
  position: relative;
  z-index: 3;
  background: var(--dist-navy-2);
  color: #fff;
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3vw, 44px);
  width: min(560px, 82%);
  margin: -92px 0 0 auto;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.55);
}
.dist-caption h3 {
  color: #fff !important;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 12px;
}
.dist-caption p { color: rgba(255, 255, 255, 0.82); line-height: 1.6; margin: 0; }

@media (max-width: 991px) {
  .dist-grid { grid-template-columns: 1fr; gap: 36px; }
  .dist-caption { width: min(560px, 92%); margin-top: -64px; }
}
@media (max-width: 520px) {
  .dist-step { gap: 14px; padding: 12px 0; }
  .dist-step-label { font-size: 13px; letter-spacing: 0.1em; }
  .dist-vlabel { display: none; }
}

/* ============================================================
   11. CHOATE-STYLE HOMEPAGE (navy / gold, full rebuild)
   ============================================================ */
.cho-navy {
  --gold: #D6A019;
  --navy: #0F2D5C;
  --navy-2: #0a2350;
  background: var(--navy) !important;
  color: #fff;
  position: relative;
}
.cho-navy h1, .cho-navy h2, .cho-navy h3, .cho-navy h4 { color: #fff; }
.cho-display {
  font-family: "Inter Tight", sans-serif !important;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold) !important;
  line-height: 0.92;
  letter-spacing: -0.015em;
}
.cho-kicker {
  display: block;
  font-family: "Fraunces", Georgia, serif !important;
  color: var(--gold);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  margin-bottom: 0.35em;
}

/* ============================================================
   HOME HERO v2 — full-width image slider (Trident style)
   ============================================================ */
.th-hero { position: relative; min-height: clamp(560px, 90vh, 880px); overflow: hidden; background: #0F2D5C; }
.th-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; background-size: cover; background-position: center; display: flex; align-items: center; pointer-events: none; }
.th-slide.is-active { opacity: 1; z-index: 1; pointer-events: auto; }
.th-slide-inner { width: 100%; padding-top: clamp(120px, 15vh, 175px); padding-bottom: clamp(110px, 15vh, 175px); }
.th-slide-dash { display: block; width: 54px; height: 4px; border-radius: 2px; background: #D6A019; margin-bottom: clamp(18px, 2.4vw, 28px); }
.th-slide-head { font-family: "Inter Tight", sans-serif !important; font-weight: 800 !important; text-transform: uppercase; color: #fff; font-size: clamp(2.3rem, 5.6vw, 5rem); line-height: 1.02; letter-spacing: -0.02em; margin: 0 0 clamp(16px, 2vw, 24px); max-width: 15ch; }
.th-slide-head .g { color: #D6A019; }
.th-slide-head b { color: #D6A019; font-weight: inherit; }
.th-slide-sub { color: rgba(255, 255, 255, 0.9); max-width: 540px; font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.62; margin: 0 0 clamp(26px, 3vw, 36px); }
.th-slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.th-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; font-weight: 700; border-radius: 8px; font-size: 0.95rem; transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease; }
.th-btn svg { width: 16px; height: 16px; }
.th-btn--gold { background: #D6A019; color: #0F2D5C; }
.th-btn--gold:hover { background: #e6b53a; transform: translateY(-2px); }
.th-btn--outline { border: 1px solid rgba(255, 255, 255, 0.6); color: #fff; }
.th-btn--outline:hover { background: rgba(255, 255, 255, 0.12); }
.th-arrow { position: absolute; top: 46%; z-index: 3; width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.45); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background 0.25s ease, color 0.25s ease; }
.th-arrow svg { width: 22px; height: 22px; }
.th-arrow--prev { left: clamp(10px, 1.5vw, 24px); }
.th-arrow--next { right: clamp(10px, 1.5vw, 24px); }
.th-arrow:hover { background: #D6A019; color: #0F2D5C; border-color: #D6A019; }
.th-dots { position: absolute; bottom: clamp(92px, 12vh, 128px); left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 9px; }
.th-dot { width: 30px; height: 4px; border: 0; padding: 0; border-radius: 2px; background: rgba(255, 255, 255, 0.4); cursor: pointer; transition: background 0.25s ease, width 0.25s ease; }
.th-dot.on { background: #D6A019; width: 40px; }

/* Feature strip (floating card) */
.th-features { position: relative; z-index: 4; margin-top: clamp(-84px, -6vw, -56px); }
.th-features-card { background: #fff; border-radius: 14px; box-shadow: 0 26px 60px -26px rgba(6, 15, 36, 0.4); display: grid; grid-template-columns: repeat(5, 1fr); overflow: hidden; }
.th-feature { display: flex; align-items: flex-start; gap: 14px; padding: clamp(20px, 2vw, 30px); border-left: 1px solid #eef0f4; }
.th-feature:first-child { border-left: 0; }
.th-feature-ic { width: 38px; height: 38px; color: #0F2D5C; flex-shrink: 0; }
.th-feature-ic svg { width: 100%; height: 100%; }
.th-feature b { display: block; color: #14213a; font-size: 0.98rem; font-weight: 700; margin-bottom: 3px; }
.th-feature span { color: #7a7f8a; font-size: 0.84rem; line-height: 1.4; }

/* Welcome section */
.th-welcome { background: #fff; padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 7vw, 90px); }
.th-welcome-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.th-welcome-media { margin: 0; border-radius: 16px; overflow: hidden; }
.th-welcome-media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }
.th-welcome-kicker { display: block; color: #b8860b; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; margin-bottom: 8px; }
.th-welcome-body h2 { font-family: "Fraunces", Georgia, serif !important; color: #14213a !important; font-weight: 600; font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 18px; line-height: 1.12; }
.th-welcome-body > p { color: #555; line-height: 1.75; margin: 0 0 clamp(24px, 3vw, 32px); max-width: 560px; }
.th-welcome-stats { display: flex; flex-wrap: wrap; gap: clamp(22px, 3vw, 44px); margin-bottom: clamp(26px, 3vw, 34px); }
.th-wstat b { display: block; font-family: "Inter Tight", sans-serif; font-weight: 800; color: #0F2D5C; font-size: clamp(1.4rem, 2vw, 1.9rem); line-height: 1; }
.th-wstat span { color: #7a7f8a; font-size: 0.86rem; }

@media (max-width: 991px) {
  .th-features-card { grid-template-columns: repeat(2, 1fr); }
  .th-feature { border-left: 0; border-top: 1px solid #eef0f4; }
  .th-feature:first-child, .th-feature:nth-child(2) { border-top: 0; }
  .th-welcome-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .th-features-card { grid-template-columns: 1fr; }
  .th-feature:nth-child(2) { border-top: 1px solid #eef0f4; }
  .th-arrow { display: none; }
}

/* Hero — premium navy/gold, split heading + crossfade slider */
.cho-hero {
  position: relative;
  overflow: hidden;
  /* top padding must clear the fixed header (~130px) + breathing space */
  padding: clamp(156px, 15vh, 190px) 0 clamp(44px, 5vh, 72px);
}
.cho-hero.cho-navy {
  background:
    radial-gradient(85% 75% at 80% 6%, rgba(70, 110, 180, 0.16) 0%, rgba(13, 43, 94, 0) 55%),
    radial-gradient(75% 90% at 6% 34%, rgba(40, 70, 130, 0.16) 0%, rgba(13, 43, 94, 0) 60%),
    #0F2D5C !important;
}

/* decorative background: faint seal watermark + dot texture */
.cho-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.cho-hero-seal {
  position: absolute; left: -230px; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 60px rgba(255, 255, 255, 0.014);
}
.cho-hero-seal::before {
  content: "ALFAID"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: "Fraunces", Georgia, serif; font-weight: 600;
  font-size: 104px; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.028);
}
.cho-hero-grid-tex {
  position: absolute; right: 3%; top: 18%; width: 320px; height: 300px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1.4px, transparent 1.6px);
  background-size: 22px 22px; opacity: 0.5;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
          mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
}

/* layout */
.cho-hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.24fr;
  gap: clamp(24px, 3.5vw, 52px);
  align-items: center;
  padding-left: max(24px, calc((100vw - 1290px) / 2));
  padding-right: max(24px, calc((100vw - 1290px) / 2));
}
.cho-hero-left { padding-top: clamp(4px, 1vw, 14px); }

/* gold dash accent */
.cho-hero-dash { display: block; width: 46px; height: 5px; border-radius: 3px; background: var(--gold); margin-bottom: clamp(18px, 2vw, 26px); }

/* heading + crossfade copy */
.cho-hero-copy { position: relative; }
.cho-slide-text { display: none; }
.cho-slide-text.is-active { display: block; animation: choHeroIn 0.7s var(--ease-premium, ease); }
@keyframes choHeroIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.cho-hero-head {
  margin: 0;
  font-family: "Inter Tight", "Inter", system-ui, sans-serif !important;
  font-weight: 800 !important; text-transform: uppercase;
  line-height: 0.96; letter-spacing: -0.02em;
  font-size: clamp(1.95rem, 4.6vw, 3.9rem);
  color: #fff;
}
.cho-hero-head .g { color: var(--gold); }
.cho-hero-head b { color: var(--gold); font-weight: inherit; }

/* subtitle */
.cho-hero-sub {
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.62;
}

/* CTA — bordered pill + gold arrow tile */
.cho-view-btn {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: clamp(26px, 3vw, 40px);
  padding: 6px 6px 6px 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px; color: #fff; font-weight: 600;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.cho-view-btn i { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--gold); color: var(--navy); border-radius: 5px; box-shadow: 0 8px 22px -8px rgba(243, 197, 24, 0.7); }
.cho-view-btn:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.5); }

/* slider dots */
.cho-hero-dots { display: flex; align-items: center; gap: 10px; margin-top: clamp(26px, 3.5vw, 42px); }
.cho-hero-dot { width: 26px; height: 4px; padding: 0; border: 0; border-radius: 3px; background: rgba(255, 255, 255, 0.22); cursor: pointer; transition: width 0.3s ease, background 0.3s ease; }
.cho-hero-dot.on { width: 40px; background: var(--gold); }
.cho-hero-dot:hover { background: rgba(255, 255, 255, 0.45); }

/* image card — rounded, glowing, floating over a depth panel */
.cho-hero-right { position: relative; }
.cho-hero-right::before {
  content: ""; position: absolute; z-index: 0;
  left: 34px; right: -14px; top: 26px; bottom: -20px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(43, 74, 132, 0.35), rgba(8, 18, 40, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.cho-hero-frame {
  position: relative; z-index: 1;
  aspect-ratio: 4 / 3;
  border-radius: clamp(16px, 1.5vw, 24px);
  overflow: hidden;
  box-shadow:
    0 44px 100px -34px rgba(0, 0, 0, 0.75),
    0 0 60px -26px rgba(70, 120, 200, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.cho-slide-media { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 0.8s ease; }
.cho-slide-media.is-active { opacity: 1; }
.cho-slide-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 991px) {
  .cho-hero-grid { grid-template-columns: 1fr; }
  .cho-hero-right { margin-top: 10px; }
  .cho-hero-right::before { left: 20px; right: -8px; }
  .cho-hero-frame { aspect-ratio: 16 / 10; }
  .cho-hero-seal { width: 440px; height: 440px; left: -200px; }
  .cho-hero-seal::before { font-size: 84px; }
}
@media (max-width: 560px) {
  .cho-hero-head { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .cho-hero-frame { aspect-ratio: 4 / 3; }
}

/* Uniquely + generic split */
.cho-uni-grid, .cho-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.cho-uni-media, .cho-split-media { margin: 0; min-height: clamp(330px, 43vw, 610px); }
.cho-uni-media img, .cho-split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cho-uni-body, .cho-split-body { padding: clamp(48px, 7vw, 108px) clamp(28px, 6vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.cho-uni-body .cho-display { font-size: clamp(2.6rem, 5vw, 4.6rem); margin: 0.1em 0 0.5em; }
.cho-uni-text { max-width: 520px; }
.cho-uni-text p { color: rgba(255, 255, 255, 0.82); margin-bottom: 16px; line-height: 1.7; }
.cho-split-body { max-width: 660px; }
.cho-split-body .cho-display { font-size: clamp(2.4rem, 4.6vw, 4.2rem); margin: 0.1em 0 0.55em; }
.cho-split-body p { color: rgba(255, 255, 255, 0.82); line-height: 1.7; margin-bottom: 26px; max-width: 480px; }
.cho-split--rev .cho-split-media { order: 2; }

/* Academics link directory (Brown-style) */
.cho-acad { position: relative; overflow: hidden; background: #0F2D5C; padding: clamp(56px, 8vh, 112px) 0; }
.cho-acad-bg { display: none; }
.cho-acad::after { display: none; }
.cho-acad-inner {
  position: relative; z-index: 1;
  max-width: 1290px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px);
  display: grid; grid-template-columns: 0.82fr 1.08fr; gap: clamp(30px, 4vw, 66px); align-items: start;
}
.cho-acad-title {
  font-family: "Fraunces", Georgia, serif; font-weight: 600; color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem); line-height: 1.06; letter-spacing: -0.01em; margin: 0 0 0.5em;
}
.cho-acad-sub {
  font-family: "Fraunces", Georgia, serif; font-style: italic; color: var(--gold);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.42; max-width: 440px; margin: 0 0 clamp(26px, 3.5vw, 46px);
}
.cho-acad-links { list-style: none; margin: 0 0 clamp(28px, 4vw, 44px); padding: 0; }
.cho-acad-links li { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.cho-acad-links li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.cho-acad-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: clamp(14px, 1.6vw, 19px) 4px; color: #fff; font-weight: 500;
  font-size: clamp(0.98rem, 1.05vw, 1.1rem); transition: color 0.25s ease, padding-left 0.25s ease;
}
.cho-acad-links a:hover { color: var(--gold); padding-left: 10px; }
.cho-acad-links a svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.cho-acad-btns { display: flex; flex-wrap: wrap; gap: clamp(12px, 1.4vw, 18px); }
.cho-acad-btn {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  min-width: clamp(150px, 17vw, 210px); padding: 18px 24px;
  background: var(--gold); color: var(--navy); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 13px; line-height: 1.3; transition: background 0.25s ease, transform 0.25s ease;
}
.cho-acad-btn:hover { background: #e6b53a; transform: translateY(-2px); }
.cho-acad-figure { position: relative; margin: 0; border: 1px solid rgba(255, 255, 255, 0.18); padding: clamp(12px, 1.4vw, 20px); }
.cho-acad-figure img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 11; object-fit: cover; }
.cho-acad-figure figcaption {
  position: absolute; left: clamp(12px, 1.4vw, 20px); right: clamp(12px, 1.4vw, 20px); bottom: clamp(12px, 1.4vw, 20px);
  background: rgba(6, 15, 36, 0.72); color: rgba(255, 255, 255, 0.92);
  padding: clamp(14px, 1.5vw, 22px); font-size: clamp(0.9rem, 0.98vw, 1.04rem); line-height: 1.5;
}
@media (max-width: 991px) {
  .cho-acad-inner { grid-template-columns: 1fr; }
  .cho-acad-btn { flex: 1; }
}
/* Desktop: stretch the image card to the full height of the section (match the left column). */
@media (min-width: 992px) {
  .cho-acad-inner { align-items: stretch; }
  .cho-acad-figure { height: 100%; box-sizing: border-box; }
  .cho-acad-figure img { height: 100%; aspect-ratio: auto; }
}

/* News & Events (Princeton-style, light band) */
.cho-news { background: #0F2D5C !important; color: #fff; padding: clamp(56px, 8vw, 108px) 0; }
.cho-news-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(30px, 4vw, 56px); }
.cho-news-head h2 {
  font-family: "Inter Tight", sans-serif; font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.01em; font-size: clamp(2rem, 4vw, 3.3rem); color: #fff; margin: 0; line-height: 1;
}
.cho-news-all { display: inline-flex; align-items: center; gap: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; color: #fff; }
.cho-news-all i { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--navy); transition: background 0.25s ease, transform 0.25s ease; }
.cho-news-all i svg { width: 18px; height: 18px; }
.cho-news-all:hover i { background: #e6b53a; transform: translateX(3px); }
.cho-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px); }
.cho-news-media { display: block; overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 16px; background: rgba(255, 255, 255, 0.06); }
.cho-news-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.cho-news-card:hover .cho-news-media img { transform: scale(1.05); }
.cho-news-meta { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 8px; }
.cho-news-card h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; font-size: clamp(1.2rem, 1.5vw, 1.5rem); line-height: 1.26; margin: 0 0 10px; }
.cho-news-card h3 a { color: #fff; transition: color 0.25s ease; }
.cho-news-card h3 a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cho-news-card p { color: rgba(255, 255, 255, 0.7); font-size: 0.98rem; line-height: 1.55; margin: 0; }
@media (max-width: 991px) {
  .cho-news-grid { grid-template-columns: 1fr; gap: 34px; }
  .cho-news-head h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}

/* Social media mosaic (Cornell-style) */
.cho-social { background: #0F2D5C !important; color: #fff; padding: clamp(50px, 7vw, 96px) 0 clamp(44px, 5vw, 72px); }
.cho-social-head { text-align: center; margin-bottom: clamp(30px, 4vw, 52px); }
.cho-social-head h2 { font-family: "Fraunces", Georgia, serif; font-weight: 400; color: #fff; font-size: clamp(1.55rem, 3vw, 2.5rem); margin: 0 0 clamp(20px, 2.6vw, 34px); }
.cho-social-btn { display: inline-block; border: 2px solid var(--gold); color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; padding: 15px 34px; transition: background 0.25s ease, color 0.25s ease; }
.cho-social-btn:hover { background: var(--gold); color: #0F2D5C; }
.cho-social-mosaic {
  max-width: 1680px; margin: 0 auto; padding: 0 clamp(12px, 2vw, 28px);
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 2fr 0.9fr 1.35fr;
  grid-template-rows: repeat(2, clamp(120px, 14.5vw, 200px));
  gap: clamp(6px, 0.7vw, 12px);
  grid-template-areas:
    "a b c d e"
    "a f c g e";
}
.cho-social-mosaic figure { margin: 0; overflow: hidden; }
.cho-social-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.cho-social-mosaic figure:hover img { transform: scale(1.06); }
.m-a { grid-area: a; } .m-b { grid-area: b; } .m-c { grid-area: c; }
.m-d { grid-area: d; } .m-e { grid-area: e; } .m-f { grid-area: f; } .m-g { grid-area: g; }
@media (max-width: 767px) {
  .cho-social-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; grid-auto-rows: 42vw; grid-template-areas: none; }
  .cho-social-mosaic figure { grid-area: auto !important; }
}

/* Our Staff carousel (Monash-style, light band) */
.cho-staff { background: #0F2D5C !important; color: #fff; padding: clamp(48px, 7vw, 92px) 0; }
.cho-staff .cho-staff-title { font-family: "Inter Tight", sans-serif !important; font-weight: 800; color: #fff; font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.01em; margin: 0 0 clamp(26px, 4vw, 46px); }
.cho-staff-viewport { position: relative; }
.cho-staff-track { display: flex; gap: clamp(18px, 2vw, 30px); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.cho-staff-track::-webkit-scrollbar { display: none; }
.cho-staff-card { flex: 0 0 clamp(240px, 23vw, 340px); scroll-snap-align: start; }
.cho-staff-img { aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 18px; background: rgba(255, 255, 255, 0.06); }
.cho-staff-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s ease; }
.cho-staff-card:hover .cho-staff-img img { transform: scale(1.05); }
.cho-staff-card h3 { font-family: "Inter Tight", sans-serif !important; font-weight: 700; font-size: clamp(1.2rem, 1.5vw, 1.5rem); color: #fff; margin: 0 0 8px; }
.cho-staff-card p { color: rgba(255, 255, 255, 0.7); font-size: 0.98rem; line-height: 1.5; margin: 0; }
.cho-staff-controls { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); margin-top: clamp(28px, 4vw, 46px); }
.cho-staff-bars { display: flex; gap: 8px; }
.cho-staff-bar { width: 46px; height: 4px; border: 0; padding: 0; background: rgba(255, 255, 255, 0.28); cursor: pointer; transition: background 0.25s ease; }
.cho-staff-bar.on { background: var(--gold); }
.cho-staff-arrows { display: flex; gap: 14px; }
.cho-staff-arrow { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.4); background: transparent; color: #fff; display: grid; place-items: center; cursor: pointer; transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease; }
.cho-staff-arrow svg { width: 20px; height: 20px; }
.cho-staff-arrow:hover:not([disabled]) { background: #fff; color: var(--navy); border-color: #fff; }
.cho-staff-arrow[disabled] { opacity: 0.35; cursor: default; }
@media (max-width: 767px) {
  .cho-staff-card { flex-basis: 74vw; }
}

/* Explore / Study section (Melbourne-style, navy) */
.cho-explore { background: #0F2D5C; color: #fff; padding: clamp(50px, 7vw, 96px) 0 0; }
.cho-explore-head { max-width: 900px; margin: 0 auto; text-align: center; }
.cho-explore-kicker { display: block; text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
.cho-explore-head h2 { font-family: "Fraunces", Georgia, serif !important; font-weight: 500; color: #fff; font-size: clamp(1.85rem, 3.5vw, 2.95rem); line-height: 1.12; margin: 0 0 clamp(24px, 3vw, 36px); }
.cho-explore-search { display: flex; max-width: 720px; margin: 0 auto; border: 1px solid rgba(255, 255, 255, 0.5); }
.cho-explore-search input { flex: 1; min-width: 0; background: rgba(255, 255, 255, 0.06); border: 0; color: #fff; padding: 16px 20px; font-size: 1rem; outline: none; }
.cho-explore-search input::placeholder { color: rgba(255, 255, 255, 0.55); }
.cho-explore-search button { flex: 0 0 auto; width: 60px; background: var(--gold); color: var(--navy); border: 0; display: grid; place-items: center; cursor: pointer; transition: background 0.25s ease; }
.cho-explore-search button:hover { background: #e6b53a; }
.cho-explore-search button svg { width: 22px; height: 22px; }
.cho-explore-cols { margin-top: clamp(36px, 5vw, 62px); }
.cho-explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.5vw, 24px); }
.cho-explore-card { position: relative; display: block; aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden; color: #fff; }
.cho-explore-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cho-explore-card:hover img { transform: scale(1.06); }
.cho-explore-card-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6, 15, 36, 0.93) 4%, rgba(6, 15, 36, 0.5) 42%, rgba(6, 15, 36, 0.05) 74%); }
.cho-explore-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(18px, 1.6vw, 26px); }
.cho-explore-arrow { color: var(--gold); font-size: 1.4rem; line-height: 1; display: inline-block; margin-bottom: 8px; }
.cho-explore-card h3 { font-family: "Fraunces", Georgia, serif !important; font-weight: 500; font-size: clamp(1.25rem, 1.6vw, 1.6rem); color: #fff; margin: 0 0 8px; line-height: 1.12; }
.cho-explore-card p { color: rgba(255, 255, 255, 0.82); font-size: clamp(0.85rem, 0.95vw, 0.96rem); line-height: 1.45; margin: 0; }
.cho-explore-links { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 3vw, 44px); padding: clamp(28px, 3.5vw, 44px) 0; }
.cho-explore-links a { color: #9db8e6; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: color 0.25s ease; }
.cho-explore-links a span { color: var(--gold); }
.cho-explore-links a:hover { color: #fff; }
@media (max-width: 900px) {
  .cho-explore-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .cho-explore-grid { grid-template-columns: 1fr; }
  .cho-explore-card { aspect-ratio: 16 / 10; }
}

/* Stories (tabbed, Melbourne-style, navy) */
.cho-stories2 { --gold: #D6A019; --navy: #0F2D5C; background: #0F2D5C; color: #fff; padding: clamp(50px, 7vw, 96px) 0; }
.cho-st-tabs { display: flex; border-bottom: 1px solid rgba(255, 255, 255, 0.2); margin-bottom: clamp(36px, 5vw, 64px); }
.cho-st-tab { background: transparent; border: 0; color: rgba(255, 255, 255, 0.65); font-weight: 600; font-size: clamp(0.95rem, 1.1vw, 1.1rem); padding: 14px 26px; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; }
.cho-st-tab:hover { color: #fff; }
.cho-st-tab.is-active { background: var(--gold); color: var(--navy); }
.cho-st-panel { display: none; }
.cho-st-panel.is-active { display: block; }
.cho-st-grid { display: grid; grid-template-columns: 1.05fr 1fr 1fr; gap: clamp(28px, 3vw, 54px); align-items: start; }
.cho-st-intro h2 { font-family: "Fraunces", Georgia, serif !important; font-weight: 500; font-size: clamp(1.7rem, 2.6vw, 2.5rem); color: #fff; margin: 0 0 clamp(16px, 2vw, 24px); line-height: 1.12; }
.cho-st-intro p { color: rgba(255, 255, 255, 0.72); line-height: 1.6; margin: 0 0 clamp(24px, 3vw, 34px); max-width: 360px; }
.cho-st-btn { display: inline-flex; align-items: center; gap: 12px; border: 1px solid rgba(255, 255, 255, 0.5); color: #fff; padding: 14px 26px; font-weight: 600; transition: background 0.25s ease, color 0.25s ease; }
.cho-st-btn span { color: var(--gold); transition: color 0.25s ease; }
.cho-st-btn:hover { background: #fff; color: var(--navy); }
.cho-st-btn:hover span { color: var(--navy); }
.cho-st-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 18px; background: rgba(255, 255, 255, 0.06); }
.cho-st-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.cho-st-card:hover .cho-st-media img { transform: scale(1.05); }
.cho-st-tag { position: absolute; top: 0; left: 0; display: inline-flex; align-items: center; gap: 8px; background: #0a2350; color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 8px 14px; }
.cho-st-tag svg { width: 15px; height: 15px; color: var(--gold); }
.cho-st-card h3 { font-family: "Inter Tight", sans-serif !important; font-weight: 600; font-size: clamp(1.05rem, 1.3vw, 1.3rem); line-height: 1.3; margin: 0 0 12px; }
.cho-st-card h3 a { color: #9db8e6; text-decoration: underline; text-underline-offset: 3px; transition: color 0.25s ease; }
.cho-st-card h3 a:hover { color: var(--gold); }
.cho-st-card p { color: rgba(255, 255, 255, 0.7); font-size: 0.98rem; line-height: 1.55; margin: 0; }
@media (min-width: 992px) and (max-width: 1200px) {
  .cho-st-grid { grid-template-columns: 1fr 1fr; }
  .cho-st-intro { grid-column: 1 / -1; max-width: 640px; }
  .cho-st-intro p { max-width: none; }
}
@media (max-width: 991px) {
  .cho-st-grid { grid-template-columns: 1fr; }
  .cho-st-card { max-width: 560px; }
}

/* ============================================================
   ABOUT US — Brown-style editorial layout
   ============================================================ */
.ab-hero { background-size: cover; background-position: center; color: #fff; padding: clamp(150px, 18vh, 200px) 0 clamp(48px, 7vh, 80px); }
.ab-hero-inner { max-width: 1290px; }
.ab-hero h1 { font-family: "Fraunces", Georgia, serif !important; font-weight: 600; color: #fff !important; font-size: clamp(2.3rem, 5vw, 3.5rem); margin: 0 0 16px; line-height: 1.05; }
.ab-hero p { color: rgba(255, 255, 255, 0.85); max-width: 620px; line-height: 1.6; font-size: clamp(1rem, 1.2vw, 1.15rem); margin: 0; }

.ab-body { background: #fff; color: #1c1c1c; padding: clamp(40px, 6vw, 78px) 0 clamp(60px, 9vw, 120px); }
.ab-grid { display: grid; grid-template-columns: 220px 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.ab-side { position: sticky; top: 120px; }
.ab-nav { display: flex; flex-direction: column; }
.ab-nav a { padding: 12px 2px; border-top: 1px solid #e6e6e6; color: #4a4a4a; font-size: 0.95rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.ab-nav a:last-child { border-bottom: 1px solid #e6e6e6; }
.ab-nav a:hover { color: #0F2D5C; padding-left: 6px; }

.ab-main { min-width: 0; max-width: 780px; }
.ab-intro { color: #333; line-height: 1.75; font-size: clamp(1rem, 1.15vw, 1.12rem); }

.ab-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 3vw, 40px) 20px; border-top: 2px solid #D6A019; border-bottom: 2px solid #D6A019; padding: clamp(28px, 3vw, 40px) 0; margin: clamp(36px, 5vw, 56px) 0; }
.ab-stat-num { display: block; font-weight: 700; font-size: clamp(1.55rem, 2.4vw, 2.1rem); color: #0F2D5C; line-height: 1; }
.ab-stat-lbl { display: block; color: #6a6a6a; font-size: 0.9rem; margin-top: 6px; line-height: 1.35; }

.ab-section { margin-top: clamp(48px, 6vw, 80px); scroll-margin-top: 120px; }
.ab-body .ab-heading { display: flex; align-items: center; gap: 16px; font-family: "Fraunces", Georgia, serif !important; font-weight: 600; color: #0F2D5C !important; font-size: clamp(1.55rem, 2.6vw, 2.25rem); margin: 0 0 16px; line-height: 1.1; }
.ab-dash { width: 34px; height: 2px; background: #D6A019; flex-shrink: 0; }
.ab-lede { color: #555; line-height: 1.7; font-size: clamp(1rem, 1.1vw, 1.08rem); max-width: 640px; margin: 0 0 clamp(22px, 3vw, 34px); }

.ab-item { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid #e6e6e6; align-items: start; }
.ab-item-media img { width: 100%; height: 112px; object-fit: cover; display: block; }
.ab-item-media--portrait img { height: 180px; }
.ab-body .ab-item-body h3 { font-family: "Fraunces", Georgia, serif !important; font-weight: 600; color: #14213a; font-size: clamp(1.15rem, 1.4vw, 1.4rem); margin: 0 0 8px; }
.ab-item-body p { color: #555; line-height: 1.6; font-size: 0.98rem; margin: 0; }
.ab-role { display: block; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; font-weight: 700; color: #b8860b; margin-bottom: 4px; }

.ab-checklist { list-style: none; margin: 0; padding: 0; }
.ab-checklist li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-top: 1px solid #e6e6e6; color: #333; font-size: 1.02rem; line-height: 1.5; }
.ab-checklist li svg { width: 22px; height: 22px; color: #0F2D5C; flex-shrink: 0; margin-top: 1px; }

.ab-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.ab-card { display: block; color: inherit; }
.ab-card-media { overflow: hidden; margin-bottom: 14px; }
.ab-card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform 0.5s ease; }
.ab-card:hover .ab-card-media img { transform: scale(1.05); }
.ab-body .ab-card h3 { font-family: "Fraunces", Georgia, serif !important; color: #14213a; font-size: 1.2rem; margin: 0 0 8px; }
.ab-card p { color: #555; font-size: 0.95rem; line-height: 1.55; margin: 0; }

.ab-cards--toppers { grid-template-columns: repeat(2, 1fr); margin-top: 6px; }
.ab-topper { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border: 1px solid #e6e6e6; border-radius: 12px; }
.ab-topper-av { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; flex-shrink: 0; }
.ab-topper-tag { display: block; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; font-weight: 700; color: #b8860b; }
.ab-body .ab-topper h3 { font-family: "Inter Tight", sans-serif !important; font-size: 1.05rem; color: #14213a; margin: 2px 0; }
.ab-topper p { font-size: 0.9rem; color: #666; margin: 0; }
.ab-more { display: inline-flex; align-items: center; gap: 10px; margin-top: clamp(24px, 3vw, 34px); color: #0F2D5C; font-weight: 700; }
.ab-more svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .ab-grid { grid-template-columns: 1fr; gap: 28px; }
  .ab-side { position: static; }
  .ab-nav { flex-flow: row wrap; gap: 8px 20px; }
  .ab-nav a { border: 0 !important; padding: 4px 0; }
  .ab-main { max-width: none; }
  .ab-cards { grid-template-columns: 1fr; }
  .ab-cards--toppers { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ab-stats { grid-template-columns: repeat(2, 1fr); }
  .ab-item { grid-template-columns: 1fr; }
  .ab-item-media img, .ab-item-media--portrait img { height: 190px; }
}

/* Section heads */
.cho-sec-head { margin-bottom: clamp(36px, 5vw, 64px); }
.cho-sec-head .cho-display { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.cho-voices, .cho-stats, .cho-next { padding: clamp(60px, 8vw, 120px) 0; }

/* Voices */
.cho-voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cho-voice { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; padding: 30px 28px; margin: 0; }
.cho-voice-quote { font-family: "Fraunces", serif; font-size: 54px; line-height: 0.5; color: var(--gold); height: 26px; }
.cho-voice blockquote { color: rgba(255, 255, 255, 0.9); line-height: 1.65; margin: 0 0 22px; font-size: 1.02rem; }
.cho-voice figcaption { display: flex; align-items: center; gap: 12px; }
.cho-voice-av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; flex-shrink: 0; }
.cho-voice figcaption b { display: block; color: #fff; }
.cho-voice figcaption small { color: rgba(255, 255, 255, 0.6); }

/* Marquee */
.cho-marquee-wrap { padding: clamp(50px, 7vw, 100px) 0; overflow: hidden; }
.cho-marquee { overflow: hidden; white-space: nowrap; margin-bottom: clamp(30px, 4vw, 54px); }
.cho-marquee-track { display: inline-flex; gap: 0.4em; animation: choMarquee 28s linear infinite; will-change: transform; }
.cho-marquee-track span { font-family: "Inter Tight", sans-serif; font-weight: 800; text-transform: uppercase; font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -0.01em; }
.cho-mq-gold { color: var(--gold); }
.cho-mq-white { color: #fff; }
@keyframes choMarquee { to { transform: translateX(-50%); } }
.cho-marquee-copy { max-width: 640px; margin: 0 auto; text-align: center; }
.cho-lead { font-family: "Fraunces", serif; font-size: clamp(1.2rem, 2vw, 1.6rem); color: #fff; margin-bottom: 14px; }
.cho-marquee-copy p:last-child { color: rgba(255, 255, 255, 0.75); line-height: 1.7; }

/* Opportunity stats */
.cho-stats-head { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.cho-stats-head p { color: rgba(255, 255, 255, 0.75); margin-top: 14px; line-height: 1.7; }
.cho-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(36px, 5vw, 60px); }
.cho-stat { text-align: center; padding: 24px 12px; border-left: 1px solid rgba(255, 255, 255, 0.12); }
.cho-stat:first-child { border-left: 0; }
.cho-stat-val { font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--gold); line-height: 1; }
.cho-stat-lbl { color: rgba(255, 255, 255, 0.8); margin-top: 8px; font-size: 0.95rem; }

/* Support / stories slider */
.cho-support { padding: clamp(50px, 7vw, 96px) 0 clamp(50px, 7vw, 90px); }
.cho-support-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 54px); align-items: center; margin-bottom: clamp(36px, 5vw, 58px); }
.cho-support-media { margin: 0; overflow: hidden; aspect-ratio: 16 / 10; }
.cho-support-media img { width: 100%; height: 100%; object-fit: cover; }
.cho-support-intro .cho-display { font-size: clamp(2.6rem, 5vw, 4.4rem); margin: 0.05em 0 0.5em; }
.cho-support-intro p { color: rgba(255, 255, 255, 0.8); line-height: 1.7; max-width: 460px; }
.cho-stories-track { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; }
.cho-stories-track::-webkit-scrollbar { display: none; }
.cho-story { margin: 0; flex: 0 0 clamp(210px, 26vw, 278px); }
.cho-story-img { aspect-ratio: 3 / 4; overflow: hidden; }
.cho-story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-premium); }
.cho-story:hover .cho-story-img img { transform: scale(1.05); }
.cho-story figcaption { padding: 14px 2px; }
.cho-story figcaption b { display: block; color: #fff; font-family: "Fraunces", serif; font-size: 1.15rem; }
.cho-story figcaption small { color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }

/* What's next CTA tiles */
.cho-next-head { text-align: center; margin-bottom: clamp(36px, 5vw, 60px); }
.cho-next-head .cho-display { font-size: clamp(2.6rem, 5vw, 4.4rem); }
.cho-next-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 840px; margin: 0 auto; }
.cho-tile { position: relative; height: 120px; overflow: hidden; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; }
.cho-tile-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 26, 47, 0.85), rgba(10, 26, 47, 0.4)); transition: background 0.3s ease; }
.cho-tile:hover .cho-tile-scrim { background: linear-gradient(90deg, rgba(10, 26, 47, 0.9), rgba(10, 26, 47, 0.55)); }
.cho-tile-label { position: relative; z-index: 2; color: #fff; font-weight: 600; font-size: 1.3rem; text-decoration: underline; text-underline-offset: 4px; font-family: "Fraunces", serif; }
.cho-tile-ic { position: relative; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; transition: transform 0.25s var(--ease-premium); }
.cho-tile:hover .cho-tile-ic { transform: scale(1.08); }

/* Responsive */
@media (max-width: 991px) {
  .cho-hero-grid, .cho-uni-grid, .cho-split, .cho-support-head { grid-template-columns: 1fr; }
  .cho-split--rev .cho-split-media { order: 0; }
  .cho-voices-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .cho-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cho-stat { border-left: 0; }
  .cho-voices-grid { grid-template-columns: 1fr; }
  .cho-hero-actions { width: 100%; justify-content: space-between; gap: 16px; }
}
@media (max-width: 600px) {
  .cho-next-tiles { grid-template-columns: 1fr; }
}

/* ============================================================
   12. HEADER â€” Choate-style navy header (utility + nav + mega)
   ============================================================ */
.top-utility-bar { display: none !important; }

.cho-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #fff; color: #0F2D5C;
  font-family: "Inter Tight", sans-serif;
  box-shadow: 0 2px 20px -6px rgba(0, 0, 0, 0.14);
}
/* Navy utility strip sits above the white nav bar */
.cho-utility { background: #0F2D5C; }
/* Neutralise the theme's floating pill: the bar is now a static row */
.cho-header .header-one {
  position: static !important; transform: none !important;
  max-width: 100% !important; width: 100% !important; margin: 0 !important;
  border-radius: 0 !important; border: 0 !important; background: transparent !important;
  opacity: 1 !important; box-shadow: none !important;
  -webkit-backdrop-filter: none !important; backdrop-filter: none !important;
}

/* Utility row */
.cho-utility { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.cho-utility-inner { max-width: 100%; margin: 0; padding: 9px clamp(18px, 4vw, 54px); display: flex; justify-content: flex-end; gap: clamp(16px, 2.4vw, 34px); }
.cho-utility a { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.cho-utility a svg { width: 15px; height: 15px; }
.cho-utility a:hover { color: #D6A019; }

/* Main bar */
.cho-bar { max-width: 1320px; margin: 0 auto; padding: 10px clamp(18px, 4vw, 54px) !important; display: flex; align-items: center; gap: 24px; }
.cho-logo { flex-shrink: 0; display: flex; align-items: center; gap: 12px; }
.cho-logo-mark {
  height: clamp(42px, 4.6vw, 56px); width: clamp(42px, 4.6vw, 56px);
  aspect-ratio: 1; flex-shrink: 0; object-fit: cover; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 6px 16px -8px rgba(0, 0, 0, 0.6);
}
.cho-logo-text {
  font-family: "Inter Tight", sans-serif; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.005em; line-height: 1.04; font-size: clamp(0.82rem, 0.95vw, 1rem);
  color: #0F2D5C; max-width: 210px;
}
/* legacy monochrome wordmark (footer / mobile drawer): show real colours on a white chip */
.footer.footer-three .site-logo, .sidebar-head .site-logo { filter: none; background: #fff; border-radius: 12px; padding: 6px 10px; }

/* Nav */
.cho-nav { margin-left: auto; }
.cho-nav > ul { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 30px); list-style: none; margin: 0; padding: 0; }
.cho-nav > ul > li { position: relative; }
.cho-nav a { display: inline-flex; align-items: center; gap: 6px; color: #16233f; font-size: 13.5px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; padding: 22px 2px; transition: color 0.2s; }
.cho-nav a > span { position: relative; }
.cho-nav a > span::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: #D6A019; transform: scaleX(0); transform-origin: left; transition: transform 0.28s var(--ease-premium); }
.cho-nav a:hover, .header-one .cho-nav a[data-nav]:hover { color: #0F2D5C !important; }
.cho-nav a:hover > span::after, .cho-nav a.is-active > span::after { transform: scaleX(1); }
.cho-nav a.is-active { color: #D6A019; }
.cho-caret { width: 13px; height: 13px; opacity: 0.7; transition: transform 0.25s; }
.cho-has-mega:hover .cho-caret { transform: rotate(180deg); }

/* Mega dropdown */
/* Clean, minimal dropdown (transparent panel, subtle border + shadow) */
.cho-mega { position: absolute; left: 0; top: 100%; min-width: 250px; background: rgba(255, 255, 255, 0.98); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-top: 2px solid #D6A019; box-shadow: 0 24px 44px -20px rgba(15, 45, 92, 0.28); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.2s ease, transform 0.2s ease; z-index: 60; padding: 6px 0; }
.cho-has-mega:hover .cho-mega, .cho-has-mega:focus-within .cho-mega { opacity: 1; visibility: visible; transform: none; }
.cho-mega-list { list-style: none; margin: 0; padding: 0; }
.cho-mega-list li { border-bottom: 1px solid rgba(15, 45, 92, 0.08); }
.cho-mega-list li:last-child { border-bottom: 0; }
.cho-mega-list a { display: block; color: #16233f; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 12.5px; padding: 12px 24px; transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease; }
.cho-mega-list a:hover { background: transparent; color: #D6A019; padding-left: 30px; }

/* Right cluster */
.cho-bar-right { display: flex; align-items: center; gap: 14px; }
.cho-search-wrap { position: relative; }
.cho-search-btn { width: 40px; height: 40px; border-radius: 50%; background: #eef0f5; color: #0F2D5C; display: grid; place-items: center; cursor: pointer; border: 0; transition: background 0.2s, color 0.2s; }
.cho-search-btn:hover { background: #D6A019; color: #0F2D5C; }
.cho-search-btn svg { width: 18px; height: 18px; }
.cho-search-pop { position: absolute; right: 0; top: calc(100% + 14px); width: min(390px, 88vw); background: rgba(255, 255, 255, 0.82); -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4); border: 1px solid rgba(15, 45, 92, 0.1); border-radius: 16px; overflow: hidden; box-shadow: 0 30px 70px -30px rgba(6, 15, 36, 0.55); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s; z-index: 70; }
.cho-search-wrap.open .cho-search-pop { opacity: 1; visibility: visible; transform: none; }
.cho-search-form { display: flex; align-items: center; gap: 11px; padding: 13px 18px; border-bottom: 1px solid rgba(15, 45, 92, 0.14); }
.cho-search-form-ic { width: 18px; height: 18px; color: #0F2D5C; flex-shrink: 0; opacity: 0.75; }
.cho-search-pop input#siteSearchInput { flex: 1; width: 100%; border: 0; outline: 0; background: transparent; font-size: 15px; color: #0F2D5C; font-weight: 500; }
.cho-search-pop input#siteSearchInput::placeholder { color: rgba(15, 45, 92, 0.45); font-weight: 400; }
.cho-search-results { max-height: 62vh; overflow-y: auto; overscroll-behavior: contain; }
.cho-search-results::-webkit-scrollbar { width: 6px; }
.cho-search-results::-webkit-scrollbar-thumb { background: rgba(15, 45, 92, 0.2); border-radius: 6px; }
.cho-search-item { display: block; padding: 12px 18px; border-bottom: 1px solid rgba(15, 45, 92, 0.09); transition: background 0.18s ease, padding-left 0.18s ease; }
.cho-search-item:last-child { border-bottom: 0; }
.cho-search-item:hover { background: rgba(214, 160, 25, 0.12); padding-left: 24px; }
.cho-search-item-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cho-search-item-title { font-family: "Inter Tight", sans-serif; font-weight: 700; color: #0F2D5C; font-size: 14px; line-height: 1.3; }
.cho-search-item-type { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #B8860B; background: rgba(214, 160, 25, 0.16); padding: 3px 9px; border-radius: 999px; flex-shrink: 0; white-space: nowrap; }
.cho-search-item-snip { color: #55617a; font-size: 12.5px; line-height: 1.45; margin-top: 3px; }
.cho-search-msg { padding: 22px 18px; text-align: center; color: #55617a; font-size: 13.5px; }
.cho-apply { display: inline-flex; align-items: center; background: #D6A019; color: #0F2D5C; font-weight: 700; letter-spacing: 0.02em; padding: 11px 22px; border-radius: 999px; transition: background 0.2s, transform 0.2s; }
.cho-apply:hover { background: #e6b53a; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: #eef0f5; border-radius: 50%; border: 0; cursor: pointer; }
.nav-hamburger span:not(.sr-only) { width: 20px; height: 2px; background: #0F2D5C; display: block; }

/* Scrolled: collapse utility row */
.cho-header.is-scrolled .cho-utility { display: none; }
.cho-header.is-scrolled { box-shadow: 0 12px 30px -16px rgba(0, 0, 0, 0.6); }
.cho-header.is-scrolled .cho-nav a { padding-top: 16px; padding-bottom: 16px; }

/* Mobile drawer */
.sidebar { position: fixed; top: 0; right: 0; height: 100vh; width: min(360px, 86vw); background: #0F2D5C; z-index: 9999; transform: translateX(100%); transition: transform 0.35s var(--ease-premium); display: flex; flex-direction: column; }
.sidebar.open { transform: none; }
.sidebar-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.sidebar-head .site-logo { height: 52px; width: 52px; object-fit: cover; border-radius: 50%; background: #fff; filter: none; padding: 0; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25); }
.sidebar-brand { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.sidebar-brand-text { color: #fff; font-family: "Inter Tight", sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; font-size: 0.76rem; line-height: 1.2; min-width: 0; }
.nav-hamburger-close { width: 40px; height: 40px; position: relative; cursor: pointer; background: none; border: 0; }
.nav-hamburger-close span { position: absolute; left: 8px; top: 19px; width: 24px; height: 2px; background: #fff; }
.nav-hamburger-close span:first-child { transform: rotate(45deg); }
.nav-hamburger-close span:last-child { transform: rotate(-45deg); }
.sidebar-nav { flex: 1; overflow-y: auto; padding: 14px; }
.sidebar-nav ul { list-style: none; margin: 0; padding: 0; }
.m-nav-link { display: flex; align-items: center; justify-content: space-between; color: rgba(255, 255, 255, 0.85); padding: 14px 12px; border-radius: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 14px; }
.m-nav-link:hover, .m-nav-link.is-active { background: rgba(255, 255, 255, 0.07); color: #D6A019; }
.sidebar-foot { padding: 18px 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.cho-apply.w-full { width: 100%; justify-content: center; }

@media (max-width: 1100px) {
  .cho-nav { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   13. FOOTER â€” navy institutional
   ============================================================ */
.footer.footer-three,
footer.footer {
  background: #0a2350 !important;
  border: 0 !important;
}
.footer.footer-three .text-secondary,
.footer.footer-three .dark\:text-accent,
.footer.footer-three p,
.footer.footer-three h1, .footer.footer-three h2,
.footer.footer-three h3, .footer.footer-three h4 { color: #fff !important; }
.footer.footer-three .footer-contact p { color: rgba(255, 255, 255, 0.72) !important; }
.footer .footer-link-v2 { color: rgba(255, 255, 255, 0.72) !important; transition: color 0.2s ease; }
.footer .footer-link-v2:hover { color: #D6A019 !important; }
.footer .fc-ic { color: #D6A019 !important; }
.footer .footer-social {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 0 !important;
}
.footer .footer-social:hover { background: #D6A019 !important; color: #0a2350 !important; }
.footer .footer-divider { background: rgba(255, 255, 255, 0.15) !important; }
.footer .footer-credit a { color: #D6A019 !important; }
.footer.footer-three .site-logo { filter: none; width: 84px; height: 84px; object-fit: cover; border-radius: 50%; background: #fff; padding: 0; }
/* Column titles a touch larger, serif for the institutional feel */
.footer.footer-three .col-span-12 > div > p:first-child {
  font-family: "Fraunces", Georgia, serif !important;
  color: #fff !important;
}

/* ============================================================
   SOFT SAGE MIST — global light theme (bg #EEF4F0, navy #0F2D5C, gold #D6A019)
   ============================================================ */
body { background: #EEF4F0 !important; color: #33455f; }
.cho-header { background: #EEF4F0 !important; border-bottom: 1px solid rgba(15, 45, 92, 0.12); box-shadow: 0 3px 18px -8px rgba(15, 45, 92, 0.22) !important; }
.cho-utility { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }

/* All content sections -> sage */
.cho-navy, .cho-acad, .cho-news, .cho-social, .cho-staff, .cho-explore, .cho-stories2,
.th-welcome, .ab-body { background: #EEF4F0 !important; }

/* Default dark text inside the (formerly navy) sections */
.cho-navy, .cho-acad, .cho-news, .cho-social, .cho-staff, .cho-explore, .cho-stories2 { color: #33455f !important; }
.cho-navy p, .cho-navy li, .cho-navy small, .cho-navy blockquote, .cho-navy figcaption,
.cho-hero-sub, .cho-uni-text p, .cho-split-body p, .cho-support-intro p, .cho-marquee-copy p,
.cho-stats-head p, .cho-acad-sub, .cho-acad-links a, .cho-explore-card p, .cho-explore-links a,
.cho-staff-card p, .cho-st-intro p, .cho-st-card p, .cho-news-card p,
.cho-voice blockquote, .cho-voice figcaption small { color: #4a5c76 !important; }

/* Headings -> navy */
.cho-navy h1, .cho-navy h2, .cho-navy h3, .cho-navy h4, .cho-navy .cho-display,
.cho-acad-title, .cho-explore-head h2, .cho-explore-card h3, .cho-explore-col h3,
.cho-staff .cho-staff-title, .cho-staff-card h3, .cho-social-head h2,
.cho-st-intro h2, .cho-st-card h3, .cho-st-card h3 a, .cho-news-head h2, .cho-news-card h3 a,
.cho-news-all { color: #0F2D5C !important; }

/* Accents that stay gold */
.cho-kicker, .cho-explore-kicker, .cho-stat-val, .cho-st-btn span,
.cho-mq-gold, .cho-lead { color: #D6A019 !important; }

/* Borders/dividers (were white) -> subtle navy */
.cho-stat, .cho-explore-cols, .cho-explore-col, .cho-acad-links li, .cho-acad-links li:first-child,
.cho-st-tabs, .cho-news-media, .cho-staff-img, .cho-voice, .cho-explore-search { border-color: rgba(15, 45, 92, 0.16) !important; }
.cho-explore-cols { border-top-color: rgba(15, 45, 92, 0.16) !important; border-bottom-color: rgba(15, 45, 92, 0.16) !important; }

/* Faint white surfaces -> subtle navy tint */
.cho-voice, .cho-news-media, .cho-staff-img, .cho-explore-search input { background: rgba(15, 45, 92, 0.05) !important; }
.cho-explore-search input { color: #0F2D5C !important; }
.cho-explore-search input::placeholder { color: rgba(15, 45, 92, 0.5) !important; }

/* Outline buttons -> navy */
.cho-view-btn, .cho-st-btn { border-color: rgba(15, 45, 92, 0.4) !important; color: #0F2D5C !important; }
.cho-st-btn:hover { background: #0F2D5C !important; color: #fff !important; }
.cho-st-btn:hover span { color: #fff !important; }
.cho-social-btn { color: #0F2D5C !important; }

/* Distinctions stepper on light */
.dist-vlabel, .dist-step-label, .dist-count { color: #4a5c76 !important; }
.dist-step.is-active .dist-step-label { color: #0F2D5C !important; }
.dist-steps, .dist-railmain { border-color: rgba(15, 45, 92, 0.16) !important; }

/* Staff carousel controls on light */
.cho-staff-arrow { border-color: rgba(15, 45, 92, 0.4) !important; color: #0F2D5C !important; }
.cho-staff-arrow:hover:not([disabled]) { background: #0F2D5C !important; color: #fff !important; border-color: #0F2D5C !important; }
.cho-staff-bar { background: rgba(15, 45, 92, 0.25) !important; }
.cho-staff-bar.on { background: #D6A019 !important; }

/* Opportunity stats grid divider */
.cho-stat { border-left-color: rgba(15, 45, 92, 0.16) !important; }

/* Tabs: inactive text darker */
.cho-st-tab { color: rgba(15, 45, 92, 0.6) !important; }
.cho-st-tab:hover { color: #0F2D5C !important; }
.cho-st-tab.is-active { color: #0F2D5C !important; }
/* keep dark overlay boxes (over photos) with white text */
.dist-caption { background: #0F2D5C !important; }
.dist-caption h3, .dist-caption p { color: #fff !important; }
.cho-acad-figure figcaption { color: rgba(255,255,255,0.94) !important; }
.cho-st-tag { color: #fff !important; }
.cho-tile-label { color: #fff !important; }
/* stat labels + remaining faint texts on sage */
.cho-stat-lbl, .cho-support-intro p, .cho-uni-text p, .cho-split-body p, .cho-marquee-copy p:last-child { color: #4a5c76 !important; }
.cho-stat-val { color: #D6A019 !important; }
/* Interior (theme) pages: section backgrounds -> sage, cards stay white */
:where(html:not(.dark)) .bg-background-1:not([class*="rounded"]),
:where(html:not(.dark)) .bg-background-2:not([class*="rounded"]),
:where(html:not(.dark)) .bg-background-3:not([class*="rounded"]),
:where(html:not(.dark)) .bg-background-4:not([class*="rounded"]) { background-color: #EEF4F0 !important; }
/* ============================================================
   FOOTER — Harvard style (dark navy, centered columns + brand)
   ============================================================ */
.hv-footer { background: #0F2D5C !important; color: #fff; padding: clamp(56px, 7vw, 92px) 0 clamp(26px, 3vw, 40px); position: relative; }
.hv-footer .main-container { position: relative; z-index: 1; }
.hv-cols { display: flex; justify-content: space-between; align-items: flex-start; gap: clamp(30px, 4vw, 60px); flex-wrap: wrap; text-align: left; max-width: 1180px; margin: 0 auto; }
.hv-about { flex: 1 1 270px; max-width: 350px; }
.hv-about h3 { font-family: "Inter Tight", sans-serif; font-weight: 700; color: #fff; font-size: 1.05rem; margin: 0 0 18px; }
.hv-about p { color: rgba(255, 255, 255, 0.58); line-height: 1.7; font-size: 0.92rem; margin: 0; }
.hv-col { flex: 0 1 auto; }
.hv-col h3 { font-family: "Inter Tight", sans-serif !important; font-weight: 700; color: #fff !important; font-size: 1.05rem; margin: 0 0 20px; }
.hv-col ul { list-style: none; margin: 0; padding: 0; }
.hv-col li { margin-bottom: 14px; }
.hv-col a { color: rgba(255, 255, 255, 0.62); font-size: 1rem; transition: color 0.2s ease; }
.hv-col a:hover { color: #D6A019; }
.hv-brand { display: flex; flex-direction: column; align-items: center; gap: 5px; margin: 0 auto clamp(40px, 5vw, 62px); text-align: center; width: max-content; }
.hv-brand-mark { width: 74px; height: 74px; border-radius: 50%; background: #fff; object-fit: cover; margin-bottom: 8px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2); }
.hv-brand-name { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: clamp(1.3rem, 2vw, 1.7rem); color: #fff; letter-spacing: 0.01em; }
.hv-brand-sub { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.hv-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; }
.hv-copy { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; margin: 0; }
.hv-socials { display: flex; gap: 20px; }
.hv-socials a { color: rgba(255, 255, 255, 0.6); transition: color 0.2s ease, transform 0.2s ease; }
.hv-socials a:hover { color: #D6A019; transform: translateY(-2px); }
.hv-socials svg { width: 20px; height: 20px; }
@media (max-width: 700px) {
  .hv-cols { gap: 32px 48px; }
  .hv-bottom { justify-content: center; text-align: center; }
}
/* ============================================================
   LATEST NEWS — Yale style (light, on sage)
   ============================================================ */
.yn-section { padding: clamp(50px, 7vw, 96px) 0; }
.yn-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 78px); align-items: start; }
.yn-title { font-family: "Fraunces", Georgia, serif !important; font-weight: 600; color: #0F2D5C !important; font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 clamp(20px, 2.5vw, 30px); }
.yn-featured { display: block; color: inherit; }
.yn-featured-img { overflow: hidden; margin-bottom: 18px; }
.yn-featured-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; transition: transform 0.6s ease; }
.yn-featured:hover .yn-featured-img img { transform: scale(1.04); }
.yn-featured h3 { font-family: "Fraunces", Georgia, serif !important; font-weight: 500; color: #1a1a1a; font-size: clamp(1.4rem, 2vw, 1.9rem); margin: 0 0 8px; line-height: 1.2; transition: color 0.2s ease; }
.yn-featured:hover h3 { color: #0F2D5C; }
.yn-date { font-style: italic; color: #8a8f98; font-size: 0.92rem; }
.yn-explore { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: clamp(18px, 2.4vw, 26px); }
.yn-explore-label { text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; font-weight: 700; color: #6a707c; }
.yn-explore-form { display: flex; margin-left: auto; }
.yn-select { border: 1px solid rgba(15, 45, 92, 0.2); background-color: #f2f5f2; padding: 11px 40px 11px 16px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #33455f; appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230F2D5C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.yn-go { background: #0F2D5C; color: #fff; border: 0; padding: 0 20px; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; }
.yn-go:hover { background: #D6A019; color: #0F2D5C; }
.yn-list { list-style: none; margin: 0; padding: 0; }
.yn-list li { border-bottom: 1px solid rgba(15, 45, 92, 0.15); }
.yn-list a { display: block; padding: clamp(15px, 1.8vw, 21px) 0; }
.yn-list h4 { font-family: "Fraunces", Georgia, serif !important; font-weight: 500; color: #1a1a1a; font-size: clamp(1.1rem, 1.5vw, 1.4rem); margin: 0 0 6px; line-height: 1.25; transition: color 0.2s ease; }
.yn-list a:hover h4 { color: #0F2D5C; }
.yn-list a.is-hl h4 { color: #2b62b8; }
@media (max-width: 900px) { .yn-grid { grid-template-columns: 1fr; } .yn-explore-form { margin-left: 0; } }

/* footer credit link */
.hv-credit { color: #D6A019; }
.hv-credit:hover { color: #fff; text-decoration: underline; }
/* ============================================================
   EVENTS PAGE — Brown editorial grid
   ============================================================ */
.ev-top { padding-top: clamp(110px, 14vh, 148px); background: #EEF4F0; }
.ev-top-img { height: clamp(230px, 30vw, 380px); background-size: cover; background-position: center; }
.ev-top-card { position: relative; margin: clamp(-98px, -8vw, -66px) auto 0; max-width: 860px; background: #EEF4F0; text-align: center; padding: clamp(30px, 4vw, 52px) clamp(24px, 5vw, 64px) clamp(6px, 1vw, 12px); }
.ev-eyebrow { display: block; text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; font-weight: 700; color: #D6A019; margin-bottom: 14px; }
.ev-top-card h1 { font-family: "Fraunces", Georgia, serif !important; font-weight: 600; color: #0F2D5C !important; font-size: clamp(1.7rem, 3.4vw, 2.8rem); line-height: 1.16; margin: 0 0 22px; }
.ev-rule { display: inline-block; width: 62px; height: 2px; background: rgba(15, 45, 92, 0.25); }
.ev-body { background: #EEF4F0; padding: clamp(30px, 4vw, 50px) 0 clamp(60px, 9vw, 110px); }
.ev-intro { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; color: #4a5c76; line-height: 1.8; font-size: clamp(1rem, 1.1vw, 1.1rem); }
.ev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 3vw, 44px) clamp(24px, 3vw, 44px); }
.ev-item-media { display: block; overflow: hidden; margin-bottom: 16px; }
.ev-item-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform 0.5s ease; }
.ev-item:hover .ev-item-media img { transform: scale(1.05); }
.ev-body .ev-item h3 { font-family: "Inter Tight", sans-serif !important; font-weight: 600; font-size: clamp(1.02rem, 1.2vw, 1.18rem); line-height: 1.35; margin: 0 0 14px; color: #16233f; }
.ev-item h3 a { color: #16233f; transition: color 0.2s ease; }
.ev-item h3 a:hover { color: #0F2D5C; }
.ev-dots { display: inline-flex; align-items: center; justify-content: center; gap: 3px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(214, 160, 25, 0.65); }
.ev-dots i { width: 3px; height: 3px; border-radius: 50%; background: #D6A019; }
.ev-empty { grid-column: 1 / -1; text-align: center; padding: 40px 0; color: #667; }
@media (max-width: 900px) { .ev-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ev-grid { grid-template-columns: 1fr; } }
/* ============================================================
   GALLERY — video carousel
   ============================================================ */
.gv-videos { padding: clamp(48px, 7vw, 90px) 0; }
.gv-head { text-align: center; max-width: 680px; margin: 0 auto clamp(28px, 4vw, 48px); }
.gv-head h2 { font-family: "Fraunces", Georgia, serif !important; color: #0F2D5C !important; font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 14px 0 10px; }
.gv-head p { color: #4a5c76; line-height: 1.6; margin: 0; }
.gv-track { display: flex; gap: clamp(16px, 2vw, 26px); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px; }
.gv-track::-webkit-scrollbar { display: none; }
.gv-card { flex: 0 0 clamp(260px, 32vw, 360px); scroll-snap-align: start; margin: 0; background: #06122b; border-radius: 14px; overflow: hidden; box-shadow: 0 18px 44px -22px rgba(6, 15, 36, 0.4); }
.gv-card video { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: contain; background: #06122b; display: block; }
.gv-controls { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 3vw, 44px); margin-top: clamp(24px, 3vw, 40px); }
.gv-bars { display: flex; gap: 8px; }
.gv-bar { width: 40px; height: 4px; border: 0; padding: 0; background: rgba(15, 45, 92, 0.25); cursor: pointer; transition: background 0.2s ease; }
.gv-bar.on { background: #D6A019; }
.gv-arrows { display: flex; gap: 14px; }
.gv-arrow { width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(15, 45, 92, 0.4); background: transparent; color: #0F2D5C; display: grid; place-items: center; cursor: pointer; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease; }
.gv-arrow svg { width: 20px; height: 20px; }
.gv-arrow:hover:not([disabled]) { background: #0F2D5C; color: #fff; border-color: #0F2D5C; }
.gv-arrow[disabled] { opacity: 0.35; cursor: default; }
@media (max-width: 700px) { .gv-card { flex-basis: 78vw; } }

/* Staff photo -> click to reveal description (light overlay) */
.cho-staff-img { position: relative; cursor: pointer; }
.cho-staff-desc { position: absolute; inset: 0; z-index: 3; background: rgba(238, 244, 240, 0.96); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); color: #16233f; padding: clamp(14px, 1.6vw, 22px); display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; overflow: hidden; }
.cho-staff-card.is-open .cho-staff-desc { opacity: 1; visibility: visible; }
.cho-staff-desc-in { max-height: 100%; overflow-y: auto; width: 100%; }
.cho-staff-desc-in::-webkit-scrollbar { width: 4px; }
.cho-staff-desc-in::-webkit-scrollbar-thumb { background: rgba(15, 45, 92, 0.25); border-radius: 4px; }
.cho-staff-qual { display: block; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; font-weight: 700; color: #B8860B; margin-bottom: 8px; }
.cho-staff-desc-in p { font-size: clamp(0.8rem, 0.92vw, 0.92rem); line-height: 1.5; margin: 0; color: #33455f; }

/* FIX: Explore image-cards — text sits on a dark photo, keep it white/legible */
.cho-explore-card h3, .cho-explore-card h3 span, .cho-explore-card h3 b { color: #ffffff !important; }
.cho-explore-card p { color: rgba(255, 255, 255, 0.92) !important; }
.cho-explore-card .cho-explore-arrow { color: #D6A019 !important; }
.cho-explore-card-scrim { background: linear-gradient(to top, rgba(6, 15, 36, 0.96) 4%, rgba(6, 15, 36, 0.6) 46%, rgba(6, 15, 36, 0.12) 78%) !important; }
/* Staff card — 3D flip on click; full (uncropped) photo */
.cho-staff-img { perspective: 1100px; background: #ffffff !important; }
.cho-staff-flip { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1); }
.cho-staff-card.is-open .cho-staff-flip { transform: rotateY(180deg); }
.cho-staff-front, .cho-staff-back { position: absolute; inset: 0; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.cho-staff-front img { width: 100%; height: 100%; object-fit: contain !important; background: #ffffff; display: block; }
.cho-staff-back { transform: rotateY(180deg); background: #eaf1f8; color: #16233f; padding: clamp(16px, 1.8vw, 24px); display: flex; align-items: center; overflow: hidden; }
/* Footer: socials under About, legal links in the bottom row */
.hv-about-socials { justify-content: flex-start; margin-top: 22px; gap: 16px; }
.hv-legal { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); flex-wrap: wrap; }
.hv-legal a { color: rgba(255, 255, 255, 0.62); font-size: 0.9rem; transition: color 0.2s ease; }
.hv-legal a:hover { color: #D6A019; }

/* Legal pages (Privacy / Terms) */
.legal-body { background: #EEF4F0; padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 9vw, 110px); }
.legal-prose { max-width: 820px; margin: 0 auto; color: #33455f; line-height: 1.8; font-size: clamp(1rem, 1.08vw, 1.08rem); }
.legal-prose p { margin: 0 0 16px; }
.legal-body .legal-prose h2 { font-family: "Fraunces", Georgia, serif !important; color: #0F2D5C !important; font-weight: 600; font-size: clamp(1.3rem, 2vw, 1.7rem); margin: clamp(28px, 3vw, 40px) 0 12px; }
.legal-prose a { color: #0F2D5C; text-decoration: underline; text-underline-offset: 2px; }
.legal-prose a:hover { color: #B8860B; }

/* ============================================================
   RESPONSIVE POLISH  (backend-cleanup pass)
   Keeps every element within the viewport on all phone widths.
   ============================================================ */
/* Global safety nets: media & tables never force horizontal scroll */
img, svg, video, iframe { max-width: 100%; }
.premium-scroll-x, .table-wrap { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Header top bar fits narrow phones: Apply lives in the drawer on mobile */
@media (max-width: 700px) {
  .cho-bar { gap: 10px; padding: 10px 16px !important; }
  .cho-bar-right { gap: 10px; }
  .cho-bar-right .cho-apply { display: none; }
  .cho-logo { gap: 10px; }
  .cho-logo-mark { height: 44px; width: 44px; }
  .cho-logo-text { max-width: 52vw; font-size: 0.78rem; }
}
@media (max-width: 400px) {
  .cho-bar { padding: 10px 12px !important; }
  .cho-logo-text { font-size: 0.7rem; max-width: 50vw; letter-spacing: 0; }
  .cho-search-btn { width: 38px; height: 38px; }
  .nav-hamburger { width: 40px; height: 40px; }
}
/* ============================================================
   OUR STAFF — header row + "Apply for a Teaching Role" button + modal
   ============================================================ */
.cho-staff-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin: 0 0 clamp(26px, 4vw, 46px); }
.cho-staff-head .cho-staff-title { margin: 0 !important; }
.cho-staff-apply { display: inline-flex; align-items: center; gap: 10px; background: #D6A019; color: #0F2D5C; font-weight: 700; letter-spacing: 0.02em; font-size: 0.98rem; padding: 13px 24px; border: 0; border-radius: 999px; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; box-shadow: 0 10px 26px -14px rgba(15,45,92,0.5); }
.cho-staff-apply svg { width: 19px; height: 19px; }
.cho-staff-apply:hover { background: #e6b53a; transform: translateY(-2px); }

/* Modal */
.staff-apply-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: flex-start; justify-content: center; padding: clamp(16px, 4vw, 48px) 16px; background: rgba(6, 15, 36, 0.6); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); overflow-y: auto; }
.staff-apply-modal.open { display: flex; }
.staff-apply-box { position: relative; width: 100%; max-width: 640px; background: #fff; border-radius: 18px; padding: clamp(24px, 3.5vw, 40px); box-shadow: 0 40px 90px -30px rgba(6, 15, 36, 0.6); animation: saPop 0.28s ease; }
@keyframes saPop { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.staff-apply-x { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #f1f4f8; color: #0F2D5C; font-size: 24px; line-height: 1; cursor: pointer; transition: background 0.2s ease; }
.staff-apply-x:hover { background: #e2e7ef; }
.staff-apply-title { font-family: "Fraunces", Georgia, serif; color: #0F2D5C; font-weight: 600; font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0 0 8px; }
.staff-apply-sub { color: #55617a; font-size: 0.96rem; line-height: 1.6; margin: 0 0 22px; }
.staff-apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.sa-field { display: flex; flex-direction: column; }
.sa-field.full, .staff-apply-box > form > .sa-field { grid-column: auto; }
.staff-apply-box form > .sa-field { margin-top: 14px; }
.sa-field label { font-size: 0.82rem; font-weight: 600; color: #33455f; margin-bottom: 6px; }
.sa-field label span { color: #D6A019; }
.sa-field input, .sa-field textarea { width: 100%; padding: 11px 14px; border: 1px solid #d8dee8; border-radius: 11px; background: #fff; color: #16233f; font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.sa-field input:focus, .sa-field textarea:focus { outline: 0; border-color: #D6A019; box-shadow: 0 0 0 3px rgba(214, 160, 25, 0.18); }
.sa-field textarea { resize: vertical; }
.staff-apply-submit { margin-top: 20px; width: 100%; background: #0F2D5C; color: #fff; font-weight: 700; letter-spacing: 0.02em; padding: 14px; border: 0; border-radius: 999px; cursor: pointer; transition: background 0.2s ease; }
.staff-apply-submit:hover { background: #16376f; }
.staff-apply-submit:disabled { opacity: 0.6; cursor: default; }
.staff-apply-note { padding: 13px 16px; border-radius: 12px; font-size: 0.94rem; line-height: 1.5; margin-bottom: 18px; }
.staff-apply-note.ok { background: #e9f6ee; color: #0d6b34; }
.staff-apply-note.err { background: #fdecec; color: #b42318; }
@media (max-width: 560px) {
  .staff-apply-grid { grid-template-columns: 1fr; }
  .cho-staff-apply { width: 100%; justify-content: center; }
}

/* ============================================================
   TOP UTILITY BAR — rich layout (address · hours | phone · ERP · socials · dashboard)
   ============================================================ */
.cho-utility-inner { justify-content: space-between !important; gap: 18px; flex-wrap: nowrap; }
.cho-util-left, .cho-util-right { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 24px); min-width: 0; }
.cho-utility .cho-util-item { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 12.5px; font-weight: 500; letter-spacing: 0; text-transform: none; white-space: nowrap; min-width: 0; transition: color 0.2s ease; }
.cho-utility .cho-util-item svg { width: 15px; height: 15px; flex-shrink: 0; color: #D6A019; transition: color 0.2s ease; }
.cho-utility a.cho-util-item:hover { color: #D6A019; }
.cho-util-left .cho-util-item > span { overflow: hidden; text-overflow: ellipsis; }
.cho-util-hours { padding-left: clamp(12px, 1.6vw, 24px); border-left: 1px solid rgba(255,255,255,0.18); }
.cho-utility .cho-util-erp { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #0F2D5C; font-size: 12.5px; font-weight: 700; letter-spacing: 0; text-transform: none; padding: 6px 15px; border-radius: 999px; white-space: nowrap; transition: background 0.2s ease, transform 0.2s ease; }
.cho-utility .cho-util-erp svg { width: 15px; height: 15px; color: #0F2D5C; }
.cho-utility .cho-util-erp:hover { background: #D6A019; transform: translateY(-1px); }
.cho-util-socials { display: inline-flex; align-items: center; gap: 7px; }
.cho-util-socials a { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; display: grid; place-items: center; transition: background 0.2s ease, color 0.2s ease; }
.cho-util-socials svg { width: 14px; height: 14px; }
.cho-util-socials a:hover { background: #D6A019; color: #0F2D5C; }
.cho-utility .cho-util-dash { padding-left: clamp(12px, 1.6vw, 22px); border-left: 1px solid rgba(255,255,255,0.18); }

@media (max-width: 1024px) { .cho-util-hours { display: none; } }
@media (max-width: 880px) {
  .cho-util-left { display: none; }
  .cho-utility-inner { justify-content: flex-end !important; }
  .cho-util-dash { display: none; }
}
@media (max-width: 560px) {
  .cho-util-right { gap: 12px; }
  .cho-util-right > a.cho-util-item > span { display: none; }   /* phone -> icon only */
  .cho-utility .cho-util-erp span { display: inline; }          /* keep ERP label */
}

/* Flat card variant — outlined, no fill (document/notice list pages) */
.premium-card--flat, .dark .premium-card--flat { background: transparent !important; }
.premium-card--flat:hover { transform: none; box-shadow: none; }
/* Mobile-only: hide the hero features strip */
@media (max-width: 767px) {
  .th-features { display: none !important; }
}


.gv-cap { margin-top: 10px; color: #33455f; font-weight: 600; font-size: 0.95rem; text-align: center; }

/* ============================================================
   OUR STAFF — circular-avatar / centered redesign (v2)
   ============================================================ */
.cho-staff-viewport { position: relative; padding: 0 clamp(6px, 3vw, 30px); }
.cho-staff-track { display: flex; gap: clamp(18px, 2.2vw, 34px); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 6px 2px 4px; }
.cho-staff-track::-webkit-scrollbar { display: none; }
.cho-staff-card { flex: 0 0 clamp(230px, 24vw, 310px); scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cho-staff-avatar { width: clamp(150px, 15vw, 196px); height: clamp(150px, 15vw, 196px); border-radius: 50%; overflow: hidden; background: #fff; box-shadow: 0 20px 44px -22px rgba(15, 45, 92, 0.4); margin: 0 auto 22px; }
.cho-staff-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; transition: transform 0.55s ease; }
.cho-staff-card:hover .cho-staff-avatar img { transform: scale(1.06); }
.cho-staff .cho-staff-card h3 { font-family: "Fraunces", Georgia, serif !important; font-weight: 600; font-size: clamp(1.2rem, 1.5vw, 1.5rem); color: #0F2D5C !important; margin: 0 0 7px; line-height: 1.2; }
.cho-staff-role { display: block; color: #B8860B; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.78rem; margin-bottom: 14px; }
.cho-staff .cho-staff-card p.cho-staff-bio { color: #55617a !important; font-size: 0.95rem; line-height: 1.6; margin: 0; max-width: 290px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* Side arrows aligned with the avatars */
.cho-staff-viewport .cho-staff-arrow { position: absolute; top: clamp(81px, 8vw, 106px); transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: 1px solid #d5ddd7; background: #fff; color: #0F2D5C; display: grid; place-items: center; cursor: pointer; box-shadow: 0 12px 30px -14px rgba(15, 45, 92, 0.45); transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease; }
.cho-staff-viewport .cho-staff-arrow svg { width: 20px; height: 20px; }
.cho-staff-viewport .cho-staff-arrow:hover:not([disabled]) { background: #0F2D5C; color: #fff; border-color: #0F2D5C; }
.cho-staff-viewport .cho-staff-arrow[disabled] { opacity: 0.3; cursor: default; }
.cho-staff-arrow--prev { left: -8px; }
.cho-staff-arrow--next { right: -8px; }
.cho-staff-bars, .cho-staff-controls { display: none !important; }
@media (max-width: 560px) {
  .cho-staff-viewport .cho-staff-arrow { top: 95px; }
  .cho-staff-arrow--prev { left: -4px; }
  .cho-staff-arrow--next { right: -4px; }
}