/* ==========================================================================
   CI Neuroscience — site stylesheet
   Design tokens mirror carrickinstitute.com (Webflow):
   Montserrat body / Playfair Display headings, cream + deep purple + gold.
   ========================================================================== */

:root {
  /* Brand */
  --cream: #f7f4e9;
  --cream-2: #f4f0df;
  --gold-300: #e5d7a5;
  --gold-400: #d6bd6a;
  --gold: #c7a430;
  --gold-600: #ae902a;
  --gold-700: #967b24;
  --gold-900: #635218;
  --purple-100: #e4d7f9;
  --purple-200: #c8b1f3;
  --purple-300: #9f82dc;
  --purple-400: #765bba;
  --purple: #462d8c;
  --purple-600: #301b62;
  --purple-700: #2a1757;
  --purple-800: #23134b;
  --purple-900: #1d0f40;
  --red: #cf314f;
  --ink: #212529;
  --ink-2: #454849;
  --ink-3: #686a69;
  --ink-4: #8c8d89;
  --line: #d3d2c9;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--cream);
  --bg-alt: var(--cream-2);
  --bg-dark: var(--purple-600);
  --text: var(--ink-2);
  --text-strong: var(--ink);
  --text-muted: var(--ink-3);
  --text-on-dark: var(--cream);
  --accent: var(--gold);
  --accent-text: var(--gold-900);
  --brand: var(--purple);

  /* Type */
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 820px;
  --gutter: 1.25rem;
  --radius: 16px;
  --radius-sm: 10px;
  --pill: 10px;
  --shadow: 0 10px 30px rgba(29, 15, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(29, 15, 64, 0.14);
}

@media (min-width: 768px) { :root { --gutter: 32px; } }

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
ul, ol { padding-left: 1.25rem; }
address { font-style: normal; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-strong);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
p { margin: 0 0 1em; }
em.accent, .accent { font-style: italic; color: var(--gold); }
.on-dark .accent { color: var(--gold-400); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--purple); color: #fff; padding: .5rem 1rem; z-index: 100; }
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 0.75rem;
}
.on-dark .eyebrow { color: var(--gold-400); }
.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 60ch; }
.on-dark .lead { color: var(--purple-100); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.muted { color: var(--text-muted); }
.small { font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; line-height: 1;
  padding: 0.9rem 1.5rem; border-radius: var(--pill); border: 2px solid transparent;
  cursor: pointer; text-decoration: none !important; transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-600); }
.btn-gold { background: var(--gold); color: var(--purple-900); }
.btn-gold:hover { background: var(--gold-400); }
.btn-ghost { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-ghost:hover { background: var(--purple); color: #fff; }
.on-dark .btn-ghost, .section-dark .btn-ghost, .hero .btn-ghost, .cta .btn-ghost, .page-hero .btn-ghost { color: var(--cream); border-color: rgba(247,244,233,.7); }
.on-dark .btn-ghost:hover, .section-dark .btn-ghost:hover, .hero .btn-ghost:hover, .cta .btn-ghost:hover, .page-hero .btn-ghost:hover { background: var(--cream); color: var(--purple); border-color: var(--cream); }
.btn-light { background: var(--cream); color: var(--purple); }
.btn-light:hover { background: #fff; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 233, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(70, 45, 140, 0.08);
}
.site-header .container { max-width: 1380px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.brand { flex-shrink: 0; }
.brand img { width: auto; height: 48px; max-width: none; }
.primary-nav { display: flex; align-items: center; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.25rem; }
.primary-nav a:not(.btn) {
  display: block; padding: .5rem .7rem; border-radius: var(--pill);
  color: var(--ink-2); font-weight: 500; font-size: 0.92rem; text-decoration: none; white-space: nowrap;
}
.primary-nav a:not(.btn):hover, .primary-nav a[aria-current="page"] { background: var(--purple-100); color: var(--purple); }
.nav-actions { display: flex; gap: .5rem; margin-left: .75rem; }
.nav-actions .btn { padding: .6rem 1.1rem; font-size: .85rem; }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--purple); margin: 5px 0; transition: transform .2s, opacity .2s; }

@media (max-width: 1400px) {
  .primary-nav a:not(.btn) { padding: .5rem .5rem; font-size: .86rem; }
}
@media (max-width: 1279px) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
  .brand img { height: 42px; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: 76px 0 0 0; background: var(--cream);
    flex-direction: column; align-items: stretch; padding: 1rem var(--gutter) 2rem;
    transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility 0s linear .25s; overflow-y: auto;
  }
  .primary-nav.open { transform: none; visibility: visible; transition: transform .25s ease; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a:not(.btn) { font-size: 1.1rem; padding: .85rem .75rem; border-radius: var(--radius-sm); }
  .nav-actions { margin: 1rem 0 0; flex-direction: column; }
  .nav-actions .btn { padding: 1rem; font-size: 1rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section-sm { padding-block: clamp(2rem, 4vw, 3.5rem); }
.section-alt { background: var(--bg-alt); }
.section-dark, .on-dark { background: var(--purple-600); color: var(--text-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3, .on-dark h1, .on-dark h2, .on-dark h3 { color: var(--cream); }
.section-dark a:not(.btn), .on-dark a:not(.btn) { color: var(--gold-300); }
.section-gold { background: var(--gold-300); }
.section-head { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }

/* Page hero (interior pages) */
.page-hero {
  background: var(--purple-600) radial-gradient(1200px 500px at 90% -20%, rgba(199, 164, 48, .25), transparent 60%);
  color: var(--cream); padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-radius: 0 0 40px 40px;
}
.page-hero h1 { color: var(--cream); max-width: 20ch; }
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero .lead { color: var(--purple-100); }
.page-hero a:not(.btn), .cta a:not(.btn) { color: var(--gold-300); text-decoration: underline; text-underline-offset: 3px; }
.page-hero.compact { padding-block: 2.5rem; border-radius: 0 0 28px 28px; }

/* Prose (long-form content) */
.prose { font-size: 1.02rem; }
.prose h2 { margin-top: 2.2rem; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); }
.prose h3 { margin-top: 1.8rem; }
.prose ul li, .prose ol li { margin-bottom: .4rem; }
.prose blockquote { margin: 2rem 0; padding: 1.25rem 1.5rem; border-left: 4px solid var(--gold); background: var(--white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-family: var(--font-display); font-size: 1.2rem; color: var(--text-strong); }
.prose blockquote p:last-child { margin: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background: #fff; border-radius: var(--radius-sm); overflow: hidden; }
.prose th, .prose td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--purple-100); color: var(--purple-800); font-weight: 600; }

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

.card {
  background: #fff; border-radius: var(--radius); padding: 1.75rem;
  box-shadow: 0 1px 0 rgba(29,15,64,.04), 0 6px 24px rgba(29,15,64,.05);
  border: 1px solid rgba(70,45,140,.06);
  display: flex; flex-direction: column;
}
.card h3 { margin-top: .25rem; font-size: 1.3rem; }
.card p:last-child { margin-bottom: 0; }
.card .btn { margin-top: auto; align-self: flex-start; }
.card-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--purple-100); color: var(--purple); display: grid; place-items: center; margin-bottom: 1rem; font-family: var(--font-display); font-size: 1.4rem; }
.card-icon svg { width: 26px; height: 26px; }
.card-link { transition: transform .15s, box-shadow .15s; text-decoration: none !important; color: inherit; }
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Course card */
.course-card { padding: 0; overflow: hidden; }
.course-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.course-card .course-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.course-code { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); margin-bottom: .35rem; }
.course-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.course-card h3 a { color: var(--text-strong); }
.course-meta { font-size: .85rem; color: var(--text-muted); margin-bottom: .75rem; }
.course-card p { font-size: .95rem; color: var(--text-muted); }
.course-card .more { margin-top: auto; font-weight: 600; font-size: .9rem; }

/* Compact course list (home) */
/* Curriculum path (home) */
.path { list-style: none; margin: 0; padding: 0; display: grid; gap: 2rem; position: relative; counter-reset: none; }
.path-stage:not(:last-child)::after { content: ""; position: absolute; left: 17px; top: 36px; bottom: -2rem; width: 2px; background: var(--purple-200); }
.path-stage:nth-last-child(2)::after { background: linear-gradient(var(--purple-200), var(--gold-400)); }
.path-stage { position: relative; display: grid; gap: .6rem; padding-left: 3.25rem; }
.path-node { position: absolute; left: 0; top: 0; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--purple); color: var(--cream); font-family: var(--font-display); font-size: 1.1rem; box-shadow: 0 0 0 6px var(--bg); z-index: 1; }
.is-final .path-node { background: var(--gold); color: var(--purple-900); font-size: 1.1rem; }
.path-label { margin: 0; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-700); }
.path-label span { color: var(--text-muted); font-weight: 600; letter-spacing: .06em; }
.path-title { margin: 0 0 .35rem; font-size: 1.15rem; line-height: 1.25; color: var(--text-strong); }
.path-course { display: flex; flex-direction: column; gap: .3rem; padding: 1rem 1.15rem; background: #fff; border: 1px solid rgba(70,45,140,.08); border-radius: var(--radius-sm); color: var(--text-strong); text-decoration: none; transition: border-color .15s, background .15s, transform .15s; }
.path-course:hover { border-color: var(--purple-300); background: var(--purple-100); transform: translateY(-2px); }
.path-course .code { font-size: .72rem; font-weight: 700; letter-spacing: .1em; color: var(--gold-700); }
.path-course .t { font-size: .95rem; font-weight: 600; line-height: 1.4; }
.path-course .note { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.is-final .path-course { background: var(--purple-600); border-color: var(--purple-600); color: var(--cream); }
.is-final .path-course .code { color: var(--gold-400); }
.is-final .path-course .note { color: rgba(247,244,233,.75); }
.is-final .path-course:hover { background: var(--purple); }
@media (min-width: 1000px) {
  .path { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(6, auto); gap: 0 1.25rem; }
  .path-stage::after { display: none; }
  .path::before { content: ""; position: absolute; left: 24px; right: calc((100% - 3.75rem) / 4 - 24px); top: 23px; height: 2px; background: linear-gradient(90deg, var(--purple-200), var(--gold-400)); }
  .path-stage { grid-row: span 6; grid-template-rows: subgrid; gap: .6rem; padding-left: 0; }
  .path-node { position: static; width: 48px; height: 48px; font-size: 1.35rem; margin-bottom: .9rem; }
  .path-title { font-size: 1.3rem; }
  .path-course { height: 100%; }
}

/* Faculty */
.faculty-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.faculty-card { text-align: center; }
.faculty-card img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; object-position: top; margin: 0 auto 1.1rem; border: 6px solid #fff; box-shadow: var(--shadow); background: var(--purple-100); }
.faculty-card h3 { font-size: 1.25rem; margin-bottom: .2rem; }
.faculty-card .creds { color: var(--gold-700); font-weight: 600; font-size: .85rem; letter-spacing: .02em; margin-bottom: .5rem; }
.faculty-card .role { color: var(--text-muted); font-size: .95rem; }

/* Stat tiles */
.stats { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.stat { background: rgba(255,255,255,.06); border: 1px solid rgba(247,244,233,.15); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-400); line-height: 1; margin-bottom: .4rem; font-style: italic; }
.stat .lbl { color: var(--purple-100); font-size: .9rem; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; gap: 1rem; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; background: #fff; border-radius: var(--radius); padding: 1.5rem; border: 1px solid rgba(70,45,140,.06); }
.step::before { counter-increment: step; content: counter(step); width: 56px; height: 56px; border-radius: 50%; background: var(--purple); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.5rem; }
.step h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.step p:last-child { margin: 0; }

/* Accordion / FAQ */
details.faq { background: #fff; border-radius: var(--radius-sm); border: 1px solid rgba(70,45,140,.08); margin-bottom: .75rem; }
details.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 3rem 1.1rem 1.25rem; font-weight: 600; color: var(--text-strong); position: relative; font-size: 1.02rem; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; background: var(--purple-100); color: var(--purple); display: grid; place-items: center; font-weight: 500; }
details.faq[open] summary::after { content: "–"; }
details.faq .faq-body { padding: 0 1.25rem 1.25rem; color: var(--text); }
details.faq .faq-body p:last-child { margin: 0; }

/* Calendar */
.cohort { background: #fff; border-radius: var(--radius); padding: 1.5rem; border-top: 4px solid var(--gold); }
.cohort h3 { font-size: 1.25rem; }
.cohort ol { list-style: none; padding: 0; margin: 0; }
.cohort li { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.cohort li:last-child { border: 0; }
.cohort .term { font-weight: 600; color: var(--text-strong); }
.cohort .dates { color: var(--text-muted); text-align: right; }

/* Split (image + text) */
.split { display: grid; gap: 2.5rem; align-items: center; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split.wide img { aspect-ratio: 4/3; }
.split .prose { font-size: 1.02rem; }

/* Callout / CTA */
.cta {
  background: var(--purple) radial-gradient(800px 400px at 100% 0%, rgba(199,164,48,.35), transparent 60%);
  color: var(--cream); border-radius: 28px; padding: clamp(2rem, 5vw, 3.5rem);
  display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 820px) { .cta { grid-template-columns: 1.6fr 1fr; } .cta .btn-row { justify-content: flex-end; } }
.cta h2 { color: var(--cream); margin-bottom: .4rem; }
.cta p { color: var(--purple-100); margin: 0; }
.notice { background: var(--gold-300); color: var(--gold-900); border-radius: var(--radius-sm); padding: 1rem 1.25rem; font-size: .95rem; }
.notice a { color: var(--gold-900); font-weight: 600; }

/* Testimonials */
.testimonial { background: #fff; border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(70,45,140,.06); }
.testimonial .quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: .5; color: var(--gold); margin-bottom: 1rem; }
.testimonial blockquote { margin: 0 0 1.25rem; font-size: 1.02rem; }
.testimonial cite { font-style: normal; display: block; }
.testimonial cite strong { display: block; color: var(--text-strong); font-family: var(--font-display); font-size: 1.15rem; }
.testimonial cite span { color: var(--gold-700); font-weight: 600; font-size: .85rem; }
.video-wrap { border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow-lg); }
.video-wrap video { width: 100%; aspect-ratio: 16/9; }

/* Contact */
.contact-info dl { display: grid; gap: 1.25rem; margin: 0; }
.contact-info dt { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); margin-bottom: .2rem; }
.contact-info dd { margin: 0; font-size: 1.05rem; color: var(--text-strong); }
.embed-form { background: #fff; border-radius: var(--radius); padding: 1rem; border: 1px solid rgba(70,45,140,.08); min-height: 400px; }
.embed-form iframe { width: 100%; border: 0; }
.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map iframe { width: 100%; height: 360px; border: 0; display: block; }
.map-fill iframe { height: 100%; min-height: 360px; }

/* Home hero */
.hero {
  position: relative; color: var(--cream); overflow: hidden;
  background: var(--purple-700);
  border-radius: 0 0 40px 40px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: .32; filter: grayscale(1) contrast(1.05); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(42,23,87,.96) 0%, rgba(42,23,87,.82) 50%, rgba(70,45,140,.55) 100%); }
.hero-inner { position: relative; padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5.5rem); display: grid; gap: 2.5rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.5fr 1fr; } }
.hero h1 { color: var(--cream); font-size: clamp(2.3rem, 1.5rem + 3.6vw, 4rem); margin-bottom: 1rem; max-width: 16ch; }
.hero h1 em { font-style: italic; color: var(--gold-400); }
.hero .lead { color: var(--purple-100); font-size: 1.1rem; max-width: 52ch; margin-bottom: 1.75rem; }
.hero-pill { display: inline-flex; align-items: center; gap: .5rem; background: rgba(247,244,233,.1); border: 1px solid rgba(247,244,233,.25); border-radius: var(--pill); padding: .45rem .9rem .45rem .5rem; font-size: .82rem; margin-bottom: 1.5rem; color: var(--cream); }
.hero-pill b { white-space: nowrap; flex-shrink: 0; background: var(--gold); color: var(--purple-900); border-radius: var(--pill); padding: .2rem .6rem; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.hero-side { display: grid; gap: 1rem; }
.hero-stat { background: rgba(247,244,233,.08); border: 1px solid rgba(247,244,233,.18); border-radius: var(--radius); padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: center; backdrop-filter: blur(6px); }
.hero-stat .num { font-family: var(--font-display); font-style: italic; font-size: 2.2rem; color: var(--gold-400); line-height: 1; min-width: 5.25rem; flex-shrink: 0; white-space: nowrap; }
.hero-stat .lbl { color: var(--purple-100); font-size: .95rem; line-height: 1.35; }

/* Welcome / dean block */
.dean-quote { font-family: var(--font-display); font-size: 1.15rem; color: var(--text-strong); }
.dean-sig strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--text-strong); }
.dean-sig span { color: var(--text-muted); font-size: .9rem; }

/* Footer */
.site-footer { background: var(--purple-900); color: var(--purple-200); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; margin-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.site-footer h3 { color: var(--cream); font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: var(--purple-200); }
.site-footer a:hover { color: var(--gold-300); }
.footer-brand img { width: 260px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: .92rem; }
.footer-quote { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--gold-300); }
.footer-quote span { font-family: var(--font-body); font-style: normal; font-size: .85rem; color: var(--purple-200); }
.footer-hours { font-size: .85rem; margin-top: .75rem; }
.footer-bottom { border-top: 1px solid rgba(247,244,233,.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; font-size: .82rem; }
.footer-bottom p { margin: 0; }

/* Utilities */
.mt-0 { margin-top: 0 !important; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0 !important; } .mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
@media print {
  .site-header, .site-footer, .cta, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
.apply-solo { max-width: 820px; margin-inline: auto; }
