@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url(../fonts/source-serif-4-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url(../fonts/source-serif-4-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy: #14264F;
  --navy-2: #1D3461;
  --navy-3: #28437A;
  --navy-4: #0B1730;
  --sky: #B5D4F4;
  --sky-2: #85B7EB;
  --blue: #185FA5;
  --blue-deep: #0C447C;
  --ink: #1C2233;
  --ink-2: #525B70;
  --ink-3: #626A7E;
  --paper: #FFFFFF;
  --cloud: #F4F6FA;
  --cloud-2: #EAEFF7;
  --line: #E2E7F0;
  --line-2: #D2DAE8;
  --green: #0F6E56;
  --green-bg: #E1F5EE;
  --mod-1: #1B4FA0;
  --mod-1-bg: #E7EFFA;
  --mod-2: #0E6E86;
  --mod-2-bg: #E0F1F5;
  --mod-3: #4B3F9E;
  --mod-3-bg: #ECEAF8;
  --red: #A32020;
  --red-bg: #FDECEC;

  --wrap: 1120px;
  --pad-x: clamp(1.25rem, 5vw, 2.5rem);
  --gap: clamp(1rem, 2.6vw, 1.5rem);
  --gap-lg: clamp(1.5rem, 4vw, 2.5rem);
  --section-y: clamp(3rem, 7.5vw, 5rem);
  --tap: 44px;
  --bar: 4.125rem;

  --r-sm: .5rem;
  --r-md: .75rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-pill: 999px;

  --fs-2xs: .75rem;
  --fs-xs: clamp(.8125rem, .79rem + .1vw, .875rem);
  --fs-sm: clamp(.875rem, .85rem + .12vw, .9375rem);
  --fs-md: clamp(1rem, .97rem + .16vw, 1.0625rem);
  --fs-lg: clamp(1.0625rem, 1rem + .35vw, 1.1875rem);
  --fs-xl: clamp(1.125rem, 1.05rem + .5vw, 1.3125rem);
  --h3: clamp(1.125rem, 1.05rem + .45vw, 1.3125rem);
  --h2: clamp(1.5rem, 1.2rem + 1.4vw, 2.125rem);
  --h1: clamp(1.875rem, 1.45rem + 2.1vw, 3rem);

  --shadow-xs: 0 1px 2px rgba(20, 38, 79, .06);
  --shadow-sm: 0 2px 10px -2px rgba(20, 38, 79, .08);
  --shadow-md: 0 14px 34px -18px rgba(20, 38, 79, .32);
  --shadow-lg: 0 30px 70px -30px rgba(20, 38, 79, .45);
  --ring: 0 0 0 3px rgba(24, 95, 165, .22);
  --dur: .18s;
}

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;

  scroll-padding-top: var(--bar);
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: break-word;
  text-wrap: balance;
}

p { text-wrap: pretty; }

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: rgba(20, 38, 79, .08); }

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

ul, ol { list-style: none; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

.hero :focus-visible,
.bhead :focus-visible,
.phero :focus-visible,
.enroll-bar :focus-visible,
.enroll-box :focus-visible,
footer :focus-visible { outline-color: var(--sky-2); }

::selection { background: var(--sky); color: var(--navy); }

.skip-link {
  position: fixed;
  top: .5rem;
  left: 50%;
  z-index: 200;
  translate: -50% -200%;
  padding: .75rem 1.25rem;
  border-radius: var(--r-pill);
  background: var(--navy);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: translate var(--dur) ease;
}
.skip-link:focus { translate: -50% 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: max(var(--pad-x), env(safe-area-inset-left)) max(var(--pad-x), env(safe-area-inset-right));
}

section { padding-block: var(--section-y); }
section[id] { scroll-margin-top: 0; }
.alt { background: var(--cloud); }
.tight { padding-block: clamp(2rem, 5vw, 3rem); }

.sec-head {
  max-width: 42rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}
.sec-head .eyebrow { color: var(--blue); display: block; margin-bottom: .625rem; }
.sec-head h2 { font-size: var(--h2); margin-bottom: .5rem; }
.sec-head p { color: var(--ink-2); font-size: var(--fs-md); }

.eyebrow {
  font-size: var(--fs-2xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}

.tag {
  display: inline-block;
  font-size: var(--fs-2xs);
  font-weight: 600;
  line-height: 1.5;
  padding: .3rem .75rem;
  border-radius: var(--r-pill);
}

.prose { max-width: 46rem; }
.prose > p { margin-bottom: 1rem; color: var(--ink-2); }
.prose > p:last-child { margin-bottom: 0; }
.prose h3 { font-size: var(--h3); margin: clamp(1.5rem, 4vw, 2rem) 0 .625rem; color: var(--ink); }
.lede { font-size: var(--fs-lg); color: var(--ink); }
.prose > .lede { color: var(--ink); }

ul.clean { display: grid; gap: .5rem; color: var(--ink-2); }
ul.clean li { position: relative; padding-left: 1.375rem; }
ul.clean li::before {
  content: "";
  position: absolute;
  left: .125rem;
  top: .6em;
  width: .4375rem;
  height: .4375rem;
  border-radius: 50%;
  background: var(--sky-2);
}

.btn {
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: var(--tap);
  padding: .75rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  background: none;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: background var(--dur) ease, color var(--dur) ease,
              border-color var(--dur) ease, box-shadow var(--dur) ease,
              transform var(--dur) ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-3); }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #fff; box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .5); }

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

.btn-ghost { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .12); }

.btn-sm { min-height: 2.5rem; padding: .5rem 1rem; font-size: var(--fs-xs); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }

.enroll-bar {
  background: var(--navy);
  color: #fff;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.enroll-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .375rem .75rem;
  padding-block: .5rem;
  font-size: var(--fs-xs);
  line-height: 1.45;
  text-align: center;
}
.enroll-in .dot {
  width: .5rem;
  height: .5rem;
  flex: none;
  border-radius: 50%;
  background: var(--sky-2);
  box-shadow: 0 0 0 0 rgba(133, 183, 235, .5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(133, 183, 235, .55); }
  70% { box-shadow: 0 0 0 8px rgba(133, 183, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(133, 183, 235, 0); }
}
.enroll-in strong { color: #fff; font-weight: 600; }
.enroll-in .edition { display: none; }
.enroll-in .date {
  background: var(--sky-2);
  color: var(--navy);
  font-weight: 700;
  padding: .0625rem .625rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.enroll-in .go {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  min-height: 1.75rem;
  padding-inline: .25rem;
  border-radius: var(--r-sm);
  color: var(--sky);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.enroll-in .go:hover { color: #fff; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) ease;
}
.topbar.is-stuck { box-shadow: var(--shadow-sm); }

.topbar-in {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.5rem);
  padding-block: .625rem;
}
.topbar-logo {
  flex: 0 1 auto;
  min-width: 0;
  display: block;
  border-radius: var(--r-sm);
}
.topbar-logo img {
  height: clamp(2.25rem, 7vw, 2.75rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav-desktop { display: none; }
.topbar-cta { display: none; }

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
  min-height: var(--tap);
  min-width: var(--tap);
  padding: .5rem .75rem;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--navy);
  font-size: var(--fs-xs);
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--dur) ease, background var(--dur) ease;
}
.menu-btn:hover { border-color: var(--navy-3); }
.menu-btn .bars {
  position: relative;
  display: block;
  width: 1.125rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: background var(--dur) ease;
}
.menu-btn .bars::before,
.menu-btn .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: translate var(--dur) ease, rotate var(--dur) ease;
}
.menu-btn .bars::before { translate: 0 -6px; }
.menu-btn .bars::after { translate: 0 6px; }
.menu-btn[aria-expanded="true"] .bars { background: transparent; }
.menu-btn[aria-expanded="true"] .bars::before { translate: 0 0; rotate: 45deg; }
.menu-btn[aria-expanded="true"] .bars::after { translate: 0 0; rotate: -45deg; }

.mnav {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: grid-template-rows .24s ease, visibility 0s linear .24s;
}
.mnav.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows .24s ease;
  box-shadow: var(--shadow-md);
}
.mnav-in { overflow: hidden; }
.mnav-list {
  display: grid;
  padding-inline: max(var(--pad-x), env(safe-area-inset-left)) max(var(--pad-x), env(safe-area-inset-right));
  padding-block: .5rem .875rem;
  max-width: var(--wrap);
  margin-inline: auto;
}
.mnav a:not(.btn) {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding-block: .5rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: var(--fs-sm);
  font-weight: 500;
}
.mnav a:not(.btn):hover { color: var(--navy); }
.mnav a:not(.btn)[aria-current="page"] { color: var(--navy); font-weight: 700; }
.mnav .btn { margin-top: .875rem; }
.mnav .btn ~ .btn { margin-top: .5rem; }
.mnav a.btn { border-bottom: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(90% 120% at 12% 0%, rgba(133, 183, 235, .22), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
}
.hero-art {
  position: absolute;
  inset-block-end: 0;
  inset-inline-end: 0;
  z-index: 1;
  width: min(135%, 40rem);
  opacity: .3;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 45%);
  mask-image: linear-gradient(to bottom, transparent, #000 45%);
}
.hero-art img { width: 100%; height: auto; }
.hero-in {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.75rem, 9vw, 5rem);
}

.hero .eyebrow,
.hero h1,
.hero > .wrap > p,
.hero-cta { max-width: 34rem; }
.hero-meta { max-width: 44rem; }
.hero .eyebrow { display: block; color: var(--sky-2); margin-bottom: 1rem; }
.hero h1 { font-size: var(--h1); margin-bottom: 1rem; }
.hero > .wrap > p {
  font-size: var(--fs-lg);
  color: var(--sky);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  max-width: 34rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-cta .btn { flex: 1 1 15rem; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(10.5rem, 100%), 1fr));
  gap: clamp(.875rem, 3vw, 2rem);
  margin-top: clamp(2rem, 5vw, 2.75rem);
}
.hero-meta div {
  border-left: 2px solid rgba(181, 212, 244, .4);
  padding-left: .875rem;
}
.hero-meta strong {
  display: block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: var(--fs-xl);
  font-weight: 700;
}
.hero-meta span { font-size: var(--fs-xs); color: var(--sky-2); line-height: 1.35; }

.bhead {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: var(--navy);
}
.bhead .band,
.bhead .band2 {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  transform: skewX(-14deg);
  pointer-events: none;
}
.bhead .band {
  left: -6%;
  width: 52%;
  background: linear-gradient(120deg, var(--navy-3), var(--navy-2));
  opacity: .55;
}
.bhead .band2 {
  left: -10%;
  width: 40%;
  background: linear-gradient(120deg, var(--blue), transparent);
  opacity: .3;
}
.bhead .motif {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  z-index: 1;
  width: min(30%, 20rem);
  opacity: .28;
  pointer-events: none;
}
.bhead-in {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.25rem, 6vw, 3.5rem);
}
.bhead h1 { font-size: var(--h1); font-weight: 700; line-height: 1.1; margin-bottom: .5rem; }
.bhead .sub {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.0625rem, .95rem + .8vw, 1.5rem);
  font-weight: 500;
  color: var(--sky-2);
}
.bhead .lead { color: var(--sky); max-width: 40rem; margin-top: 1.125rem; }
.tagrow { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.tagrow .tag {
  background: rgba(133, 183, 235, .18);
  color: var(--sky);
  border: 1px solid rgba(133, 183, 235, .38);
}

.phero {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(80% 140% at 90% 0%, rgba(133, 183, 235, .2), transparent 62%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}
.phero-in {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.25rem, 6vw, 3.5rem);
}
.phero .eyebrow { display: block; color: var(--sky-2); margin-bottom: .75rem; }
.phero h1 { font-size: clamp(1.75rem, 1.35rem + 1.8vw, 2.5rem); margin-bottom: .75rem; max-width: 46rem; }
.phero p { color: var(--sky); max-width: 42rem; }
.phero .hero-meta { margin-top: clamp(1.5rem, 4vw, 2rem); }

.bhead,
.phero-tall { display: flex; align-items: center; }
.bhead > .wrap,
.phero-tall > .wrap { width: 100%; }

.crumbs {
  font-size: var(--fs-xs);
  color: var(--sky-2);
  margin-bottom: 1rem;
}
.crumbs a {
  display: inline-block;
  padding-block: .25rem;
  color: var(--sky);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.crumbs a:hover { color: #fff; }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: var(--gap);
  align-items: start;
}

.card-flat,
.card,
.mod,
.person,
.step,
.date-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
}

.card-flat { padding: clamp(1.25rem, 3.5vw, 1.75rem); }
.card-flat h3 { font-size: var(--h3); margin-bottom: .5rem; }
.card-flat p { color: var(--ink-2); font-size: var(--fs-sm); }
.card-flat ul.clean { font-size: var(--fs-sm); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
  gap: var(--gap);
}
.card {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  padding: clamp(1.25rem, 3.5vw, 1.875rem);
  transition: border-color var(--dur) ease, box-shadow var(--dur) ease, transform var(--dur) ease;
}
@media (hover: hover) {
  .card:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); transform: translateY(-2px); }
}
.card .tag { background: #E6F1FB; color: var(--blue-deep); align-self: flex-start; }
.card h3 { font-size: var(--h3); }
.card .desc { font-size: var(--fs-sm); color: var(--ink-2); }

.card-facts { display: grid; gap: .5rem; font-size: var(--fs-sm); }
.card-facts div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .25rem 1rem;
  padding-block: .4375rem;
  border-bottom: 1px solid var(--line);
}
.card-facts dt, .card-facts .k { color: var(--ink-2); }
.card-facts dd, .card-facts .v { font-weight: 600; text-align: right; }

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-top: auto;
}
.card-actions .btn { flex: 1 1 11rem; }

.chips { display: flex; flex-wrap: wrap; gap: .4375rem; }
.chips span {
  font-size: var(--fs-2xs);
  line-height: 1.6;
  background: var(--cloud);
  border: 1px solid var(--line);
  padding: .1875rem .6875rem;
  border-radius: var(--r-pill);
  color: var(--ink-2);
}

.mods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
  gap: var(--gap);
}
.mods-stack { grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 2.25rem); }
.mods-stack .mod {
  background: none;
  border: none;
  border-top: 3px solid var(--blue);
  border-radius: 0;
  box-shadow: none;
  padding: 1.25rem 0 0;
}
.mods-stack .mod > p,
.mods-stack .mod > ul,
.mods-stack .mod > .callout { max-width: 54rem; }
.mods-stack .mod-lead { border-top-color: var(--navy); background: none; }
.mod { padding: clamp(1.25rem, 3.5vw, 1.625rem); }
.mod .rn {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--sky-2);
}
.mod h3 { font-size: var(--h3); margin: .375rem 0; }
.mod .meta {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .375rem;
}
.mod p { font-size: var(--fs-sm); color: var(--ink-2); margin-bottom: .75rem; }
.mod ul.clean { font-size: var(--fs-sm); }
.mod .price {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--navy);
  font-family: 'Source Serif 4', Georgia, serif;
}
.mod-lead { border-top: 3px solid var(--navy); background: #F8FAFD; }
.mod-day { border-top: 3px solid var(--blue); }
.mod-day .meta { color: var(--blue); }
.mod-lead .meta { color: var(--navy); font-weight: 700; }
.mod > .callout { margin: .75rem 0 0; }

.people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
  gap: var(--gap);
}
.person { padding: clamp(1.125rem, 3vw, 1.375rem); }
.person h3 { font-size: var(--fs-md); margin-bottom: .125rem; }
.person .role {
  font-size: var(--fs-2xs);
  line-height: 1.4;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: .5rem;
}
.person p { font-size: var(--fs-sm); color: var(--ink-2); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  gap: var(--gap);
}
.step { padding: clamp(1.125rem, 3vw, 1.5rem); }
.step .no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  margin-bottom: .75rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-sm);
}
.step h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: .375rem;
}
.step p { font-size: var(--fs-sm); color: var(--ink-2); }

.dates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(11rem, 100%), 1fr));
  gap: .875rem;
}
.date-card { padding: .875rem 1rem; }
.date-card .n {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.date-card .d {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--navy);
}

.callout {
  border-top: 2px solid var(--navy);
  padding-top: .875rem;
  margin-block: clamp(1.5rem, 4vw, 2rem);
}
.callout h2,
.callout h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}
.callout p { color: var(--ink); font-size: var(--fs-sm); }
.callout p + p { margin-top: .5rem; }
.callout .who { font-family: 'Source Serif 4', Georgia, serif; font-size: var(--fs-lg); line-height: 1.5; }

.facts { display: grid; margin-block: clamp(1.5rem, 4vw, 2rem); border-top: 2px solid var(--navy); }
.facts > div {
  display: grid;
  gap: .125rem 1.5rem;
  padding-block: .625rem;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm);
}
.facts dt {
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.facts dd { color: var(--ink); font-variant-numeric: tabular-nums; }

.mod > .callout {
  border-top: 1px solid var(--line);
  padding: .75rem 0 0;
  margin: 1rem 0 0;
}
.mod > .callout p { font-size: var(--fs-sm); color: var(--ink-2); }

.mtags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.125rem; }
.mtags span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-2xs);
  line-height: 1.6;
  padding: .375rem .75rem .375rem .5rem;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.mtags b {
  padding: .0625rem .4375rem;
  border-radius: var(--r-pill);
  font-size: .6875rem;
  letter-spacing: .02em;
}
.mtags .mm-1 b { background: var(--mod-1-bg); color: var(--mod-1); }
.mtags .mm-2 b { background: var(--mod-2-bg); color: var(--mod-2); }
.mtags .mm-3 b { background: var(--mod-3-bg); color: var(--mod-3); }

.mod-key-1 { border-top: 3px solid var(--mod-1); }
.mod-key-2 { border-top: 3px solid var(--mod-2); }
.mod-key-3 { border-top: 3px solid var(--mod-3); }
.mod-key-1 .rn { color: var(--mod-1); }
.mod-key-2 .rn { color: var(--mod-2); }
.mod-key-3 .rn { color: var(--mod-3); }

.note { font-size: var(--fs-sm); color: var(--ink-2); margin-top: 1rem; }
.section-cta { margin-top: clamp(1.25rem, 3vw, 1.75rem); display: flex; flex-wrap: wrap; gap: .75rem; }

.table-wrap { max-width: 100%; }

.prog { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.prog .h,
.prog .num,
.pricetable .pt-price,
.pricetable .pt-h,
.hero-meta strong,
.date-card .d,
.mod .price { font-variant-numeric: tabular-nums; }
.prog thead { display: none; }
.prog tbody, .prog tr, .prog td { display: block; }
.prog tr {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  column-gap: .75rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: .875rem 1rem;
  margin-bottom: .625rem;
  box-shadow: var(--shadow-xs);
}
.prog td { padding: 0; border: none; }
.prog .num {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--cloud);
  color: var(--navy);
  font-size: var(--fs-2xs);
  font-weight: 700;
}
.prog .subj { font-weight: 600; color: var(--ink); line-height: 1.4; }
.prog .h {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
  color: var(--navy);
}
.prog .h::after { content: " godz."; font-weight: 500; color: var(--ink-2); }
.prog .lect {
  grid-column: 2 / 4;
  margin-top: .375rem;
  font-size: var(--fs-xs);
  color: var(--ink-2);
  line-height: 1.45;
}
.prog .mm {
  display: inline-block;
  margin-left: .25rem;
  padding: .0625rem .4375rem;
  border-radius: var(--r-pill);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  vertical-align: middle;
}
.mm-1 { background: var(--mod-1-bg); color: var(--mod-1); }
.mm-2 { background: var(--mod-2-bg); color: var(--mod-2); }
.mm-3 { background: var(--mod-3-bg); color: var(--mod-3); }
.prog tr.prog-total {
  grid-template-columns: 1fr auto;
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.prog tr.prog-total .num { display: none; }
.prog tr.prog-total .subj { grid-column: 1 / 2; color: #fff; font-size: var(--fs-md); }
.prog tr.prog-total .h { color: var(--sky-2); }
.prog tr.prog-total .h::after { color: var(--sky); }
.prog tr.prog-total .lect { grid-column: 1 / 3; color: var(--sky); }

.pricetable { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.pricetable thead { display: none; }
.pricetable tbody, .pricetable tr, .pricetable td { display: block; }
.pricetable tr {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .25rem .75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: .875rem 1rem;
  margin-bottom: .625rem;
  box-shadow: var(--shadow-xs);
}
.pricetable .pt-name { font-weight: 600; }
.pricetable .pt-h { grid-column: 1 / 2; font-size: var(--fs-xs); color: var(--ink-2); }
.pricetable .pt-h::after { content: " godzin"; }
.pricetable .pt-price {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: center;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.pricetable .hl { background: #EEF4FB; border-color: var(--sky-2); }

.dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  gap: .875rem;
}
.dl a {
  display: flex;
  align-items: center;
  gap: .875rem;
  min-height: var(--tap);
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--dur) ease, box-shadow var(--dur) ease, transform var(--dur) ease;
}
@media (hover: hover) {
  .dl a:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
}
.dl .ic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 2.125rem;
  height: 2.5rem;
  border-radius: .25rem;
  background: var(--navy);
  color: #fff;
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.dl .t { display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.dl .s { display: block; font-size: var(--fs-xs); color: var(--ink-3); line-height: 1.4; }
.dl a.dl-soon {
  pointer-events: none;
  background: var(--cloud);
  border-style: dashed;
  box-shadow: none;
}
.dl a.dl-soon .ic { background: var(--ink-3); }
.dl a.dl-soon .t { color: var(--ink-2); }
.badge-soon {
  display: inline-block;
  margin-left: .5rem;
  padding: .125rem .4375rem;
  border-radius: var(--r-pill);
  background: var(--line);
  color: var(--ink-3);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.form {
  display: grid;
  gap: .75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.125rem, 3vw, 1.5rem);
  box-shadow: var(--shadow-sm);
  text-align: left;
  color: var(--ink);
}
.form-row { display: grid; gap: .375rem; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  gap: .875rem;
}
.fl {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-2);
}
.fl .opt { font-weight: 400; color: var(--ink-3); }

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea,
.form select {
  width: 100%;
  min-height: var(--tap);
  padding: .6875rem .875rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: #fff;

  font-size: max(1rem, 16px);
  line-height: 1.5;
  color: var(--ink);
  transition: border-color var(--dur) ease, box-shadow var(--dur) ease;
}
.form textarea { min-height: 6.5rem; resize: vertical; }
.form input::placeholder,
.form textarea::placeholder { color: #9AA3B5; }
.form input:focus-visible,
.form textarea:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--ring);
}
.form input:user-invalid,
.form textarea:user-invalid { border-color: var(--red); }

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .625rem;
  align-items: start;
  font-size: var(--fs-xs);
  line-height: 1.55;
  color: var(--ink-2);
}
.consent input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: .125rem;
  accent-color: var(--navy);
  flex: none;
}
.consent a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

.form-note { font-size: var(--fs-2xs); line-height: 1.5; color: var(--ink-3); }

.form-msg {
  display: none;
  padding: .75rem 1rem;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  border: 1px solid transparent;
}
.form-msg.is-error {
  display: block;
  background: var(--red-bg);
  border-color: #F0C4C4;
  color: var(--red);
}
.form-msg.is-ok {
  display: block;
  background: var(--green-bg);
  border-color: #BEE6D8;
  color: var(--green);
}
.form-msg a { color: inherit; text-decoration: underline; font-weight: 600; }

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.nl {
  display: grid;
  gap: var(--gap-lg);
  align-items: start;
}
.nl-copy .eyebrow { display: block; color: var(--blue); margin-bottom: .625rem; }
.nl-copy h2 { font-size: var(--h2); margin-bottom: .625rem; }
.nl-copy p { color: var(--ink-2); }
.nl-copy .nl-points { margin-top: 1rem; font-size: var(--fs-sm); }

.enroll-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 5vw, 2.75rem);
  color: #fff;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(133, 183, 235, .22), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow-lg);
}
.enroll-grid {
  display: grid;
  gap: var(--gap-lg);
  align-items: start;
}
.enroll-box h2 { color: #fff; font-size: var(--h2); margin-bottom: .625rem; }
.enroll-box .enroll-grid > div > p,
.enroll-box .enroll-lead p { color: var(--sky); }
.enroll-box .mail {
  display: inline-block;
  margin-top: 1rem;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: break-word;
}
.enroll-box .mail:hover { color: var(--sky-2); }
.enroll-box .addr { font-size: var(--fs-sm); color: var(--sky-2); margin-top: .5rem; }
.enroll-box .addr span { display: block; }
.enroll-box .addr a { text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.enroll-box .addr a:hover { color: #fff; }
.enroll-box .btn { margin-top: 1.25rem; }
.enroll-box .alt-note {
  margin-top: 1rem;
  font-size: var(--fs-xs);
  color: var(--sky-2);
}
.enroll-lead { max-width: 42rem; }
.note + .dl { margin-top: 1.25rem; }

footer {
  background: var(--navy);
  color: var(--sky);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: clamp(2.5rem, 6vw, 3.5rem) calc(clamp(1.5rem, 4vw, 2rem) + env(safe-area-inset-bottom));
}
.foot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  gap: var(--gap-lg);
  align-items: start;
}
.foot-logo {
  display: inline-block;
  background: #fff;
  border-radius: var(--r-md);
  padding: .75rem 1rem;
}
.foot-logo img { height: 2.25rem; width: auto; }
.foot-about { font-size: var(--fs-sm); color: var(--sky); margin-top: 1rem; max-width: 22rem; }
.foot h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .75rem;
}
.foot-list { display: grid; }
.foot p { font-size: var(--fs-sm); margin-bottom: .5rem; }
.foot a {
  display: flex;
  align-items: center;
  min-height: 2.25rem;
  font-size: var(--fs-sm);
  overflow-wrap: break-word;
}
.foot a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1rem;
  margin-top: clamp(1.75rem, 4vw, 2.25rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: var(--fs-xs);
  color: var(--sky-2);
}
.foot-bottom a {
  color: var(--sky-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.foot-bottom a:hover { color: #fff; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.link { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.link:hover { color: var(--blue-deep); }
.meta-line { font-size: var(--fs-xs); color: var(--ink-3); }
.nowrap { white-space: nowrap; }
.stack-lg > * + * { margin-top: clamp(1.25rem, 3vw, 1.75rem); }

.err-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}
.err-code {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--sky-2);
}

@media (min-width: 30em) {
  .enroll-in .edition { display: inline; }
}

@media (min-width: 40em) {
  .facts > div { grid-template-columns: 12rem minmax(0, 1fr); align-items: baseline; }
  .facts dt { padding-top: .1875rem; }
}

@media (min-width: 48em) {
  .bhead,
  .phero-tall { min-height: 27.5rem; }

  .hero-cta .btn { flex: 0 1 auto; padding-inline: 1.75rem; }
  .hero-art {
    width: min(68%, 34rem);
    opacity: .5;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 55%);
    mask-image: linear-gradient(to right, transparent, #000 55%);
  }
  .hero-in { padding-block: clamp(3.5rem, 8vw, 5rem); }
  .enroll-in { font-size: var(--fs-sm); gap: .5rem 1rem; padding-block: .5625rem; }
  .form-msg { font-size: var(--fs-md); }
}

@media (min-width: 60em) {
  .nl { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
  .nl .form { max-width: 30rem; }
  .enroll-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(2rem, 4vw, 3rem); }
  .hero-art {
    width: min(58%, 46rem);
    opacity: .95;
    inset-inline-end: -1%;
    -webkit-mask-image: linear-gradient(100deg, transparent 2%, #000 34%);
    mask-image: linear-gradient(100deg, transparent 2%, #000 34%);
  }
  .bhead .motif { display: block; }
}

@media (min-width: 64em) {
  .bhead,
  .phero-tall { min-height: 30rem; }

  .foot { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (min-width: 66em) {
  :root { --bar: 4.5625rem; }
  .topbar-in { padding-block: .875rem; }
  .nav-desktop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.75rem);
    margin-left: auto;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--ink-2);
  }
  .nav-desktop a {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    border-bottom: 2px solid transparent;
    transition: color var(--dur) ease, border-color var(--dur) ease;
  }
  .nav-desktop a:hover { color: var(--navy); border-bottom-color: var(--sky-2); }
  .nav-desktop a[aria-current="page"] { color: var(--navy); font-weight: 700; border-bottom-color: var(--navy); }
  .topbar-cta { display: inline-flex; margin-left: 0; }
  .menu-btn { display: none; }
  .mnav { display: none; }
}

@media (min-width: 64em) {
  .prog,
  .pricetable {
    display: table;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
  }
  .prog thead,
  .pricetable thead { display: table-header-group; }
  .prog tbody,
  .pricetable tbody { display: table-row-group; }
  .prog tr,
  .pricetable tr {
    display: table-row;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
  }
  .prog td, .prog th,
  .pricetable td, .pricetable th {
    display: table-cell;
    padding: .75rem .875rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    text-align: left;
  }
  .prog th {
    background: var(--navy);
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: var(--fs-2xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  .prog .num {
    width: 2.5rem;
    height: auto;
    display: table-cell;
    border-radius: 0;
    background: none;
    color: var(--ink-3);
    font-weight: 500;
  }
  .prog .subj { font-weight: 400; }
  .prog .h { width: 4.5rem; text-align: center; }
  .prog .subj { width: 46%; }
  .prog .lect { width: 30%; }
  .prog .h::after { content: none; }
  .prog .lect { font-size: var(--fs-xs); margin: 0; }
  .prog tbody tr:hover td { background: #FAFBFD; }
  .prog tr:last-child td { border-bottom: none; }

  .prog tr.prog-total .num { display: table-cell; }
  .prog tr.prog-total td { background: var(--cloud); font-weight: 700; color: var(--navy); }
  .prog tr.prog-total .subj { font-size: var(--fs-sm); color: var(--navy); }
  .prog tr.prog-total .h { color: var(--navy); }
  .prog tr.prog-total .lect { color: var(--navy); font-weight: 600; white-space: nowrap; }
  .prog tbody tr.prog-total:hover td { background: var(--cloud); }

  .pricetable th {
    background: var(--cloud);
    font-size: var(--fs-2xs);
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-2);
    font-weight: 600;
  }
  .pricetable .pt-h::after { content: none; }
  .pricetable .pt-h { color: var(--ink-2); font-size: var(--fs-sm); }
  .pricetable .pt-price {
    text-align: right;
    font-family: inherit;
    font-size: var(--fs-sm);
    color: var(--ink);
  }
  .pricetable .hl td { background: #EEF4FB; font-weight: 700; color: var(--navy); }
  .pricetable tr:last-child td { border-bottom: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-in > *,
  .bhead-in > *,
  .phero-in > * { animation: rise .5s cubic-bezier(.2, .7, .3, 1) backwards; }
  .hero-in > *:nth-child(1), .bhead-in > *:nth-child(1), .phero-in > *:nth-child(1) { animation-delay: .04s; }
  .hero-in > *:nth-child(2), .bhead-in > *:nth-child(2), .phero-in > *:nth-child(2) { animation-delay: .1s; }
  .hero-in > *:nth-child(3), .bhead-in > *:nth-child(3), .phero-in > *:nth-child(3) { animation-delay: .16s; }
  .hero-in > *:nth-child(4), .bhead-in > *:nth-child(4), .phero-in > *:nth-child(4) { animation-delay: .22s; }
  .hero-in > *:nth-child(5), .bhead-in > *:nth-child(5), .phero-in > *:nth-child(5) { animation-delay: .28s; }
  .hero-in > *:nth-child(6), .bhead-in > *:nth-child(6), .phero-in > *:nth-child(6) { animation-delay: .34s; }
}
@keyframes rise {
  from { opacity: 0; translate: 0 .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (pointer: coarse) {
  .foot a { min-height: var(--tap); }
  .crumbs a,
  .link,
  .enroll-in .go { padding-block: .25rem; }
}

@media print {
  .topbar, .mnav, .enroll-bar, .hero-art, .skip-link, .form, .err-actions { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .hero, .bhead, .phero, .enroll-box, footer { background: none !important; color: #000; }
  .hero *, .bhead *, .phero *, .enroll-box *, footer * { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
