/* =============================================================================
   SHIMER GREAT BOOKS SCHOOL — FULL STYLESHEET
   Same theme: crimson, gold, parchment, Great Books/classical style.
   ============================================================================= */

/* ── VARIABLES ─────────────────────────────────────────────────── */
:root {
  --ink: #260c18;
  --ink2: #6f4a5b;
  --ink3: #a38892;

  --cream: #faf9f6;
  --cream2: #f2f0ea;
  --cream3: #e8e4d8;

  --purple: #9d1633;
  --purple-l: #f7dadf;
  --purple-d: #571014;

  --amber: #c89211;
  --amber-l: #fbf1d2;
  --amber-d: #876009;

  --teal: #1f7a76;
  --teal-l: #dcefed;
  --teal-d: #12504d;

  --coral: #b24d3f;
  --coral-l: #f6ded8;
  --coral-d: #733024;

  --blue: #2b7fd1;
  --blue-l: #dceefc;
  --blue-d: #164a75;

  --green: #3d7a3a;
  --green-l: #dfefd9;
  --green-d: #22461f;
}

/* ── BASE ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cantora One', serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(157,22,51,0.06), transparent 24%),
    linear-gradient(180deg, #f8f0e1 0%, #f1e6d2 100%);
  overflow-x: hidden;
}

body,
body *:not(i):not(.ti):not(svg) {
  font-family: 'Cantora One', serif !important;
}

p {
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.004em;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(200,146,17,0.52);
  outline-offset: 3px;
}

::selection {
  background: rgba(157,22,51,0.22);
  color: var(--ink);
}

/* ── NAV ──────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 56px;
  background: #f7f2e5;
  border-bottom: 1px solid rgba(38,12,24,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 6px 22px rgba(38,12,24,0.06);
  backdrop-filter: blur(12px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-seal {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.nav-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

.nav-name small {
  font-size: 9px;
  font-weight: 300;
  color: rgba(38,12,24,0.5);
  display: block;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-tabs {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(157,22,51,0.4) transparent;
}

.nav-tab {
  font-size: 12px;
  color: rgba(38,12,24,0.58);
  padding: 0 13px;
  height: 56px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
  user-select: none;
}

.nav-tab:hover,
.nav-tab.active {
  color: var(--purple);
}

.nav-tab.active {
  border-bottom-color: var(--purple);
}

/* ── PAGE BASICS ──────────────────────────────────────────────── */
.page {
  display: none;
}

.page.active {
  display: block;
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 3rem 2rem 4rem;
  background:
    linear-gradient(90deg, rgba(157,22,51,0.08), transparent 45%),
    linear-gradient(180deg, #f4e9d5 0%, #fbf6ea 100%);
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 10px;
}

.page-hero h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--amber), rgba(200,146,17,0.15));
  border-radius: 2px;
}

.page-hero > p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 1.6rem;
}

.page-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.page-card {
  padding: 0 1.5rem;
  border-left: 1px solid #e5dcc5;
  transition: opacity 0.2s ease;
}

.page-card:nth-child(3n+1) {
  border-left: none;
  padding-left: 0;
}

/* Opportunities has 4 cards, sourced from North Central's own programs --
   two per row reads better than a cramped row of four or an orphaned
   fourth card on a row of three. */
#page-opportunities .page-card-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 1.75rem;
}

#page-opportunities .page-card:nth-child(2n) {
  border-left: 1px solid #e5dcc5;
  padding-left: 1.5rem;
}

#page-opportunities .page-card:nth-child(2n+1) {
  border-left: none;
  padding-left: 0;
}

.after-pathways {
  margin-top: 3rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(87,16,20,.96), rgba(157,22,51,.9)),
    radial-gradient(circle at 85% 12%, rgba(251,210,112,.18), transparent 34%);
  border: 1px solid rgba(251,210,112,.55);
  border-bottom: 4px double rgba(251,210,112,.72);
  color: #fff8e8;
}

.after-pathways-head {
  max-width: 850px;
  margin-bottom: 1.75rem;
}

.after-pathways-head span {
  display: block;
  color: rgba(251,210,112,.95);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.after-pathways-head h2 {
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  max-width: 820px;
}

.after-pathways-head p {
  color: rgba(255,248,232,.83);
  font-size: 14px;
  line-height: 1.85;
  margin-top: 1rem;
  max-width: 760px;
}

.after-pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(251,210,112,.36);
  border: 1px solid rgba(251,210,112,.36);
}

.after-pathways-grid article {
  min-height: 240px;
  padding: 1.35rem;
  background: rgba(255,248,232,.08);
}

.after-pathways-grid span {
  display: inline-block;
  color: rgba(251,210,112,.95);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.after-pathways-grid h3 {
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: .7rem;
}

.after-pathways-grid p {
  color: rgba(255,248,232,.78);
  font-size: 12.5px;
  line-height: 1.75;
}

/* Application page */
#page-application {
  overflow-x: clip;
  background:
    radial-gradient(circle at 12% 8%, rgba(157,22,51,0.08), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(200,146,17,0.13), transparent 26%),
    linear-gradient(180deg, #fbf6ea 0%, var(--cream) 44%, #f4ead7 100%);
}

.application-hero,
.application-section {
  width: calc(100vw - 3rem);
  max-width: 1120px;
  margin: 0 auto;
}

.application-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .58fr);
  gap: 2rem;
  align-items: end;
  padding: 5.2rem 0 3.4rem;
  border-bottom: 1px solid rgba(87,16,20,0.14);
}

.application-hero-copy,
.application-callout,
.application-checklist-card {
  min-width: 0;
}

.application-kicker,
.application-section-head span,
.application-program-meta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-d);
}

.application-hero h1 {
  max-width: 820px;
  margin: .55rem 0 1rem;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -.055em;
  color: var(--purple-d);
}

.application-hero p,
.application-section-head p {
  max-width: 720px;
  color: var(--ink2);
  font-size: 16px;
}

.application-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}

.application-quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid rgba(87,16,20,.14);
  background: rgba(87,16,20,.14);
  max-width: 760px;
}

.application-quick-facts div {
  padding: 1rem;
  background: rgba(255,252,244,.82);
}

.application-quick-facts span {
  display: block;
  margin-bottom: .25rem;
  color: var(--ink3);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.application-quick-facts strong {
  color: var(--purple-d);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 600;
}

.application-callout {
  position: relative;
  padding: 2rem;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(87,16,20,.96), rgba(157,22,51,.88)),
    radial-gradient(circle at top right, rgba(231,194,91,.35), transparent 42%);
  color: #fff7e7;
  border: 1px solid rgba(200,146,17,.38);
  box-shadow: 0 28px 70px rgba(87,16,20,.2);
  overflow: hidden;
}

.application-callout::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(231,194,91,.32);
  pointer-events: none;
}

.application-callout-seal {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(231,194,91,.65);
  background: rgba(255,255,255,.08);
  color: #e7c25b;
  font-size: 32px;
}

.application-callout h2 {
  position: relative;
  z-index: 1;
  margin-bottom: .75rem;
  font-size: 28px;
  font-weight: 400;
  color: #fff7e7;
}

.application-callout p {
  position: relative;
  z-index: 1;
  color: rgba(255,247,231,.84);
}

.application-section {
  padding: 3.6rem 0 0;
}

.application-section:last-of-type {
  padding-bottom: 5rem;
}

.application-section-head {
  margin-bottom: 1.6rem;
}

.application-section-head h2 {
  max-width: 760px;
  margin: .45rem 0 .65rem;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--ink);
}

.application-steps,
.application-path-grid,
.application-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(87,16,20,.13);
  border: 1px solid rgba(87,16,20,.13);
}

.application-steps article,
.application-path-grid article,
.application-support-grid article,
.application-program-card {
  background: rgba(255,252,244,.88);
  padding: 1.45rem;
}

.application-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: var(--amber-l);
  color: var(--amber-d);
  font-size: 13px;
}

.application-steps h3,
.application-path-grid h3,
.application-program-card h3,
.application-support-grid h3 {
  margin-bottom: .55rem;
  font-size: 22px;
  font-weight: 400;
  color: var(--purple-d);
}

.application-steps p,
.application-path-grid p,
.application-program-card p,
.application-support-grid p {
  color: var(--ink2);
}

.application-path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.application-path-grid article {
  min-height: 220px;
  border-top: 3px double rgba(200,146,17,.55);
}

.application-path-grid i {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: rgba(157,22,51,.1);
  color: var(--purple);
  font-size: 22px;
}

.application-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.application-program-card {
  min-height: 280px;
  border: 1px solid rgba(87,16,20,.14);
  box-shadow: 0 18px 45px rgba(87,16,20,.07);
}

.application-program-card-primary {
  background:
    linear-gradient(180deg, rgba(255,252,244,.95), rgba(251,241,210,.88)),
    radial-gradient(circle at top right, rgba(157,22,51,.08), transparent 48%);
}

.application-program-card .text-link {
  margin-top: 1.4rem;
  padding: 0;
}

.application-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.application-support-grid i {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--purple-l);
  color: var(--purple);
  font-size: 22px;
}

.application-checklist {
  padding-bottom: 5rem;
}

.application-checklist-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(200,146,17,.28);
  background:
    linear-gradient(135deg, rgba(87,16,20,.96), rgba(157,22,51,.9)),
    radial-gradient(circle at top right, rgba(231,194,91,.25), transparent 42%);
  color: #fff7e7;
  box-shadow: 0 24px 60px rgba(87,16,20,.18);
}

.application-checklist-card span {
  color: rgba(231,194,91,.95);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.application-checklist-card h2 {
  margin: .6rem 0 .8rem;
  color: #fff8e8;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 400;
}

.application-checklist-card p {
  color: rgba(255,247,231,.82);
  max-width: 520px;
}

.application-checklist-card ul {
  display: grid;
  gap: .85rem;
  list-style: none;
  counter-reset: app-checklist;
}

.application-checklist-card li {
  position: relative;
  padding: .85rem 1rem .85rem 3.2rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(231,194,91,.2);
  color: rgba(255,247,231,.9);
}

.application-checklist-card li::before {
  counter-increment: app-checklist;
  content: counter(app-checklist);
  position: absolute;
  left: .85rem;
  top: .75rem;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7c25b;
  color: #3a0a10;
  font-size: 12px;
  font-weight: 800;
}

.page-card:hover h2 {
  color: var(--purple);
}

.page-card h2 {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.page-card p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.75;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero.hero-video-section {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(157,22,51,0.55), transparent 55%),
    radial-gradient(ellipse at 82% 78%, rgba(200,146,17,0.28), transparent 60%),
    linear-gradient(135deg, #1c0a12 0%, #3a0f1a 48%, #260c18 100%);
}

.hero.hero-video-section::before,
.hero.hero-video-section::after {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.52) 45%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.06) 48%,
      rgba(0,0,0,0.34) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.hero.hero-video-section .hero-l {
  min-height: 82vh;
  max-width: 660px;
  padding: 5rem 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  margin-bottom: 1.25rem;
}

.hero-h {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 300;
  line-height: 0.98;
  margin-bottom: 1.15rem;
  color: #fff;
  text-shadow: 0 4px 22px rgba(0,0,0,0.36);
}

.hero-h em {
  font-style: italic;
  color: #f3d9a0;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
  max-width: 590px;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.26);
}

.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-amber {
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.btn-amber:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(157,22,51,0.32);
}

a.btn-amber {
  display: inline-block;
  text-decoration: none;
}

.btn-ghost-w {
  background: transparent;
  color: #fff;
  font-size: 11px;
  padding: 10px 16px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-ghost-w:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.8);
}

.hero-foot {
  margin-top: 2rem;
  font-size: 11px;
  color: rgba(255,255,255,0.74);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.28);
}

.hero-video-cards {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1180px, calc(100% - 3rem));
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(253,249,240,0.96);
  border: 1px solid rgba(200,146,17,0.42);
  border-bottom: none;
  box-shadow: 0 -16px 42px rgba(0,0,0,0.18);
}

.hero-video-cards button {
  border: none;
  border-right: 1px solid rgba(200,146,17,0.28);
  background: transparent;
  text-align: left;
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.hero-video-cards button:last-child {
  border-right: none;
}

.hero-video-cards button:hover {
  background: var(--amber-l);
  transform: translateY(-2px);
}

.hero-video-cards span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 4px;
}

.hero-video-cards strong {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
}

.hero-r,
.hero-panel,
.hero-v,
.video-ph {
  display: none !important;
}

/* ── FACES / GREAT CONVERSATION ───────────────────────────────── */
.faces-panel {
  padding: 1.5rem 1rem 1.7rem;
}

.faces-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 1.3rem;
}

.faces-rule {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.faces-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-d);
  white-space: nowrap;
}

.faces-laurel svg {
  width: 56px;
  height: 24px;
}

.faces-wrap {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
  margin: 0 auto;
}

.face-card {
  background: transparent;
  border: none;
  padding: 0.3rem 0.2rem;
  text-align: center;
  transition: transform 0.25s ease;
}

.face-card:hover {
  transform: translateY(-3px);
}

.face-avatar {
  width: 74px;
  height: 92px;
  margin: 0 auto;
  border-radius: 50% 50% 7px 7px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 16%, rgba(255,236,200,0.20), transparent 62%),
    linear-gradient(180deg, #8a1622, #5e1117 68%, #470c11);
  border: 2px solid var(--amber);
  box-shadow:
    inset 0 5px 11px rgba(0,0,0,0.4),
    inset 0 0 0 4px rgba(224,169,46,0.12),
    0 4px 12px rgba(87,16,20,0.18);
}

.face-avatar svg {
  width: 58px;
  height: 60px;
  display: block;
  margin-bottom: -2px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.28));
}

.face-plinth {
  width: 60px;
  height: 15px;
  margin: 0 auto 9px;
  background: linear-gradient(180deg, #ece4d4, #c7bca4);
  border: 1px solid rgba(120,90,40,0.35);
  border-top: 2px solid var(--amber);
  clip-path: polygon(7% 0, 93% 0, 100% 100%, 0% 100%);
  box-shadow: 0 3px 8px rgba(87,16,20,0.14);
}

.face-name {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 2px;
}

.face-role {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
}

/* ── STATS ────────────────────────────────────────────────────── */
.section-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem 2.25rem;
}

.stat {
  padding: 0 1.25rem;
  text-align: center;
  border-left: 1px solid #e5dcc5;
  transition: opacity 0.2s ease;
}

.stat:first-child {
  border-left: none;
}

.stat-n {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.stat-l {
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-top: 6px;
}

/* ── WHY SHIMER ───────────────────────────────────────────────── */
.why-shimer {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.75rem 1.5rem 4rem;
}

.why-shimer::before {
  content: "";
  position: absolute;
  inset: 1.5rem 1.5rem auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d9c7a4 18%, #8f0d2b 50%, #d9c7a4 82%, transparent);
}

.why-shimer-head {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.why-shimer .section-eyebrow {
  padding: 0;
  margin-bottom: 0.85rem;
  color: var(--purple);
}

.why-shimer h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.why-shimer-head p {
  max-width: 650px;
  margin: 1rem auto 0;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink2);
}

.mktg-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mktg-card {
  position: relative;
  min-height: 245px;
  padding: 1.55rem 1.45rem 1.45rem;
  border: 1px solid #dfd1b5;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(246,239,224,.92)), var(--paper);
  box-shadow: 0 18px 42px rgba(67, 45, 24, 0.08);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mktg-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--amber));
}

.mktg-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 8.5rem;
  height: 8.5rem;
  border: 1px solid rgba(143, 13, 43, 0.16);
  border-radius: 50%;
}

.mktg-card:hover {
  transform: translateY(-4px);
  border-color: #c8a76a;
  box-shadow: 0 24px 55px rgba(67, 45, 24, 0.13);
}

.mc-num {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--amber-d);
  margin-bottom: 1.1rem;
}

.mc-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #fff9ed;
  border: 1px solid #e4d2ad;
  font-size: 22px;
}

.mc-icon-crimson { color: var(--purple); }
.mc-icon-gold { color: var(--amber); }

.mc-title {
  position: relative;
  z-index: 1;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 400;
  margin-bottom: 0.65rem;
  color: var(--ink);
  transition: color 0.2s ease;
}

.mktg-card:hover .mc-title {
  color: var(--purple);
}

.mc-body {
  position: relative;
  z-index: 1;
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.75;
}
/* ── ESSENTIALS GRID ──────────────────────────────────────────── */
.home-essentials {
  padding: 4.5rem 1.5rem 5rem;
}

.home-section-intro { max-width: 680px; margin: 0 auto 2.25rem; text-align: center; }
.home-kicker { color: var(--purple); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .65rem; }
.home-section-intro h2, .journey-copy h2 { color: var(--ink); font-size: clamp(30px, 4vw, 46px); font-weight: 300; line-height: 1.12; }
.home-section-intro p { color: var(--ink2); font-size: 15px; line-height: 1.75; margin-top: .8rem; }
.essential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 1120px; margin: 0 auto; background: #ddcfb2; border: 1px solid #ddcfb2; }
.essential-card { appearance: none; display: flex; flex-direction: column; align-items: flex-start; min-height: 270px; padding: 1.7rem; border: 0; border-radius: 0; background: #fffdf8; color: var(--ink); font-family: inherit; text-align: left; text-decoration: none; cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s; }
.essential-card:hover { position: relative; z-index: 1; background: #fff9eb; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(66,43,25,.12); }
.essential-card > i { color: var(--amber); font-size: 26px; margin-bottom: 1.15rem; }
.essential-label { color: var(--purple); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .5rem; }
.essential-card strong { font-size: 19px; font-weight: 400; line-height: 1.3; margin-bottom: .6rem; }
.essential-card > span:not(.essential-label) { color: var(--ink2); font-size: 12.5px; line-height: 1.7; }
.essential-card em { color: var(--purple); font-size: 11px; font-style: normal; font-weight: 600; margin-top: auto; padding-top: 1.25rem; }
.essential-card em i { font-size: 13px; margin-left: 4px; vertical-align: -1px; }

/* ── YOUR SHIMER EXPERIENCE ───────────────────────────────────── */
.shimer-journey { display: grid; grid-template-columns: .9fr 1.1fr; gap: 5rem; max-width: 1120px; margin: 0 auto; padding: 5.5rem 1.5rem; align-items: center; }
.journey-copy > p { color: var(--ink2); font-size: 14px; line-height: 1.8; margin: 1.1rem 0 1.5rem; }
.journey-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.text-link { border: 0; background: transparent; color: var(--purple); cursor: pointer; font-family: inherit; font-size: 11px; font-weight: 600; padding: 10px 2px; }
.journey-steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid #e5dcc5; }
.journey-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid #e5dcc5; }
.journey-steps li > span { color: var(--amber); font-size: 11px; letter-spacing: .12em; padding-top: 3px; }
.journey-steps strong { color: var(--ink); font-size: 17px; font-weight: 400; }
.journey-steps p { color: var(--ink2); font-size: 12.5px; line-height: 1.65; margin-top: .25rem; }

/* ── HOME GRID ────────────────────────────────────────────────── */
.home-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3.5rem;
}

.hg-main,
.home-grid > div:last-child {
  align-self: start;
}

.home-grid > div:last-child {
  border-left: 1px solid #e5dcc5;
  padding-left: 1.5rem;
}

.sec-head {
  padding: 0 0 0.85rem;
  border-bottom: 1px solid #e5dcc5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  margin-bottom: 0.25rem;
}

.sec-head:not(:first-child) {
  border-top: none;
  margin-top: 1.75rem;
}

.sec-head h2 {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
}

.sec-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--amber);
  transform: translateY(-50%) rotate(45deg);
}

.sec-head a {
  font-size: 11px;
  color: var(--purple);
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
}

.prog-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0.6rem;
  margin: 0 -0.6rem;
  border-bottom: 1px solid #f1ece0;
  cursor: pointer;
  background: transparent;
  transition: background 0.12s, transform 0.18s;
}

.prog-row:last-child {
  border-bottom: none;
}

.prog-row:hover {
  background: var(--amber-l);
  transform: translateX(5px);
}

.pr-name {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
}

.pr-meta {
  font-size: 11px;
  color: var(--ink3);
}

.ev-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  padding: 11px 0.6rem;
  margin: 0 -0.6rem;
  border-bottom: 1px solid #f1ece0;
  cursor: pointer;
  align-items: start;
  background: transparent;
  transition: background 0.12s, transform 0.18s;
}

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

.ev-item:hover {
  background: var(--amber-l);
  transform: translateX(4px);
}

.ev-d {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: var(--purple);
}

.ev-t {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--ink);
}

.ev-m {
  font-size: 11px;
  color: var(--ink3);
}

.fac-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0.6rem;
  margin: 0 -0.6rem;
  border-bottom: 1px solid #f1ece0;
  cursor: pointer;
  background: transparent;
  transition: background 0.12s, transform 0.18s;
}

.fac-row:last-child {
  border-bottom: none;
}

.fac-row:hover {
  background: var(--amber-l);
  transform: translateX(4px);
}

.fac-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.fac-n {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.fac-r {
  font-size: 11px;
  color: var(--ink3);
}

/* ── QUOTE (now folded into the footer, see #FOOTER) ────────── */
.q-text {
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 0.75rem;
}

.q-attr {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-l);
}

/* ── TESTIMONIAL (now folded into the footer, see #FOOTER) ───── */
.footer-testimonial {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0;
  text-align: center;
}

.footer-testimonial .section-eyebrow {
  color: var(--amber);
}

.footer-testimonial .testimonial-text {
  color: rgba(255,255,255,0.88);
}

.footer-testimonial .testimonial-attr {
  color: rgba(255,255,255,0.55);
}

.testimonial-text {
  font-size: 21px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin: 0.75rem 0 0.75rem;
}

.testimonial-attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink3);
}

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  padding: 3.5rem 2rem;
  text-align: center;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-d);
  margin-bottom: 0.75rem;
}

.cta-title {
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 0.75rem;
  line-height: 1.25;
}

.cta-sub {
  font-size: 14px;
  color: var(--ink2);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-ghost-p {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--purple);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  border: 1px solid var(--purple);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.btn-ghost-p:hover {
  background: var(--purple);
  color: #fff;
}

/* ── NEWSLETTER ──────────────────────────────────────────────── */
.newsletter-section {
  padding: 2rem 1.5rem;
  background: #fbf7ed;
}

.newsletter-card {
  background: linear-gradient(135deg, #f5d9de, #fbf5f6);
  border: 1px solid rgba(157,22,51,0.12);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.newsletter-tag,
.newsletter-page-badge,
.newsletter-issue-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}

.newsletter-card h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}

.newsletter-card p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 10px;
}

.newsletter-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
}

.newsletter-link:hover {
  text-decoration: underline;
}

.newsletter-page-hero {
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  color: #fff;
}

.newsletter-page-hero h1 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 10px;
}

.newsletter-page-hero p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 16px;
}

.newsletter-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--cream);
}

.newsletter-issue-card {
  background: #fdf9f0;
  border: 1px solid var(--cream3);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.newsletter-issue-card-alt {
  background: var(--amber-l);
}

.newsletter-issue-card h2 {
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}

.newsletter-issue-card p,
.newsletter-issue-card li {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.7;
}

.newsletter-issue-card ul {
  padding-left: 1.1rem;
  margin-top: 8px;
}

.newsletter-page-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #3a0a10, #260609);
  border-top: 4px solid var(--amber);
  padding: 2.4rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-quote {
  grid-column: 1 / -1;
  text-align: center;
  padding: 0.5rem 2rem 2.4rem;
  margin-bottom: 2.4rem;
}

.footer-quote::before {
  content: "\201C";
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 52px;
  line-height: 0.3;
  color: var(--amber);
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.footer-quote .q-text {
  color: rgba(255,255,255,0.88);
}

.footer-crest {
  color: #fff;
}

.crest-wreath svg {
  width: 72px;
  height: 72px;
}

.crest-motto {
  color: #fff;
  font-size: 16px;
  margin-top: 6px;
}

.crest-sub {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  margin-top: 2px;
}

.f-head {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.f-name {
  font-size: 17px;
  color: #fff;
  margin-bottom: 4px;
}

.f-addr {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.f-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}

.f-links a:hover {
  color: #fff;
}

.f-copy {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
  line-height: 1.6;
}

.footer-admin-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.24);
  text-decoration: none;
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
  color: rgba(255,255,255,0.6);
}

/* ── SCHEDULE ────────────────────────────────────────────────── */
.sched-hero {
  background: var(--purple-d);
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sched-hero h1 {
  font-size: 36px;
  font-weight: 300;
  color: #fff;
}

.sched-hero-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

.sched-hero-btns {
  display: flex;
  gap: 8px;
}

.btn-outline-w {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  padding: 7px 14px;
  font-size: 11px;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-outline-w:hover {
  background: rgba(255,255,255,0.25);
}

.sched-wrap {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 600px;
}

.sched-side {
  border-right: 0.5px solid var(--cream3);
  padding: 1.5rem;
  background: var(--cream);
}

.sched-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px;
  margin-top: 1.25rem;
}

.sched-label:first-child {
  margin-top: 0;
}

.sched-search-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 4px;
  border: 1px solid var(--cream3);
  background: #fff;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.sched-search-input:focus {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
}

.filter-btn,
.sched-type-btn,
.sched-term-btn {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 4px;
  border: none;
  background: transparent;
  color: var(--ink2);
  cursor: pointer;
  margin-bottom: 2px;
  transition: background 0.12s, color 0.12s;
}

.filter-btn:hover,
.sched-type-btn:hover,
.sched-term-btn:hover {
  background: var(--cream2);
  color: var(--ink);
}

.filter-btn.on,
.sched-type-btn.on,
.sched-term-btn.on {
  background: var(--amber-l);
  color: var(--amber-d);
  font-weight: 500;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.legend-label {
  font-size: 11px;
  color: var(--ink2);
}

.sched-main {
  padding: 1.5rem;
  background: var(--cream);
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.cal-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
}

.cal-nav-btns {
  display: flex;
  gap: 6px;
}

.cal-nav-btn {
  background: transparent;
  border: 1px solid var(--cream3);
  border-radius: 3px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink2);
  transition: background 0.12s;
}

.cal-nav-btn:hover {
  background: var(--cream2);
}

.cal-today-btn {
  width: auto;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 500;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--cream3);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.cal-day-head {
  padding: 8px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink3);
  background: var(--cream2);
  border-bottom: 1px solid var(--cream3);
}

.cal-day {
  padding: 7px;
  min-height: 68px;
  border-right: 0.5px solid var(--cream3);
  border-bottom: 0.5px solid var(--cream3);
  cursor: pointer;
  background: #fdf9f0;
  transition: background 0.12s;
}

.cal-day:nth-child(7n) {
  border-right: none;
}

.cal-day:hover {
  background: var(--cream2);
}

.cal-day.today {
  background: var(--amber-l);
}

.cal-day.empty {
  background: var(--cream2);
}

.cal-dn {
  font-size: 11px;
  color: var(--ink3);
  margin-bottom: 4px;
  font-weight: 500;
}

.cal-day.today .cal-dn {
  color: var(--amber-d);
  font-weight: 700;
}

.cal-ev {
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: 0;
  font-size: 10px;
  border-radius: 2px;
  padding: 2px 5px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.cal-ev.tc {
  background: var(--amber-l);
  color: var(--amber-d);
  border-left: 2px solid var(--amber);
}

.cal-ev.te {
  background: var(--blue-l);
  color: var(--blue-d);
  border-left: 2px solid var(--blue);
}

.cal-ev.td {
  background: var(--purple-l);
  color: var(--purple-d);
  border-left: 2px solid var(--purple);
}

.cal-ev-recur::before {
  content: '\21bb\a0';
}

.upc-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 10px;
}

.upc-item {
  display: flex;
  gap: 14px;
  padding: 11px 4px;
  border: 0;
  border-bottom: 0.5px solid var(--cream3);
  align-items: start;
  width: 100%;
  background: none;
  cursor: pointer;
  text-align: left;
  border-radius: 4px;
  transition: background 0.12s;
}

.upc-item:hover {
  background: rgba(200,146,17,0.07);
}

.upc-item-empty {
  font-size: 13px;
  color: var(--ink3);
  font-style: italic;
  padding: 14px 4px;
}

.upc-date {
  min-width: 42px;
  text-align: center;
}

.upc-month {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink3);
}

.upc-day {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.upc-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--ink);
}

.upc-meta {
  font-size: 11px;
  color: var(--ink3);
}

.upc-recur {
  font-size: 11px;
  font-style: italic;
  color: var(--amber);
  margin-top: 2px;
}

.tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
}

.tag-c {
  background: var(--blue-l);
  color: var(--blue-d);
}

.tag-e {
  background: var(--amber-l);
  color: var(--amber-d);
}

.tag-d {
  background: var(--purple-l);
  color: var(--purple-d);
}

.tag-g {
  background: var(--green-l);
  color: var(--green-d);
}

/* ── EVENT DETAIL MODAL ──────────────────────────────────────── */
.evd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.evd-card {
  width: min(520px, 92vw);
  background: #fdf9f0;
  border-radius: 12px;
  border: 1px solid rgba(200,146,17,0.3);
  box-shadow: 0 24px 80px rgba(0,0,0,0.32);
  padding: 1.5rem;
  position: relative;
}

.evd-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
  color: var(--ink3);
}

.evd-date {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}

.evd-title {
  font-size: 25px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  padding-right: 28px;
}

.evd-desc {
  color: var(--ink2);
  margin: 12px 0;
}

.evd-meta {
  color: var(--ink3);
  font-size: 12px;
  margin-bottom: 1rem;
}

.evd-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.evd-btn {
  text-decoration: none;
  border: 1px solid var(--cream3);
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
}

.evd-btn-primary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.evd-btn-ghost {
  background: transparent;
  color: var(--purple);
}

/* ── EVENTS PAGE ─────────────────────────────────────────────── */
.ev-hero {
  padding: 2.5rem 2rem;
  background: var(--amber-d);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.ev-hero h1 {
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 6px;
}

.ev-hero p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  line-height: 1.7;
}

.ev-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ev-filter {
  appearance: none;
  background: none;
  font: inherit;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  user-select: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ev-filter.on,
.ev-filter:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.ev-search-input {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
  width: 200px;
  max-width: 100%;
}

.ev-search-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.ev-search-input:focus {
  outline: 2px solid #fff;
  outline-offset: 1px;
  background: rgba(255,255,255,0.15);
}

.events-list {
  padding: 1.5rem 2rem;
  background: var(--cream);
}

.big-ev {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--cream3);
  cursor: pointer;
  transition: transform 0.2s;
}

.big-ev:hover {
  transform: translateX(5px);
}

.big-ev:hover .be-title {
  color: var(--amber);
}

.be-month {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink3);
}

.be-day {
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  color: var(--amber);
}

.be-year {
  font-size: 10px;
  color: var(--ink3);
}

.be-title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--ink);
  transition: color 0.15s;
}

.be-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 8px;
}

.be-meta {
  font-size: 11px;
  color: var(--ink3);
}

/* ── ORGANIZATIONS ───────────────────────────────────────────── */
#page-orgs,
#orgs-list,
#orgs-detail {
  min-height: calc(100vh - 56px);
}

#orgs-list {
  display: flex;
  flex-direction: column;
}

.orgs-hero {
  padding: 4.25rem 2rem 4.75rem;
  background:
    linear-gradient(135deg, rgba(87,16,20,.96), rgba(157,22,51,.9)),
    radial-gradient(circle at 86% 20%, rgba(251,210,112,.18), transparent 28%);
  border-bottom: 4px double rgba(251,210,112,.75);
}

.orgs-kicker {
  display: block;
  color: rgba(251,210,112,.9);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.orgs-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 1rem;
}

.orgs-hero p {
  font-size: 15px;
  color: rgba(255,248,232,0.82);
  max-width: 700px;
  line-height: 1.85;
}

.community-overview {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 4rem;
  padding: 4.5rem 2rem;
}

.community-intro {
  align-self: center;
}

.community-intro > span,
.community-belonging-head > span,
.orgs-directory-head > span {
  display: block;
  color: var(--purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.community-intro h2,
.community-belonging-head h2,
.orgs-directory-head h2 {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.12;
}

.community-intro p,
.community-belonging-head p,
.orgs-directory-head p {
  color: var(--ink2);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 1rem;
}

.community-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(120,86,34,.28);
  border: 1px solid rgba(120,86,34,.28);
}

.community-pillars article {
  min-height: 245px;
  padding: 1.5rem;
  background: rgba(253,249,240,.9);
}

.community-pillars i {
  color: var(--amber-d);
  font-size: 25px;
  margin-bottom: 1.1rem;
}

.community-pillars h3 {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: .65rem;
}

.community-pillars p {
  color: var(--ink2);
  font-size: 12.5px;
  line-height: 1.7;
}

.community-belonging {
  margin: 0 2rem 1rem;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255,252,244,.95), rgba(250,240,218,.92)),
    radial-gradient(circle at 8% 20%, rgba(157,22,51,.08), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(201,151,50,.14), transparent 28%);
  border: 1px solid rgba(120,86,34,.26);
  border-top: 4px double var(--amber);
}

.community-belonging-head {
  max-width: 820px;
  margin-bottom: 1.75rem;
}

.community-belonging-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.community-belonging-grid article {
  position: relative;
  min-height: 220px;
  padding: 1.35rem;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(120,86,34,.22);
  box-shadow: 0 14px 30px rgba(52,36,18,.08);
}

.community-belonging-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--crimson), var(--amber));
}

.community-belonging-grid span {
  display: inline-block;
  color: var(--crimson);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  margin-bottom: 1.35rem;
}

.community-belonging-grid h3 {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: .7rem;
}

.community-belonging-grid p {
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.75;
}

.orgs-directory-head {
  padding: 3.5rem 2rem 0;
  max-width: 760px;
}

.orgs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 2rem;
  background: var(--cream);
  flex: 1;
  padding: 2rem 2rem 3.5rem;
}

.org-empty {
  grid-column: 1 / -1;
  align-self: start;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(253,249,240,.92);
  border: 1px solid rgba(120,86,34,.24);
  border-top: 3px double var(--amber);
}

.org-empty-icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--purple);
  background: var(--purple-l);
  border: 1px solid rgba(157,22,51,.18);
}

.org-empty-icon i {
  font-size: 25px;
}

.org-empty h3 {
  grid-column: 2;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.org-empty p {
  grid-column: 2;
  color: var(--ink2);
  font-size: 12.5px;
  line-height: 1.65;
  margin-top: .3rem;
}

.org-empty-actions {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.org-empty-actions button {
  border: 1px solid var(--purple);
  border-radius: 3px;
  background: transparent;
  color: var(--purple);
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .75rem .95rem;
  text-transform: uppercase;
}

.org-empty-actions button:hover {
  background: var(--purple);
  color: #fff;
}

.org-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cream3);
  cursor: pointer;
  min-height: 200px;
  transition: background 0.15s, transform 0.15s;
}

.org-card:hover {
  background: var(--purple-l);
  transform: translateX(4px);
}

.org-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.org-name {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--ink);
}

.org-desc {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 8px;
}

.org-members {
  font-size: 10px;
  color: var(--ink3);
}

.org-cta {
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
}

.org-detail {
  background: var(--cream);
}

.od-back {
  font-size: 12px;
  color: var(--ink3);
  cursor: pointer;
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}

.od-back:hover {
  color: var(--purple);
}

.od-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 1rem 1.5rem 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--cream3);
}

.od-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.od-title {
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
}

.od-sub {
  font-size: 12px;
  color: var(--ink3);
}

.od-body {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.85;
  margin: 0 1.5rem 1.5rem;
  max-width: 600px;
}

.od-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 1.5rem 1.5rem;
}

.od-photo {
  aspect-ratio: 4/3;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.od-et {
  font-size: 18px;
  margin: 0 1.5rem 10px;
  color: var(--ink);
}

.od-events {
  padding: 0 1.5rem 2rem;
}

/* ── ABOUT / INFO ────────────────────────────────────────────── */
.info-hero {
  padding: 2.5rem 2rem;
  background: var(--purple);
}

.info-hero h1 {
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}

.info-hero p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  line-height: 1.75;
}

.info-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.info-nav {
  border-right: 0.5px solid var(--cream3);
  padding: 1.5rem;
  background: var(--cream);
}

.info-nav-item {
  display: block;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--ink2);
  cursor: pointer;
  margin-bottom: 2px;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.info-nav-item:hover {
  background: var(--purple-l);
  color: var(--purple-d);
  transform: translateX(3px);
}

.info-nav-item.on {
  background: var(--purple-l);
  color: var(--purple-d);
  font-weight: 500;
}

.info-content {
  padding: 2rem;
  background: var(--cream);
}

.info-section h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--ink);
}

.info-section h3 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 1.2rem;
  color: var(--ink);
}

.info-section p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 12px;
}

.info-section p strong {
  color: var(--ink);
  font-weight: 600;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.info-card {
  border-radius: 6px;
  padding: 1rem;
}

.ic-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ic-body {
  font-size: 12px;
  line-height: 1.6;
}

.ic-body a {
  color: var(--purple);
}

.info-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.25rem;
}

.info-ext-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  border: 1px solid var(--purple);
  border-radius: 3px;
  padding: 8px 14px;
  transition: background 0.15s, color 0.15s;
}

.info-ext-link i {
  font-size: 13px;
}

.info-ext-link:hover {
  background: var(--purple);
  color: #fff;
}

.info-fineprint {
  margin-top: 1rem;
  font-size: 12px;
  color: var(--ink3);
}

.info-fineprint a {
  color: var(--purple);
  font-weight: 600;
}

/* ── CURRICULUM ──────────────────────────────────────────────── */
.curr-body {
  padding: 4.5rem 2rem 5rem;
  background: var(--cream);
}

.curr-card {
  padding: 2.5rem 2.75rem;
  margin-bottom: 3rem;
  background: rgba(253,249,240,.94);
  border: 1px solid rgba(120,86,34,.25);
  border-top: 4px double var(--amber);
  box-shadow: 0 6px 18px rgba(69,30,18,.045);
}

.curr-card:last-child {
  margin-bottom: 0;
}

.curr-head {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 4rem 1.25rem 0;
  border-bottom: 1px solid rgba(120,86,34,.28);
  margin-bottom: 1.35rem;
}

.curr-kicker {
  color: var(--purple);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.curr-head h2 {
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 400;
  color: var(--ink);
}

.curr-lead {
  color: var(--ink2);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 720px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
}

.curr-areas .page-card {
  position: relative;
  overflow: hidden;
}

#page-curriculum { isolation: isolate; background: var(--cream); }
#page-curriculum > :not(#curriculum-canvas) { position: relative; z-index: 1; }
#page-curriculum .page-hero { background: linear-gradient(180deg, rgba(244,233,213,.9), rgba(251,246,234,.82)); }
#page-curriculum .curr-body { background: rgba(250,245,234,.82); }
#curriculum-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; display: block; opacity: .76; pointer-events: none; filter: saturate(1.3) contrast(1.16) drop-shadow(0 0 .65px rgba(179,19,60,.72)) drop-shadow(0 0 .45px rgba(217,155,18,.52)); }
#page-curriculum .curr-areas { margin-top: 2.5rem; }
#page-curriculum .curr-areas .page-card { background: rgba(253,249,240,.76); backdrop-filter: blur(2px); }
#page-curriculum .course,
#page-curriculum .pair { background: rgba(253,249,240,.66); backdrop-filter: blur(1px); }

.curr-current-courses {
  margin-bottom: 3rem;
  padding: 2rem;
  border: 1px solid rgba(87,16,20,.14);
  background:
    linear-gradient(180deg, rgba(255,252,244,.86), rgba(251,241,210,.56)),
    radial-gradient(circle at top right, rgba(157,22,51,.08), transparent 36%);
  box-shadow: 0 18px 44px rgba(87,16,20,.07);
}

.curr-current-head {
  max-width: 780px;
  margin-bottom: 1.4rem;
}

.curr-current-head span {
  display: inline-block;
  margin-bottom: .45rem;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-d);
}

.curr-current-head h2 {
  margin-bottom: .55rem;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--purple-d);
}

.curr-current-head p {
  color: var(--ink2);
  max-width: 720px;
}

.curr-current-term-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1rem;
  margin: 0 0 1.35rem;
  padding: .85rem 1rem;
  border-left: 4px solid var(--amber);
  background: rgba(255,255,255,.58);
}

.curr-current-term-card strong {
  color: var(--purple-d);
  font-size: 18px;
  font-weight: 400;
}

.curr-current-term-card span {
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.6;
}

.curr-current-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.curr-current-card,
.curr-current-empty {
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(87,16,20,.14);
  background: rgba(255,252,244,.9);
}

.curr-current-card-top {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.curr-current-code,
.curr-current-area {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .25rem .65rem;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.curr-current-code {
  background: var(--purple);
  color: #fff7e7;
}

.curr-current-area {
  background: var(--amber-l);
  color: var(--amber-d);
}

.curr-current-card h3 {
  margin-bottom: .85rem;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 400;
  color: var(--ink);
}

.curr-current-meta {
  display: grid;
  gap: .4rem;
  margin-bottom: .95rem;
  color: var(--ink2);
  font-size: 13px;
}

.curr-current-meta span {
  display: flex;
  gap: .45rem;
  align-items: flex-start;
}

.curr-current-meta i {
  margin-top: .18rem;
  color: var(--amber-d);
}

.curr-current-card p,
.curr-current-empty {
  color: var(--ink2);
  font-size: 14px;
}

.curr-hero-grid { display: block; max-width: 940px; margin: 0 auto; text-align: center; }
.curr-hero-copy { max-width: 760px; margin: 0 auto; }
.curr-hero-copy h1::after { margin-inline: auto; }
.curr-page-kicker { display: block; color: var(--purple); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .75rem; }
.curr-hero-copy > p { color: var(--ink2); font-family: Georgia, 'Times New Roman', serif; font-size: 15px; line-height: 1.9; margin-bottom: 0; }
.curr-at-glance { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 2.5rem; background: rgba(253,249,240,.72); border-top: 3px double rgba(120,86,34,.42); border-bottom: 3px double rgba(120,86,34,.42); }
.curr-at-glance > div { min-height: 0; padding: 1.1rem .75rem; border-left: 1px solid rgba(120,86,34,.23); }
.curr-at-glance > div:first-child { border-left: 0; }
.curr-at-glance i { display: block; color: var(--amber-d); font-size: 17px; margin-bottom: .45rem; }
.curr-at-glance span { display: block; color: var(--ink3); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; margin-bottom: .25rem; }
.curr-at-glance strong { color: var(--ink); font-family: Georgia, 'Times New Roman', serif; font-size: 13px; font-weight: 600; }
.curr-section-heading { max-width: 760px; margin: 4.25rem auto 1.75rem; text-align: center; }
.curr-section-heading > span,
.curr-programs-intro > span { color: var(--purple); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.curr-section-heading h2,
.curr-programs-intro h2 { color: var(--ink); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 400; line-height: 1.15; margin: .55rem 0 .65rem; }
.curr-section-heading p,
.curr-programs-intro p { color: var(--ink2); font-size: 12.5px; line-height: 1.75; }
.curr-areas { max-width: 1180px; margin-inline: auto; padding-top: .5rem; scroll-margin-top: 7rem; }
.curr-areas .page-card { min-height: 220px; padding: 1.75rem; border: 1px solid rgba(120,86,34,.24); border-top: 3px double var(--amber); }
.curr-areas .page-card:nth-child(3n+1) { padding-left: 1.75rem; }

.curr-jump-nav { position: relative; z-index: 2 !important; display: grid; grid-template-columns: minmax(320px, 1fr) auto; align-items: center; gap: 2rem; margin: -3rem -2rem 3.25rem; padding: 1.15rem 2rem; background: linear-gradient(135deg, rgba(112,17,31,.98), rgba(157,22,51,.94)); border-top: 1px solid rgba(255,238,198,.22); border-bottom: 3px double rgba(251,210,112,.82); box-shadow: inset 0 -1px 0 rgba(255,255,255,.12); backdrop-filter: blur(10px); }
.curr-jump-copy { max-width: 650px; }
.curr-jump-copy > span { display: block; color: rgba(251,210,112,.94); font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .2rem; }
.curr-jump-copy strong { display: block; color: #fff8e8; font-family: Georgia, 'Times New Roman', serif; font-size: 18px; font-weight: 700; letter-spacing: 0; }
.curr-jump-copy strong::after { content: ""; display: block; width: 74px; height: 2px; margin-top: .45rem; background: linear-gradient(90deg, rgba(251,210,112,.95), rgba(255,248,232,.68)); }
.curr-jump-copy p { color: rgba(255,248,232,.78); font-size: 10.5px; line-height: 1.55; margin-top: .45rem; }
.curr-jump-actions { display: flex; gap: .4rem; }
.curr-jump-nav button { border: 0; border-bottom: 1px solid rgba(251,210,112,.46); border-radius: 0; background: transparent; color: #fff8e8; cursor: pointer; font-family: inherit; font-size: 9.5px; font-weight: 700; padding: .6rem .55rem; white-space: nowrap; transition: color .15s, border-color .15s; }
.curr-jump-nav button i { color: rgba(251,210,112,.92); font-size: 14px; margin-right: .3rem; vertical-align: -2px; }
.curr-jump-nav button:hover { color: #ffffff; border-color: #fff8e8; }

.curriculum-layout { max-width: 980px; margin: 0 auto; }
.curr-programs-intro { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.curriculum-programs { min-width: 0; }
.curr-head-index { position: absolute; right: 0; top: 0; color: rgba(157,22,51,.16); font-size: 42px; font-weight: 300; line-height: 1; }
#curr-major-card, #curr-minor-card { scroll-margin-top: 8rem; }

.pc-num {
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.pc-q {
  display: block;
  color: var(--purple);
  font-size: 15px;
  margin-bottom: 4px;
}

.req-block {
  border-top: 1px solid rgba(94,17,23,.12);
  padding-top: 1.35rem;
  margin-top: 1.5rem;
}

.req-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-bottom: 0.7rem;
}

.req-step { display: inline-grid; place-items: center; flex: 0 0 30px; width: 30px; height: 30px; border: 1px solid rgba(120,86,34,.34); border-radius: 50%; color: var(--purple); font-family: Georgia, 'Times New Roman', serif; font-size: 10px; font-weight: 700; letter-spacing: .05em; background: rgba(253,249,240,.72); }

.req-title {
  font-size: 17px;
  color: var(--ink);
}

.req-badge {
  font-size: 10px;
  background: var(--amber-l);
  color: var(--amber-d);
  border-radius: 20px;
  padding: 3px 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: auto;
}

.pair-list {
  display: grid;
  gap: 8px;
}

.course,
.pair {
  background: rgba(253,249,240,.58);
  border: 0;
  border-bottom: 1px solid rgba(120,86,34,.22);
  border-radius: 0;
  padding: 1rem;
  font-size: 13px;
  color: var(--ink2);
}

.course-code {
  color: var(--purple);
  font-weight: 700;
  display: inline-block;
  min-width: 74px;
  margin-right: 10px;
}

.course-name {
  color: var(--ink2);
}

.pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.pair-or {
  color: var(--amber-d);
  font-size: 11px;
  text-transform: uppercase;
}

.req-text,
.req-foot {
  color: var(--ink2);
  font-size: 13px;
}

/* ── ADMIN ───────────────────────────────────────────────────── */

.added-text-block {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  background: rgba(255, 248, 236, 0.88);
  border: 1px solid rgba(157,22,51,0.14);
  border-radius: 8px;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.page[data-fresh] {
  animation: fadeInUp 0.4s cubic-bezier(0.22,1,0.36,1) both;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s cubic-bezier(0.22,1,0.36,1),
    transform 0.55s cubic-bezier(0.22,1,0.36,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.rd1 {
  transition-delay: 0.04s;
}

.rd2 {
  transition-delay: 0.1s;
}

.rd3 {
  transition-delay: 0.16s;
}

.rd4 {
  transition-delay: 0.22s;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav {
    padding: 0 1rem;
  }

  .nav-tab {
    padding: 0 10px;
    font-size: 11px;
  }

  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .curr-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .curr-at-glance { max-width: 620px; }
  .curr-body { padding: 3rem 1.25rem 4rem; }
  .curr-jump-nav { grid-template-columns: 1fr; gap: .7rem; padding: .85rem 1rem; }
  .curr-jump-copy p { display: none; }
  .curr-jump-actions { overflow-x: auto; padding-bottom: 2px; }
  .curr-jump-nav button { flex: 0 0 auto; }
  .curr-current-grid { grid-template-columns: 1fr; }
  .curr-current-courses { padding: 1.25rem; }
  .application-hero { grid-template-columns: 1fr; align-items: start; padding-top: 4rem; }
  .application-callout { min-height: 0; }
  .application-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .application-quick-facts,
  .application-path-grid,
  .application-checklist-card,
  .after-pathways-grid { grid-template-columns: 1fr; }
  .after-pathways-grid article { min-height: 0; }

  .essential-grid { grid-template-columns: repeat(2, 1fr); }
  .shimer-journey { grid-template-columns: 1fr; gap: 2.75rem; padding-block: 4rem; }
  .community-overview { grid-template-columns: 1fr; gap: 2rem; }
  .community-pillars { grid-template-columns: 1fr; }
  .community-pillars article { min-height: 0; }
  .community-belonging-grid { grid-template-columns: 1fr; }
  .community-belonging-grid article { min-height: 0; }
  .org-empty { grid-template-columns: 1fr; align-items: start; }
  .org-empty-icon,
  .org-empty h3,
  .org-empty p,
  .org-empty-actions { grid-column: auto; grid-row: auto; }
  .org-empty-actions { justify-content: flex-start; }

  .hero.hero-video-section {
    min-height: 74vh;
  }

  .hero.hero-video-section .hero-l {
    min-height: 74vh;
    max-width: 100%;
    padding: 4rem 0 5.5rem;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-sub {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-video-cards {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    border-left: none;
    border-right: none;
  }

  .hero-video-cards button {
    border-right: none;
    border-bottom: 1px solid rgba(200,146,17,0.28);
  }

  .hero-video-cards button:last-child {
    border-bottom: none;
  }

  .faces-wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .mktg-strip,
  .home-grid,
  .sched-wrap,
  .info-grid,
  .newsletter-page-grid,
  .application-program-grid,
  .application-support-grid,
  .page-card-row,
  .orgs-grid,
  .info-cards {
    grid-template-columns: 1fr;
  }

  .hg-main,
  .sched-side,
  .info-nav {
    border-right: none;
  }

  .stat {
    border-left: none;
    padding-left: 0;
  }

  .page-card,
  .home-grid > div:last-child {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e5dcc5;
    padding-top: 1.25rem;
    margin-top: 1.25rem;
  }

  .page-card:first-child,
  .home-grid > div:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .why-shimer { padding-block: 3.25rem; }
  .mktg-card { min-height: 0; }

  .sched-side {
    border-bottom: 1px solid var(--cream3);
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .pair {
    grid-template-columns: 1fr;
  }

  .pair-or {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .application-hero,
  .application-section {
    width: calc(100vw - 2rem);
    max-width: 358px;
    margin-left: 1rem;
    margin-right: auto;
  }

  .application-hero *,
  .application-section * {
    max-width: 100%;
  }

  .application-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .application-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .application-callout,
  .application-quick-facts,
  .application-checklist-card {
    width: 100%;
  }

  .application-hero h1 {
    font-size: clamp(38px, 14vw, 54px);
    letter-spacing: -.04em;
    overflow-wrap: break-word;
  }

  .application-hero p,
  .application-callout p,
  .application-section-head p,
  .application-checklist-card p,
  .application-checklist-card li {
    overflow-wrap: anywhere;
  }

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

  .application-steps article,
  .application-path-grid article,
  .application-support-grid article,
  .application-program-card {
    padding: 1.2rem;
  }

  .application-quick-facts {
    grid-template-columns: 1fr;
  }

  .application-checklist-card {
    padding: 1.4rem;
  }
}

.cms-block-section {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem) clamp(2.5rem, 4vw, 4rem);
}

.cms-block-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.cms-block {
  overflow: hidden;
  border: 1px solid rgba(94, 17, 23, 0.14);
  border-radius: 8px;
  background: var(--cream2);
  box-shadow: 0 14px 28px rgba(24, 20, 15, 0.08);
  grid-column: span 4;
  min-width: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cms-block:hover {
  transform: translateY(-3px);
  border-color: rgba(94, 17, 23, 0.28);
  box-shadow: 0 20px 36px rgba(24, 20, 15, 0.12);
}

.cms-block-size-wide,
.cms-block-size-full {
  grid-column: span 6;
}

.cms-block-size-full {
  grid-column: 1 / -1;
}

.cms-block-purple { background: linear-gradient(180deg, #fffaf1, var(--purple-l)); border-color: rgba(94, 17, 23, 0.22); }
.cms-block-amber { background: linear-gradient(180deg, #fffaf1, var(--amber-l)); border-color: rgba(200, 146, 17, 0.28); }
.cms-block-teal { background: linear-gradient(180deg, #fffaf1, var(--teal-l)); border-color: rgba(30, 122, 118, 0.22); }
.cms-block-coral { background: linear-gradient(180deg, #fffaf1, var(--coral-l)); border-color: rgba(171, 70, 62, 0.22); }

.cms-block img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.05);
}

.cms-block-size-full img {
  aspect-ratio: 21 / 9;
}

.cms-block-type-image .cms-block-body:empty,
.cms-block-type-youtube .cms-block-body:empty {
  display: none;
}

.cms-block-body {
  padding: clamp(1rem, 2.2vw, 1.35rem);
}

.cms-block-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  line-height: 1.25;
  color: var(--ink);
}

.cms-block p {
  margin: 0.45rem 0 0;
  line-height: 1.65;
  color: var(--ink2);
}

.cms-block-text-small { font-size: 0.86rem; }
.cms-block-text-large { font-size: 1.12rem; }
.cms-block-text-xlarge { font-size: 1.28rem; }
.cms-block-text-small .cms-block-title { font-size: 1.15rem; }
.cms-block-text-large .cms-block-title { font-size: 1.7rem; }
.cms-block-text-xlarge .cms-block-title { font-size: 2.05rem; }

.cms-block-media-short img { height: 180px; object-fit: cover; }
.cms-block-media-normal img { height: 300px; object-fit: cover; }
.cms-block-media-tall img { height: 480px; object-fit: cover; }
.cms-block-media-short .cms-video-wrap { aspect-ratio: 21 / 9; }
.cms-block-media-normal .cms-video-wrap { aspect-ratio: 16 / 9; }
.cms-block-media-tall .cms-video-wrap { aspect-ratio: 4 / 3; }

.cms-block-caption {
  margin-top: 0.75rem;
  font-size: 0.84rem;
  color: var(--ink3);
  line-height: 1.5;
}

.cms-block-type-quote .cms-block-title {
  position: relative;
  padding-left: 1.3rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-family: Georgia, serif;
  line-height: 1.25;
}

.cms-block-type-quote .cms-block-title::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -0.25rem;
  color: var(--amber);
  font-size: 2.2rem;
}

.cms-block-type-notice {
  border-left: 4px solid var(--amber);
}

.cms-block-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.9rem;
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
}

.cms-block-link:hover {
  text-decoration: underline;
}

.cms-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}

.cms-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .cms-block,
  .cms-block-size-wide {
    grid-column: span 6;
  }
}

@media (max-width: 600px) {
  /* Mobile guardrail:
     The top nav intentionally scrolls horizontally, but page bodies should not
     inherit that wider scroll area. The page-specific width clamps below keep
     dense pages readable on phones without changing desktop layout. */
  html,
  body {
    overflow-x: hidden;
  }

  .nav {
    box-sizing: border-box;
    overflow: hidden;
  }

  .nav-tabs {
    box-sizing: border-box;
    max-width: 100vw;
  }

  #page-curriculum {
    width: 100vw;
    max-width: 100vw;
    overflow-x: clip;
  }

  #page-curriculum .page-hero,
  #page-curriculum .curr-body,
  #page-curriculum .curr-current-courses {
    box-sizing: border-box;
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
  }

  #page-curriculum .curriculum-layout,
  #page-curriculum .curr-areas,
  #page-curriculum .curr-section-heading,
  #page-curriculum .curr-programs-intro,
  #page-curriculum .curr-hero-copy {
    box-sizing: border-box;
    width: 358px;
    max-width: 358px;
    min-width: 0;
    margin-left: 1rem;
    margin-right: auto;
  }

  #page-curriculum .curr-at-glance,
  #page-curriculum .curr-current-term-card,
  #page-curriculum .curr-current-grid,
  #page-curriculum .curr-current-card,
  #page-curriculum .curr-card,
  #page-curriculum .req-block {
    box-sizing: border-box;
    width: 358px;
    max-width: 358px;
    min-width: 0;
    margin-left: 1rem;
    margin-right: auto;
  }

  @media (max-width: 360px) {
    #page-curriculum .curriculum-layout,
    #page-curriculum .curr-areas,
    #page-curriculum .curr-section-heading,
    #page-curriculum .curr-programs-intro,
    #page-curriculum .curr-hero-copy,
    #page-curriculum .curr-at-glance,
    #page-curriculum .curr-current-term-card,
    #page-curriculum .curr-current-grid,
    #page-curriculum .curr-current-card,
    #page-curriculum .curr-card,
    #page-curriculum .req-block {
      width: calc(100vw - 2rem);
      max-width: calc(100vw - 2rem);
    }
  }

  #page-curriculum h1,
  #page-curriculum h2,
  #page-curriculum h3,
  #page-curriculum p,
  #page-curriculum li,
  #page-curriculum strong {
    overflow-wrap: anywhere;
  }

  /* Curriculum: force the data-heavy cards into a single readable column. */
  #curriculum-canvas { opacity: .54; }
  .curr-jump-nav { margin: -2rem -1rem 2rem; }
  .curr-at-glance { grid-template-columns: 1fr; max-width: 100%; }
  .curr-at-glance > div { min-height: 104px; padding: 1rem; }
  #curr-areas,
  #curr-major-card,
  #curr-minor-card { scroll-margin-top: 8rem; }
  .curr-card { padding: 1.25rem; }
  .curr-areas .page-card,
  .curr-areas .page-card:nth-child(3n+1) { min-height: 0; padding: 1.25rem; margin-top: .75rem; border: 1px solid rgba(94,17,23,.11); }
  .curr-head { padding-right: 2.5rem; }
  .curr-head-index { font-size: 32px; }
  .course-code { display: block; margin-bottom: .3rem; }
  .req-title { flex: 1 1 calc(100% - 48px); }
  .req-badge { margin-left: 42px; }

  .home-essentials { padding: 3.5rem 1rem; }
  .essential-grid { grid-template-columns: 1fr; }
  .essential-card { min-height: 0; }
  .shimer-journey { padding: 3.5rem 1rem; }
  .community-overview { padding: 3rem 1rem; }
  .community-belonging { margin: 0 1rem 1rem; padding: 1.35rem; }
  .orgs-directory-head { padding: 2.5rem 1rem 0; }
  .orgs-grid { padding: 1.5rem 1rem 2.5rem; }
  .org-empty-actions { display: grid; grid-template-columns: 1fr; }
  .org-empty-actions button { width: 100%; }
  .after-pathways { padding: 1.35rem; }

  /* Community: the hero, overview cards, and new "ways to belong" area have
     wide desktop grids. Anchor their readable content to the mobile viewport. */
  #page-orgs {
    width: 100vw;
    max-width: 100vw;
    overflow-x: clip;
  }

  #page-orgs .orgs-hero,
  #page-orgs .community-overview,
  #page-orgs .community-belonging,
  #page-orgs .orgs-directory-head,
  #page-orgs .orgs-grid {
    box-sizing: border-box;
    width: 100vw;
    max-width: 100vw;
    overflow-x: clip;
  }

  #page-orgs .orgs-hero > *,
  #page-orgs .community-intro,
  #page-orgs .community-pillars,
  #page-orgs .community-belonging-head,
  #page-orgs .community-belonging-grid,
  #page-orgs .orgs-directory-head > * {
    box-sizing: border-box;
    width: 358px;
    max-width: 358px;
    min-width: 0;
    margin-left: 0;
    margin-right: auto;
    overflow-wrap: anywhere;
  }

  /* After Shimer: keep alumni cards and the crimson pathways block inside the
     phone viewport while preserving the desktop three-column layout above. */
  #page-after {
    width: 100vw;
    max-width: 100vw;
    overflow-x: clip;
  }

  #page-after .page-hero {
    box-sizing: border-box;
    width: 100vw;
    max-width: 100vw;
    overflow-x: clip;
  }

  #page-after .page-hero > h1,
  #page-after .page-hero > p,
  #page-after .page-card-row,
  #page-after .after-pathways,
  #page-after .cta-btns {
    box-sizing: border-box;
    width: 358px;
    max-width: 358px;
    min-width: 0;
    margin-left: 0;
    margin-right: auto;
    overflow-wrap: anywhere;
  }

  #page-after .after-pathways-grid,
  #page-after .after-pathways-head {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .cms-block {
    grid-column: 1 / -1;
  }

  .cms-block-size-wide,
  .cms-block-size-full {
    grid-column: 1 / -1;
  }

  .cms-block-size-full img {
    aspect-ratio: 16 / 10;
  }

  .nav {
    height: auto;
    min-height: 56px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 0.55rem 0.75rem 0;
  }

  .nav-tabs {
    width: 100%;
    margin: 0 -0.75rem;
    padding: 0 0.75rem 6px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .nav-tab {
    height: 36px;
  }

  .hero.hero-video-section {
    min-height: 70vh;
  }

  .hero.hero-video-section .hero-l {
    min-height: 70vh;
    padding: 3rem 0 5rem;
  }

  .hero-h {
    font-size: 40px;
  }

  .hero-eyebrow {
    font-size: 10px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.7;
  }

  .page-hero,
  .ev-hero,
  .orgs-hero,
  .info-hero,
  .newsletter-page-hero {
    padding: 2rem 1rem;
  }

  .curr-body,
  .events-list,
  .info-content,
  .sched-main {
    padding: 1rem;
  }

  .faces-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer {
    padding: 2rem 1rem;
  }

  .mf-row {
    flex-direction: column;
  }

  #admin-bar {
    overflow-x: auto;
    padding: 0 0.75rem;
  }

  /* Mobile polish: keep content readable, tappable, and inside the viewport. */
  html { scroll-padding-top: 104px; }
  body { overflow-wrap: anywhere; }

  .nav-brand { gap: 8px; }
  .nav-seal { width: 29px; height: 29px; }
  .nav-name { font-size: 14px; }
  .nav-name small { font-size: 8px; }
  .nav-tab {
    min-width: max-content;
    min-height: 42px;
    padding: 0 12px;
    scroll-snap-align: start;
  }

  .hero-content { padding: 0 1rem; }
  .hero-h { font-size: clamp(2.25rem, 12vw, 3.2rem); line-height: 0.98; }
  .hero-btns { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-btns button { width: 100%; min-height: 46px; }
  .hero-foot { font-size: 11px; line-height: 1.5; }

  .page-title,
  .ev-title,
  .orgs-title,
  .info-title,
  .newsletter-page-title { font-size: clamp(1.9rem, 9vw, 2.7rem); line-height: 1.08; }

  .page-card-row,
  .orgs-grid,
  .info-cards,
  .newsletter-page-grid { gap: 0; }

  .faces-panel,
  .stats-row,
  .page-card,
  .org-card,
  .info-card,
  .newsletter-page-card { min-width: 0; }

  .faces-wrap { gap: 0.55rem; }
  .face-card { min-width: 0; }
  .face-name { font-size: 12px; }
  .face-role { font-size: 9px; }

  .cms-block-section { padding: 1.25rem 0.75rem 2rem; }
  .cms-block-grid { display: block; }
  .cms-block { margin-bottom: 0.9rem; }
  .cms-block:hover { transform: none; }
  .cms-block-text-xlarge { font-size: 1.12rem; }
  .cms-block-text-xlarge .cms-block-title { font-size: 1.7rem; }
  .cms-block-media-tall img { height: min(420px, 75vh); }

  button,
  .cms-block-link,
  input,
  select,
  textarea { max-width: 100%; }
  input,
  select,
  textarea { font-size: 16px; }
}
