/* ═══════════════════════════════════════════════════════════════
   GTS Columbus — style.css
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Custom Properties ─────────────────────────────────── */
:root {
  --crimson:        #E1251B;
  --crimson-dark:   #B81B14;
  --crimson-deep:   #8C1210;
  --near-black:     #231F20;
  --text-dark:      #1A1818;
  --text-body:      #3D3535;
  --text-muted:     #706868;
  --bg-page:        #FFFFFF;
  --bg-off:         #F8F5F3;
  --bg-light:       #F0ECEA;
  --border:         #E5DFDC;
  --shadow-sm:      0 1px 4px rgba(35,31,32,0.08);
  --shadow-md:      0 4px 20px rgba(35,31,32,0.10);
  --shadow-lg:      0 12px 48px rgba(35,31,32,0.14);
  --radius:         10px;
  --radius-lg:      16px;
  --notif-h:        0px;
  --header-h:       72px;
  --transition:     0.22s ease;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: clip; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-page);
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-x: clip;
  max-width: 100%;
}
body.page-visible { opacity: 1; }
html.nav-open, body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── 3. Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 1rem;
}
.eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  margin-top: 6px;
  opacity: 0.65;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-body);
}

/* ── 4. Layout ────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── 5. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn:active { transform: translateY(0); box-shadow: none; }

.btn--sm { padding: 10px 22px; font-size: 0.875rem; }

.btn--crimson {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
}
.btn--crimson:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  box-shadow: 0 4px 16px rgba(225,37,27,0.30);
}

.btn--outline-crimson {
  background: transparent;
  color: var(--crimson);
  border-color: var(--crimson);
}
.btn--outline-crimson:hover {
  background: var(--crimson);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--near-black);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--bg-off);
  border-color: var(--bg-off);
  box-shadow: 0 4px 16px rgba(255,255,255,0.25);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn--dark {
  background: var(--near-black);
  color: #fff;
  border-color: var(--near-black);
}
.btn--dark:hover {
  background: #3a3535;
  border-color: #3a3535;
}

/* ── 6. Alert Bar (admin.css handles admin bar) ───────────── */
#notif-bar {
  background: var(--crimson);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.notif-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 1160px;
  margin: 0 auto;
}

/* ── 7. Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: var(--notif-h);
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header--scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.header-logo { display: flex; align-items: center; flex-shrink: 1; min-width: 0; }
.header-logo-img { height: 44px; width: auto; max-width: 280px; }

.site-nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-mobile-foot { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.nav-link:hover {
  color: var(--crimson);
  background: var(--bg-off);
}
.nav-link.active { color: var(--crimson); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--bg-off); }
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 8. Hero Section ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--near-black);
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.6;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.70) 0%,
    rgba(0, 0, 0, 0.50) 60%,
    rgba(0, 0, 0, 0.40) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 88px 28px 80px;
  max-width: 760px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(225, 37, 27, 0.9);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── 9. Section Defaults ──────────────────────────────────── */
.section {
  padding: 100px 0;
}
.section--sm {
  padding: 72px 0;
}
.section--alt {
  background: var(--bg-off);
  background-image: radial-gradient(circle, rgba(35,31,32,0.055) 1px, transparent 1px);
  background-size: 22px 22px;
}
.section--light {
  background: var(--bg-light);
}
.section--dark {
  background: linear-gradient(145deg, #160f11 0%, var(--near-black) 55%, #2a2022 100%);
  color: #fff;
}
.section--dark h2,
.section--dark h3,
.section--dark .eyebrow { color: #fff; }
.section--dark .eyebrow { color: rgba(225,37,27,0.85); }
.section--dark p { color: rgba(255,255,255,0.82); }

.section--crimson {
  background: linear-gradient(135deg, var(--crimson-deep) 0%, var(--crimson) 55%, var(--crimson-dark) 100%);
  color: #fff;
}
.section--crimson h2 { color: #fff; }
.section--crimson p  { color: rgba(255,255,255,0.9); }

.section__header {
  margin-bottom: 56px;
}
.section__header--centered {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.section__header h2 { margin-bottom: 0.6rem; }
.section__header p  { font-size: 1.05rem; color: var(--text-muted); }

/* ── 10. Two-Column Layout ────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col--wide { grid-template-columns: 1.1fr 0.9fr; }
.two-col__text { }
.two-col__text h2 { margin-bottom: 1.25rem; }
.two-col__text p  { color: var(--text-muted); margin-bottom: 1.25rem; }
.two-col__text .btn { margin-top: 1rem; }

.two-col__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-light);
  box-shadow: var(--shadow-lg);
}
.two-col__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.two-col__visual:hover img {
  transform: scale(1.04);
}

/* Decorative accent bar beside the visual */
.two-col__visual::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: var(--crimson);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.25;
}

/* ── 11. Partnership Badge ────────────────────────────────── */
.partnership {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 1.75rem 0;
  padding: 16px 20px;
  background: var(--bg-light);
  border-left: 3px solid var(--crimson);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.partnership__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.partnership__logo {
  height: 28px;
  width: auto;
}
.partnership__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}
.partnership__text a {
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── 12. Checklist ────────────────────────────────────────── */
.checklist {
  margin: 1.5rem 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.18s ease;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-body);
}
.checklist li:first-child { border-top: 1px solid var(--border); }
.checklist li:hover { transform: translateX(4px); }
.checklist__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.checklist__icon svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}
.checklist__note {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  padding-left: 4px;
}

/* ── 13. Degree at a Glance ───────────────────────────────── */
.degree-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 2.5rem;
}
.degree-col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--crimson);
  display: inline-block;
}
.degree-list { }
.degree-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.975rem;
  color: var(--text-body);
}
.degree-list__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  margin-top: 7px;
}

/* ── 14. Stats Row ────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.stat-item {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── 15. Why Columbus (dark section) ─────────────────────── */
.why-columbus {
  position: relative;
  overflow: hidden;
}
.why-columbus::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: var(--crimson);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}
.why-columbus::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}
.why-columbus__body {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.why-columbus__body h2 { color: #fff; margin-bottom: 1.75rem; }
.why-columbus__body p  { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.why-columbus__statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-style: italic;
  color: rgba(255,255,255,0.95);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem 0;
  margin-bottom: 2rem !important;
}
.why-columbus__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.why-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.why-feature__icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature__icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.75);
}
.why-feature__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* ── 16. About GTS Section ────────────────────────────────── */
.about-gts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.about-gts__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-gts__logo img {
  width: 180px;
  height: auto;
}
.about-gts__text h2 { margin-bottom: 1.25rem; }
.about-gts__text p  { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ── 17. Next Steps Cards ─────────────────────────────────── */
.next-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.next-step-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.next-step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--crimson);
}
.next-step-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--crimson);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 12px;
}
.next-step-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.next-step-card__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.next-step-card .btn { width: 100%; justify-content: center; }

/* ── 18. Final CTA Strip ──────────────────────────────────── */
.cta-strip {
  text-align: center;
  padding: 88px 28px;
}
.cta-strip h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
.cta-strip p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── 19. Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img  { height: 40px; width: auto; max-width: 260px; }
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

.footer-col-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-copy a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-copy a:hover { color: #fff; }

/* ── 20. Scroll Reveal Animations ────────────────────────── */
.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.stagger > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease-out var(--reveal-delay), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) var(--reveal-delay);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* After the reveal transition finishes, JS adds .is-settled — drop the transform
   so the element is no longer a standalone GPU layer that re-rasterizes ("blank,
   then paints in halves") when scrolled offscreen and back into view. */
.reveal.is-settled,
.reveal-scale.is-settled,
.stagger > *.is-settled {
  transform: none;
  transition: none;
  will-change: auto;
}

/* ── 21. Admin overrides ──────────────────────────────────── */
body.admin-mode .site-header {
  top: calc(34px + var(--notif-h));
}

/* ── 21b. Contact Page ────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

/* Form */
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap .eyebrow { margin-bottom: 0.75rem; }
.contact-form-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}
.form-label .optional {
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}

.form-input,
.form-textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-page);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); opacity: 0.7; }
.form-input:focus,
.form-textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(225,37,27,0.10);
}
.form-textarea {
  resize: none;
  min-height: 130px;
  line-height: 1.6;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Greyed-out Send button until Turnstile is solved (and while a send is in flight) */
#contact-submit:disabled,
#contact-submit:disabled:hover {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--crimson);
  border-color: var(--crimson);
  box-shadow: none;
}

/* Success / Error states */
.form-success {
  display: none;
  background: #f0faf4;
  border: 1.5px solid #34c26a;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 16px;
}
.form-success.is-visible { display: block; }
.form-success__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a7a3a;
  margin-bottom: 6px;
}
.form-success p { font-size: 0.9rem; color: #2e7d4a; margin: 0; }

.form-error {
  font-size: 0.825rem;
  color: var(--crimson);
  margin-top: 2px;
}

/* Sidebar cards */
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }

.contact-card {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-card__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--crimson);
  display: inline-block;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.contact-card p:last-child { margin-bottom: 0; }
.contact-card address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 12px;
}
.contact-card a {
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.9rem;
}
.contact-card a:hover { color: var(--crimson-dark); }

/* Map embed */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 14px;
  aspect-ratio: 16 / 9;
  background: var(--bg-light);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Stay connected social row */
.contact-social {
  display: flex;
  gap: 10px;
  margin: 12px 0;
}
.contact-social__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--near-black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.contact-social__btn:hover {
  background: var(--crimson);
  transform: translateY(-2px);
}
.contact-social__btn svg { width: 18px; height: 18px; }
.contact-social__btn.social-btn--empty { display: none; }
body.admin-mode .contact-social__btn.social-btn--empty {
  display: flex;
  opacity: 0.35;
}

/* Institutional contact */
.institutional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.institutional-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-page);
}
.institutional-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.institutional-card address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.institutional-card a {
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.institutional-card a:hover { color: var(--crimson-dark); }

.inst-contacts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.inst-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.inst-detail svg {
  width: 16px;
  height: 16px;
  stroke: var(--crimson);
  fill: none;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.inst-detail__content {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
}

.inst-detail__content a {
  color: var(--text-body);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.inst-detail__content a:hover {
  color: var(--crimson);
  text-decoration-color: var(--crimson);
}

.inst-logo {
  margin-top: 2rem;
  width: 140px;
  opacity: 0.55;
}

.contact-form-wrap h2 { margin-bottom: 0.85rem; }

/* ── 22. Utility ──────────────────────────────────────────── */
.text-crimson { color: var(--crimson); }
.text-center  { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }

/* ── 22b. Links Page ──────────────────────────────────────── */
body.links-body {
  background: var(--bg-off);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.links-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 20px 80px;
}

.links-card {
  width: 100%;
  max-width: 460px;
}

/* Profile block */
.links-profile {
  text-align: center;
  margin-bottom: 28px;
}
.links-profile__logo {
  width: 200px;
  height: auto;
  margin: 0 auto 20px;
}
.links-profile__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.links-profile__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Social icons */
.links-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.links-social__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--near-black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.links-social__btn:hover {
  background: var(--crimson);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(225,37,27,0.30);
}
.links-social__btn svg {
  width: 20px;
  height: 20px;
}
/* hide from visitors until URL is set via admin */
.links-social__btn.social-btn--empty { display: none; }
body.admin-mode .links-social__btn.social-btn--empty {
  display: flex;
  opacity: 0.35;
}

/* Divider */
.links-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 8px 0 24px;
}

/* Link buttons */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 16px;
}
.links-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #fff;
  text-decoration: none;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition), color var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.links-btn:hover {
  border-color: var(--crimson);
  box-shadow: 0 4px 18px rgba(35,31,32,0.10);
  transform: translateY(-1px);
}
.links-btn:active { transform: translateY(0); }
.links-btn__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--bg-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.links-btn__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--crimson);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.links-btn__text { flex: 1; }
.links-btn__label { display: block; }
.links-btn__sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 1px;
}
.links-btn__arrow {
  flex-shrink: 0;
  color: var(--border);
  transition: color var(--transition);
}
.links-btn:hover .links-btn__arrow { color: var(--crimson); }

/* Primary (crimson) variant */
.links-btn--primary {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
}
.links-btn--primary .links-btn__icon {
  background: rgba(255,255,255,0.18);
}
.links-btn--primary .links-btn__icon svg { stroke: #fff; }
.links-btn--primary .links-btn__sub   { color: rgba(255,255,255,0.75); }
.links-btn--primary .links-btn__arrow { color: rgba(255,255,255,0.5); }
.links-btn--primary:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  box-shadow: 0 4px 18px rgba(225,37,27,0.30);
}

/* Section label above a group of links */
.links-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 20px 0 10px 4px;
}

/* Footer */
.links-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
}
.links-footer a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.links-footer a:hover { color: var(--crimson); }

/* Dynamic sections */
.links-dynamic-section {
  margin-bottom: 8px;
}
.links-dyn-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.links-dyn-label-row .links-section-label {
  flex: 1;
  margin-bottom: 0;
}
.links-dyn-admin-btn {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
  font-family: inherit;
}
.links-dyn-admin-btn:hover { border-color: var(--near-black); color: var(--near-black); }
.links-dyn-admin-btn--danger:hover { border-color: #dc2626; color: #dc2626; }

/* Edit/Delete overlay on individual link buttons */
.links-dyn-btn-actions {
  display: flex;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

/* "Add Link" dashed button inside a section */
.links-dyn-add-link {
  width: 100%;
  padding: 10px;
  border: 1.5px dashed var(--border);
  border-radius: 10px;
  background: none;
  color: var(--text-muted);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  font-family: inherit;
}
.links-dyn-add-link:hover { border-color: var(--crimson); color: var(--crimson); }

/* "Add Section" dashed button at page bottom */
.links-dyn-add-section {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 4px;
  border: 2px dashed var(--border);
  border-radius: 10px;
  background: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  font-family: inherit;
}
.links-dyn-add-section:hover { border-color: var(--crimson); color: var(--crimson); }

/* Modal */
.links-dyn-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.links-dyn-modal-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px 24px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.links-dyn-modal-card h3 {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
}
.links-dyn-modal-card label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 14px 0 4px;
}
.links-dyn-modal-card label:first-of-type { margin-top: 0; }
.links-dyn-modal-card input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.15s;
}
.links-dyn-modal-card input:focus { border-color: var(--crimson); }
.links-dyn-modal-btns {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 20px;
}
.links-dyn-modal-save {
  padding: 8px 22px;
  background: var(--crimson);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
}
.links-dyn-modal-save:hover { opacity: 0.88; }
.links-dyn-modal-cancel {
  padding: 8px 16px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
}

/* Admin toggle — override white-on-dark default for light links page background */
body.links-body .admin-toggle-btn {
  border-color: rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.3);
}
body.links-body .admin-toggle-btn:hover {
  border-color: rgba(0,0,0,0.4);
  color: rgba(0,0,0,0.6);
}
body.links-body.admin-mode .admin-toggle-btn {
  color: #b8860b;
  border-color: rgba(184,134,11,0.5);
}

/* ── 23. Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--near-black);
  padding-bottom: 64px;
}

.page-hero--sm {
  min-height: 32vh;
  padding-bottom: 48px;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.38;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(35,31,32,0.4) 0%,
    rgba(35,31,32,0.75) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  width: 100%;
}
.page-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(225,37,27,0.9);
  margin-bottom: 1rem;
}
.page-hero__eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  margin-top: 6px;
  opacity: 0.65;
}
.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.page-hero__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 2rem;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── 24. History / founding block ────────────────────────── */
.founding-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.founding-block__year {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
  opacity: 0.18;
  letter-spacing: -0.03em;
  user-select: none;
}
.founding-block__text h2 { margin-bottom: 1.25rem; }
.founding-block__text p  { color: var(--text-muted); margin-bottom: 1.1rem; }

/* ── 25. Pull quote / callout ────────────────────────────── */
.callout {
  border-left: 4px solid var(--crimson);
  padding: 24px 28px;
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.callout p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

/* ── 26. Experience feature grid ─────────────────────────── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.experience-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.experience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.experience-card__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.experience-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--crimson);
  stroke-width: 1.75;
  fill: none;
}
.experience-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.experience-card__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   43. Program Page
   ══════════════════════════════════════════════════════════════ */

.program-snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.snapshot-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.snapshot-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.4rem;
}

.snapshot-item__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--near-black);
  line-height: 1.4;
}

.curriculum-block {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}

.curriculum-block:first-child {
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
}

.curriculum-block__header {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--crimson);
  margin-bottom: 2rem;
}

.curriculum-block__num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--crimson);
  opacity: 0.2;
  line-height: 1;
}

.curriculum-block__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.curriculum-block__credits {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.curriculum-semesters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2.5rem;
}

.curriculum-semesters--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
}

.curriculum-semester__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.course-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 0.75rem;
  align-items: start;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--bg-light);
}

.course-item:last-child { border-bottom: none; }

.course-item__code {
  grid-column: 1;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--crimson);
  line-height: 1.2;
}

.course-item__name {
  grid-column: 1;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.35;
}

.course-item__credits {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding-top: 0.35rem;
  text-align: right;
}

/* ══════════════════════════════════════════════════════════════
   44. Tuition Page
   ══════════════════════════════════════════════════════════════ */

.tuition-header {
  background: var(--near-black);
  padding: 80px 0 72px;
  min-height: 370px;
  display: flex;
  align-items: center;
  text-align: center;
}

.tuition-header .eyebrow { color: var(--crimson); }

.tuition-header h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
}

.tuition-header p {
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.tuition-stat-band {
  background: var(--crimson);
  padding: 52px 0;
  text-align: center;
}

.tuition-stat__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.tuition-stat__label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-top: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tuition-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.sidebar-sticky {
  position: sticky;
  top: calc(var(--header-h) + var(--notif-h) + 24px);
}

.cost-card {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.cost-card__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--crimson);
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.cost-row:last-child { border-bottom: none; }
.cost-row__label { color: var(--text-muted); }
.cost-row__value { font-weight: 600; color: var(--text-dark); text-align: right; }

.cost-row--total { margin-top: 0.25rem; padding-top: 0.75rem; }
.cost-row--total .cost-row__label { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; }
.cost-row--total .cost-row__value { color: var(--crimson); font-size: 1rem; }

.deposit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.deposit-card__amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--near-black);
  line-height: 1;
}

.deposit-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.deposit-card__notes {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.deposit-card__notes li {
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
}

.deposit-card__notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--crimson);
}

.policy-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.policy-block:first-child { padding-top: 0; }
.policy-block:last-child { border-bottom: none; }

.policy-block__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.policy-block p { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; }
.policy-block p + p { margin-top: 0.6rem; }

.policy-list {
  list-style: none;
  margin-top: 0.75rem;
}

.policy-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
  line-height: 1.5;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--crimson);
}

.payment-method {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.payment-method__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.payment-method p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

.payment-method p + p { margin-top: 0.5rem; }

.transact-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.transact-box__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.transact-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  counter-reset: step;
}

.transact-steps li {
  counter-increment: step;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-body);
  padding: 0.4rem 0;
  line-height: 1.5;
}

.transact-steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--crimson);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.refund-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.refund-table th {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--border);
}

.refund-table td {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--bg-light);
  color: var(--text-body);
}

.refund-table tr:last-child td { border-bottom: none; }

.refund-pct {
  font-weight: 700;
}

.refund-pct--full  { color: #2a7a45; }
.refund-pct--half  { color: #a06800; }
.refund-pct--none  { color: var(--crimson); }

.scholarship-band {
  background: var(--near-black);
  padding: 80px 0;
  text-align: center;
}

.scholarship-band .eyebrow { color: var(--crimson); }
.scholarship-band h2 { color: #fff; margin-bottom: 1rem; }
.scholarship-band p {
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   46. Admissions Page
   ══════════════════════════════════════════════════════════════ */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.audience-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.audience-card__icon {
  width: 40px;
  height: 40px;
  background: var(--bg-off);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--crimson);
}

.audience-card__label {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  padding-top: 0.6rem;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
  list-style: none;
  padding: 0;
}

.criteria-item,
.criteria-grid li {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--crimson);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}

.admissions-steps {
  margin-top: 2.5rem;
}

.admissions-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.admissions-step:last-child { border-bottom: none; }

.admissions-step__num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--crimson);
  opacity: 0.22;
  line-height: 1;
  text-align: center;
  padding-top: 0.15rem;
}

.admissions-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.admissions-step__body {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
}

.admissions-step__body a {
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 480px) {
  .admissions-step { grid-template-columns: 48px 1fr; gap: 0 1rem; }
  .admissions-step__num { font-size: 2.5rem; }
}

/* ══════════════════════════════════════════════════════════════
   47. Tuition Policies
   ══════════════════════════════════════════════════════════════ */

.tuition-policies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.tuition-policies .policy-block {
  padding: 2rem;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.tuition-policies .policy-block:nth-child(even) {
  background: #fff;
}

.tuition-policies .policy-block:first-child {
  padding-top: 2rem;
}

.tuition-policies .policy-block:last-child {
  border-bottom: 1px solid var(--border);
}

.policy-block--full {
  grid-column: 1 / -1;
  background: #fff !important;
  border-top: 3px solid var(--crimson) !important;
}

.questions-section {
  text-align: center;
}

.questions-section h2 { margin-bottom: 1rem; }
.questions-section p {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   45. Mobile Overrides (≤ 768px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .two-col,
  .about-gts {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-col--wide { grid-template-columns: 1fr; }

  /* Stack the photo above its text on mobile for two-col sections that are
     text-first in the DOM, so every image/text section shows the image above
     the copy (sections that are already visual-first stack correctly as-is). */
  #why-columbus .two-col__visual,
  #why .two-col__visual,
  #outcomes .two-col__visual { order: -1; }

  .degree-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .next-steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .section { padding: 72px 0; }

  /* Mobile nav */
  .nav-apply-btn { display: none; }
  .nav-toggle    { display: flex; }
  .header-logo-img { height: 32px; max-width: 220px; }

  /* While the menu is open, pin the header with position:fixed so the scroll
     lock (overflow:hidden on <html>) can't drop the sticky header off-screen
     when the page is scrolled. padding-top compensates for it leaving flow,
     so content doesn't reflow/jump on open or close. */
  body.nav-open .site-header { position: fixed; top: var(--notif-h); left: 0; right: 0; }
  body.nav-open { padding-top: var(--header-h); }

  /* Mobile nav panel — refined editorial */
  .site-nav {
    position: fixed;
    top: calc(var(--notif-h) + var(--header-h));
    left: 0;
    right: 0;
    height: calc(100vh - var(--notif-h) - var(--header-h));
    height: calc(100dvh - var(--notif-h) - var(--header-h));
    background:
      radial-gradient(135% 70% at 100% 0%, rgba(225,37,27,0.06), transparent 55%),
      #fff;
    color: var(--text-dark);
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 28px calc(28px + env(safe-area-inset-bottom));
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 850;
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }
  .site-nav.is-open { transform: translateX(0); }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-links li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .site-nav.is-open .nav-links li { opacity: 1; transform: none; }
  .site-nav.is-open .nav-links li:nth-child(1) { transition-delay: 0.10s; }
  .site-nav.is-open .nav-links li:nth-child(2) { transition-delay: 0.16s; }
  .site-nav.is-open .nav-links li:nth-child(3) { transition-delay: 0.22s; }
  .site-nav.is-open .nav-links li:nth-child(4) { transition-delay: 0.28s; }
  .site-nav.is-open .nav-links li:nth-child(5) { transition-delay: 0.34s; }
  .site-nav.is-open .nav-links li:nth-child(6) { transition-delay: 0.40s; }

  .nav-link {
    display: block;
    width: 100%;
    padding: 15px 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition), padding-left var(--transition);
  }
  .nav-link:hover,
  .nav-link.active {
    color: var(--crimson);
    background: transparent;
    padding-left: 12px;
  }

  /* In-menu footer: Apply CTA + note */
  .nav-mobile-foot {
    display: block;
    width: 100%;
    margin-top: 28px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease 0.46s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.46s;
  }
  .site-nav.is-open .nav-mobile-foot { opacity: 1; transform: none; }
  .nav-mobile-foot .btn { width: 100%; justify-content: center; }
  .nav-mobile-note {
    margin: 16px 0 0;
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--text-muted);
  }
  .nav-mobile-note a {
    color: var(--crimson);
    transition: color var(--transition);
  }
  .nav-mobile-note a:hover { color: var(--crimson-dark); }

  .hero { min-height: 70vh; }
  .hero .hero__content { padding: 72px 36px 64px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Inner page heroes: top-anchored, natural height (no top overflow) */
  .page-hero {
    min-height: auto;
    align-items: flex-start;
    padding-bottom: 48px;
  }
  .page-hero .page-hero__content { padding: 44px 36px 0; }
  .page-hero__title { margin-bottom: 1rem; }
  .page-hero__sub { margin-bottom: 1.75rem; }
  .page-hero__actions { flex-direction: column; }
  .page-hero__actions .btn { width: 100%; justify-content: center; }

  /* Let long button labels wrap instead of overflowing the viewport */
  .btn { white-space: normal; max-width: 100%; text-align: center; }

  /* Center lone CTA buttons that sit beneath text columns */
  .two-col__text .btn,
  .founding-block__text .btn {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .cta-strip { padding: 64px 28px; }
  .cta-strip__actions { flex-direction: column; align-items: center; }
  .cta-strip__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .site-footer { padding-top: 40px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    padding-bottom: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-logo-link { margin-bottom: 12px; }
  .footer-links li { margin-bottom: 8px; }
  .footer-col-heading { margin-bottom: 12px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 16px 0; }

  .partnership { flex-wrap: wrap; }

  .about-gts { grid-template-columns: 1fr; text-align: center; }
  .about-gts__logo img { width: 140px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .founding-block  { grid-template-columns: 1fr; gap: 8px; }
  .contact-layout  { grid-template-columns: 1fr; gap: 40px; }
  .institutional-grid { grid-template-columns: 1fr; }
  .founding-block__year { font-size: 4rem; }

  .program-snapshot { grid-template-columns: repeat(2, 1fr); }
  .curriculum-semesters { grid-template-columns: 1fr; gap: 2rem; }
  .curriculum-semesters--two { grid-template-columns: 1fr; }

  .tuition-layout { grid-template-columns: 1fr; }
  .sidebar-sticky { position: static; }
  .tuition-policies { grid-template-columns: 1fr; }
  .policy-block--full { grid-column: auto; }
  .audience-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  .container, .container--narrow { padding: 0 20px; }
  .next-step-card { padding: 28px 24px; }
  .experience-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 44vh; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   48. Motion & Animations
   ══════════════════════════════════════════════════════════════ */

@keyframes kenBurns {
  from { transform: scale(1)    translate(0, 0); }
  to   { transform: scale(1.07) translate(-1.5%, -1%); }
}

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

@media (prefers-reduced-motion: no-preference) {
  .hero__bg img,
  .page-hero__bg img {
    animation: kenBurns 20s linear infinite alternate;
    transform-origin: center center;
  }

  .hero__headline {
    animation: hero-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
  }
  .hero__sub {
    animation: hero-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
  }
  .hero__actions {
    animation: hero-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both;
  }

  .page-hero__eyebrow,
  .tuition-header .eyebrow {
    animation: hero-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
  }
  .page-hero__title,
  .tuition-header h1 {
    animation: hero-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
  }
  .page-hero__sub,
  .tuition-header p {
    animation: hero-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
  }
  .page-hero__actions {
    animation: hero-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both;
  }
}

/* Disable all animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale,
  .stagger > * {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .two-col__visual img {
    transition: none;
  }
  .checklist li {
    transition: none;
  }
  .btn {
    transition: background var(--transition), color var(--transition), border-color var(--transition);
  }
}
