@font-face {
  font-family: Inter;
  src: url("./fonts/inter-latin.woff2") format("woff2");
  font-weight: 400 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212;
}
@font-face {
  font-family: Inter;
  src: url("./fonts/inter-cyrillic.woff2") format("woff2");
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Oswald;
  src: url("./fonts/oswald-latin.woff2") format("woff2");
  font-weight: 500 700;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212;
}
@font-face {
  font-family: Oswald;
  src: url("./fonts/oswald-cyrillic.woff2") format("woff2");
  font-weight: 500 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* Brand: supplied cream/red artwork, condensed Ukrainian display type, ink-black panels. */
:root {
  --paper: #fff7ec;
  --ink: #191917;
  --red: #df1908;
  --red-dark: #bc1407;
  --muted: #615b54;
  --line: #d9d0c5;
  --display: Oswald, "Arial Narrow", Arial, sans-serif;
  --content: min(1280px, calc(100% - 6rem));
  --radius: 0.75rem;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--red);
  color: white;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-underline-offset: 0.23em;
  text-decoration-thickness: 1px;
}
a:hover {
  color: var(--red);
}
button,
input,
summary {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 5px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(4rem, 8vw, 8rem);
}
h2 {
  font-size: clamp(2.8rem, 5.4vw, 5.25rem);
}
h3 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}
h2 em,
h3 em {
  font-style: normal;
  color: var(--red);
}
p + p {
  margin-top: 1rem;
}
ul,
ol {
  padding-left: 1.25rem;
}
li + li {
  margin-top: 0.4rem;
}
main {
  overflow: clip;
}
.section {
  width: var(--content);
  margin-inline: auto;
  padding-block: 6.25rem;
}
.section-tight {
  padding-top: 0;
}
.eyebrow,
.section-label {
  display: block;
  margin: 0 0 1.4rem;
  font-size: 0.875rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
}
.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  max-width: 41rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 0.3rem;
}
.text-link span {
  font-size: 1.5rem;
  line-height: 1;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 3.6rem;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 5px;
  background: var(--red);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  text-decoration: none;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  color: white;
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 4px 5px 0 #00000029;
}
.button span[aria-hidden] {
  font-size: 1.6rem;
  line-height: 1;
}
.button-dark {
  background: var(--ink);
  color: var(--paper);
}
.button-dark:hover {
  background: #383831;
  color: white;
}
.button-paper {
  background: var(--paper);
  color: var(--ink);
}
.button-paper:hover {
  background: #fff;
  color: var(--ink);
}
.button-secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.button-secondary:hover {
  background: var(--paper);
  color: var(--ink);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.9rem;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(255, 247, 236, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: var(--content);
  min-height: 5.6rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  flex: none;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.brand img {
  width: 3.4rem;
  mix-blend-mode: multiply;
}
.brand > span {
  position: relative;
}
.brand-dot {
  position: absolute;
  top: 0;
  right: -0.8rem;
  font:
    600 0.65rem Inter,
    sans-serif;
  color: var(--red);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.site-nav a {
  text-decoration: none;
}
.site-nav a[aria-current] {
  color: var(--red);
}
.site-nav .nav-join {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 4px;
}
.mobile-menu {
  display: none;
}

/* Home */
.home-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 1rem;
  padding-block: 3.7rem 4.8rem;
  min-height: 730px;
}
.home-hero h1 {
  font-size: clamp(5.5rem, 9.5vw, 9rem);
  line-height: 1.02;
  letter-spacing: -0.047em;
}
.home-hero .lead {
  max-width: 30rem;
  margin-top: 1.6rem;
  font-size: 1.13rem;
}
.home-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
  font-size: 0.8rem;
}
.live-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--red);
  border-radius: 50%;
  flex: none;
}
.hot-word {
  color: var(--red);
}
.hero-footnote {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1rem;
}
.hero-art {
  position: relative;
  align-self: stretch;
  min-width: 0;
  display: grid;
  align-items: center;
}
.hero-mascot {
  position: relative;
  z-index: 2;
  width: 100%;
  transform: rotate(-7deg);
  mix-blend-mode: multiply;
  animation: mascot-enter 0.7s ease-out both;
}
.hero-flame {
  position: absolute;
  z-index: 1;
  right: -3rem;
  top: -0.5rem;
  width: 53%;
  transform: rotate(-25deg);
  opacity: 0.88;
}
.art-coordinate {
  position: absolute;
  left: 4rem;
  top: 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  z-index: 3;
}
.hero-sticker {
  position: absolute;
  z-index: 3;
  right: 0.2rem;
  bottom: 6rem;
  transform: rotate(-8deg);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  line-height: 1.2;
  padding: 0.9rem 1.3rem;
  box-shadow: 5px 5px 0 var(--red);
}
.art-note {
  position: absolute;
  z-index: 3;
  left: 2.5rem;
  bottom: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  transform: rotate(-6deg);
}
.hero-arrow {
  position: absolute;
  z-index: 3;
  width: 5.5rem;
  left: 10.5rem;
  bottom: -0.8rem;
  transform: rotate(105deg);
}
.manifesto-strip {
  overflow: hidden;
  background: var(--red);
  color: var(--paper);
  border-block: 1px solid var(--ink);
  transform: rotate(-1deg) scale(1.02);
}
.manifesto-strip > div {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  min-width: 990px;
  padding: 1.1rem 2rem;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.manifesto-strip b {
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 2.75rem;
}
.section-heading > p {
  max-width: 23rem;
  color: var(--muted);
}
.section-heading .text-link {
  margin-bottom: 0.3rem;
  flex: none;
}
.featured-course {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
}
.featured-copy {
  padding: clamp(2rem, 4vw, 3.4rem);
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.2rem 0.65rem;
  border: 1px solid #756b60;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}
.tag-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.featured-copy h3,
.featured-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 1.8rem 0 1.25rem;
  line-height: 1.15;
}
.featured-copy h3 > span {
  color: #ff5540;
}
.featured-copy > p {
  color: #cfc6bc;
  max-width: 30rem;
}
.course-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  margin: 1.5rem 0 2rem;
  font-size: 0.875rem;
}
.course-facts span {
  border-bottom: 1px solid #756b60;
  padding-bottom: 0.3rem;
}
.course-charity {
  margin-top: 1.3rem;
  font-size: 0.875rem;
  max-width: 25rem;
}
.featured-art {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 3rem;
  background: #292922;
  color: var(--paper);
  text-decoration: none;
  overflow: hidden;
}
.featured-art:hover {
  color: var(--paper);
}
.featured-art img {
  width: 100%;
  transform: rotate(4deg);
  border: 1px solid #8d8072;
  box-shadow: 12px 15px 0 #111;
  transition: transform 0.25s;
}
.featured-art:hover img {
  transform: rotate(0);
}
.art-caption {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.25;
  padding-right: 3rem;
}
.round-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid #7e7468;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.7rem;
}
.free-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.4rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.free-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background: var(--red);
  border-radius: 50%;
  color: white;
  flex: none;
  font-size: 0.9rem;
}
.free-link strong,
.free-link > span > span {
  display: block;
}
.free-link strong {
  font-size: 0.95rem;
}
.free-link > span > span {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 0.1rem;
}
.link-arrow {
  font-size: 2rem;
  margin-left: auto;
}
.community-section {
  background: #f0e6d8;
  border-block: 1px solid var(--line);
}
.community-intro {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
}
.community-intro h2 {
  font-size: clamp(2.8rem, 5.6vw, 5.5rem);
}
.underlined {
  position: relative;
  display: inline-block;
  color: var(--red);
}
.underlined img {
  position: absolute;
  width: 100%;
  height: 1.4rem;
  bottom: -1.25rem;
  object-fit: fill;
}
.community-story .lead {
  font-size: 1.5rem;
}
.community-story > p + p {
  color: var(--muted);
  margin-top: 1.35rem;
}
.community-story .button {
  margin-top: 1.75rem;
}
.community-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  padding-block: 3.5rem 2.75rem;
  margin: 3rem 0 0;
  border-bottom: 1px solid #c6bcaf;
}
.community-numbers > div {
  border-left: 2px solid var(--red);
  padding-left: 1.75rem;
}
.community-numbers dt {
  font-family: var(--display);
  font-size: clamp(3rem, 5.7vw, 5rem);
  line-height: 1;
  color: var(--red);
}
.community-numbers dd {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  max-width: 16rem;
  color: var(--muted);
}
.community-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  margin-top: 2.5rem;
}
.community-principles p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.community-principles span {
  display: block;
  font-size: 0.875rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.community-principles strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-size: 1rem;
}
.photo-story {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 1rem;
}
.photo-story figure {
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: 5px;
}
.photo-story .photo-wide:first-child,
.photo-story .photo-wide:last-child {
  grid-column: span 2;
}
.photo-story img {
  width: 100%;
  height: 21rem;
  object-fit: cover;
  transition: transform 0.4s;
}
.photo-story figure:hover img {
  transform: scale(1.025);
}
.photo-story figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 1.25rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: white;
  font-size: 0.875rem;
}
.event-announcement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.3rem;
  padding: 2.25rem;
  background: #f0e6d8;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.event-announcement .eyebrow {
  color: var(--red);
  margin-bottom: 0.6rem;
}
.event-announcement h3 {
  font-size: 2.15rem;
}
.event-announcement p {
  color: var(--muted);
  margin-top: 0.8rem;
  font-size: 0.95rem;
}
.event-announcement .button {
  flex: none;
}
.founder-section {
  background: var(--ink);
  color: var(--paper);
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr;
  align-items: center;
  gap: 6rem;
}
.founder-portrait {
  transform: rotate(-3deg);
  background: var(--paper);
  padding: 0.65rem 0.65rem 0;
  color: var(--ink);
}
.founder-portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.founder-portrait span {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.8rem 0.2rem;
}
.founder-grid .eyebrow {
  color: #ff7a66;
}
.founder-grid h2 em {
  color: #ff5b46;
}
.founder-grid .lead {
  margin-top: 1.75rem;
  color: var(--paper);
}
.founder-grid p:not(.lead):not(.eyebrow) {
  color: #c3baae;
  max-width: 35rem;
  margin-top: 1.2rem;
}
.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 1.75rem;
}
.founder-links a:hover {
  color: #ff735e;
}
.join-section {
  background: var(--red);
  color: var(--paper);
}
.join-section h2 {
  font-size: clamp(4rem, 9.6vw, 9.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.join-section h2 > span {
  color: var(--ink);
}
.join-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
}
.join-bottom > p {
  font-size: 1.25rem;
  line-height: 1.5;
}
.join-bottom .hero-actions {
  margin: 0;
}
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.footer-inner {
  width: var(--content);
  min-height: 8rem;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 2rem;
}
.footer-mark {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.footer-inner p {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.footer-links a {
  text-decoration: none;
}

/* Catalogue */
.page-hero {
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.breadcrumb a {
  text-decoration: none;
}
.page-hero .lead {
  margin-top: 1.6rem;
  max-width: 38rem;
}
.catalogue-note {
  margin: 1.2rem 0 3.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.archive-section {
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}
.archive-intro {
  margin-top: 1rem;
  max-width: 38rem;
  color: var(--muted);
}
.archive-content {
  padding: 0 1.5rem 1.5rem;
}
.archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.2rem;
}
.archive-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.archive-card > img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.archive-body {
  padding: 1.8rem;
}
.archive-body h3 {
  font-size: 2.15rem;
  margin-block: 0.7rem 1rem;
}
.archive-body p {
  color: var(--muted);
  font-size: 0.95rem;
}
.archive-body .text-link {
  margin-top: 1.4rem;
}
.free-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  background: var(--red);
  color: var(--paper);
  border-radius: var(--radius);
}
.free-band p:not(.eyebrow) {
  margin-top: 1rem;
  max-width: 37rem;
}
.free-band h2 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
}

/* Course landing: full native-HTML curriculum */
.course-landing-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
}
.course-hero-inner {
  position: relative;
  width: var(--content);
  margin: auto;
  padding-block: 3.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.course-hero-inner .breadcrumb {
  color: #c7beb3;
}
.course-hero-inner h1 {
  font-size: clamp(3.7rem, 6.2vw, 6.4rem);
  line-height: 1.12;
  text-transform: uppercase;
}
.course-hero-inner h1 span {
  color: #ff5b46;
}
.course-hero-inner .lead {
  margin-top: 1.5rem;
  color: #cec5bb;
  font-size: 1.1rem;
}
.course-hero-inner .section-label {
  color: #ff7a66;
  margin-bottom: 1rem;
}
.course-cover {
  position: relative;
  min-width: 0;
  align-self: center;
}
.course-cover > img {
  border: 1px solid #8d8173;
  transform: rotate(3deg);
  box-shadow: 14px 14px 0 #000;
}
.course-cover p {
  margin-top: 2.2rem;
  padding: 1rem;
  border-top: 1px solid #61594f;
  font-size: 0.875rem;
  color: #d0c6b9;
}
.course-status {
  margin-top: 1.2rem;
  font-size: 0.875rem;
  color: #bcb4a9;
}
.course-subnav {
  background: #f0e6d8;
  border-bottom: 1px solid var(--line);
}
.course-subnav > nav {
  width: var(--content);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 2rem;
  padding-block: 1.2rem;
  font-size: 0.875rem;
  font-weight: 650;
}
.course-subnav a {
  text-decoration: none;
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.content-block h2 {
  font-size: clamp(2.3rem, 3.7vw, 3.5rem);
  margin-bottom: 1.5rem;
}
.content-block .section-label {
  color: var(--red);
}
.content-block > p:not(.section-label) {
  color: var(--muted);
}
.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  margin: 0;
}
.check-list li::before {
  content: "↳";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.format-section {
  background: #f0e6d8;
  border-block: 1px solid var(--line);
}
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.format-card {
  border-top: 2px solid var(--ink);
  padding-top: 1.5rem;
}
.format-index {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--red);
  display: block;
  margin-bottom: 1.5rem;
}
.format-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.format-card p,
.format-card li {
  color: var(--muted);
  font-size: 1rem;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.audience-card {
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: var(--radius);
}
.audience-card h3 {
  margin-bottom: 1rem;
}
.audience-card p,
.audience-card li {
  color: var(--muted);
}
.pricing-section {
  background: var(--ink);
  color: var(--paper);
}
.pricing-section .section-label {
  color: #ff7a66;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.price-card,
.mission-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
}
.price-card {
  background: var(--paper);
  color: var(--ink);
}
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.price-row:first-child {
  padding-top: 0;
}
.price-row:last-child {
  border: 0;
  padding-bottom: 0;
}
.price-label {
  font-size: 0.95rem;
  max-width: 12rem;
  color: var(--muted);
}
.price-value {
  font-family: var(--display);
  font-weight: 600;
  color: var(--red);
  font-size: 2.5rem;
  white-space: nowrap;
}
.price-free {
  font-size: 2rem;
  color: var(--ink);
}
.mission-card {
  background: var(--red);
}
.mission-card h3 {
  font-size: 2.35rem;
}
.mission-card ul {
  margin: 1.5rem 0 0;
  font-size: 1rem;
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.access-grid h2 {
  margin-bottom: 2rem;
}
.access-steps {
  list-style: none;
  padding: 0;
  counter-reset: access;
  display: grid;
  gap: 1.2rem;
  margin: 0;
}
.access-steps li {
  position: relative;
  padding-left: 3.25rem;
  counter-increment: access;
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}
.access-steps li::before {
  content: counter(access, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -0.2rem;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--red);
}
.access-steps strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-size: 1.05rem;
}
.bank-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--red);
  color: white;
  border-radius: var(--radius);
}
.bank-panel h3 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
}
.bank-panel p {
  font-size: 1rem;
}
.bank-number {
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.55rem);
  letter-spacing: 0.025em;
  font-variant-numeric: tabular-nums;
  user-select: all;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
  padding: 1rem 0.5rem;
  margin: 0.75rem 0 1.2rem;
  border-radius: 4px;
}
.bank-panel .button {
  margin-block: 1.3rem;
  background: var(--ink);
  width: 100%;
}
.bank-panel a:not(.button):hover {
  color: var(--ink);
}
.curriculum-section {
  background: #f0e6d8;
  border-block: 1px solid var(--line);
}
.curriculum-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.curriculum-heading > p {
  color: var(--muted);
  max-width: 30rem;
}
.modules {
  display: grid;
  gap: 0.7rem;
  margin-top: 2.5rem;
}
.module {
  border: 1px solid #c9beb1;
  border-radius: 5px;
  background: var(--paper);
}
.module[open] {
  border-color: var(--ink);
}
.module summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  font-weight: 650;
  font-size: 1.05rem;
}
.module summary::-webkit-details-marker {
  display: none;
}
.module summary::after {
  content: "+";
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1;
  flex: none;
}
.module[open] summary::after {
  content: "−";
}
.module-list {
  columns: 2 310px;
  column-gap: 3rem;
  margin: 0;
  padding: 0.6rem 1.5rem 1.7rem 3rem;
  font-size: 1rem;
}
.module-list li {
  break-inside: avoid;
  margin: 0 0 0.65rem;
  color: var(--muted);
}
.module-list a {
  font-weight: 600;
  color: var(--ink);
}
.module-list a:hover {
  color: var(--red);
}
.lesson-note {
  font-size: 0.875em;
  color: #a31b0e;
}
.instructor-layout {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 5rem;
  align-items: start;
}
.instructor-aside {
  position: sticky;
  top: 8rem;
}
.instructor-photo {
  background: var(--ink);
  border-radius: 5px;
  overflow: hidden;
}
.instructor-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.instructor-name {
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1.1;
  margin-top: 1.3rem;
}
.instructor-latin {
  color: var(--red);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.instructor-aside > a {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.95rem;
}
.instructor-copy h2 {
  font-size: clamp(2.7rem, 4vw, 4rem);
  margin-bottom: 1.75rem;
}
.instructor-copy > p:not(.section-label),
.instructor-copy li {
  color: var(--muted);
}
.quote {
  margin: 2rem 0 0;
  padding: 2rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 5px;
}
.quote p {
  font-size: 1rem;
  line-height: 1.8;
}
.quote cite {
  display: block;
  color: #c7b9a8;
  font-size: 0.875rem;
  font-style: normal;
  margin-top: 1.2rem;
}
.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.contact-strip p {
  font-size: 0.95rem;
}
.not-found {
  min-height: 65svh;
  display: grid;
  place-items: center;
  text-align: center;
}
.not-found h1 {
  color: var(--red);
}
.not-found .lead {
  margin: 1.5rem auto;
}
.not-found .button {
  margin-top: 1rem;
}

@keyframes mascot-enter {
  from {
    transform: translateY(14px) rotate(-3deg);
    opacity: 0.3;
  }
  to {
    transform: translateY(0) rotate(-7deg);
    opacity: 1;
  }
}
@keyframes enter {
  from {
    transform: translateY(16px);
  }
  to {
    transform: translateY(0);
  }
}
.in-view {
  animation: enter 0.55s ease-out both;
}

@media (min-width: 1600px) {
  .home-hero {
    min-height: 810px;
  }
  .hero-sticker {
    bottom: 7rem;
  }
}
@media (max-width: 1050px) {
  :root {
    --content: calc(100% - 4rem);
  }
  .home-hero {
    min-height: 650px;
    grid-template-columns: 1.15fr 1fr;
  }
  .home-hero h1 {
    font-size: 7rem;
  }
  .home-hero .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-hero .button {
    min-width: 15rem;
  }
  .hero-sticker {
    bottom: 6rem;
    right: -0.4rem;
  }
  .art-coordinate {
    left: 1rem;
    top: 3rem;
  }
  .art-note {
    left: 0;
  }
  .hero-arrow {
    left: 8rem;
  }
  .featured-art {
    padding: 2rem;
  }
  .community-intro,
  .founder-grid,
  .access-grid,
  .instructor-layout {
    gap: 3rem;
  }
  .photo-story img {
    height: 17rem;
  }
  .course-hero-inner {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2rem;
  }
  .course-hero-inner h1 {
    font-size: 4.5rem;
  }
  .founder-grid h2 {
    font-size: 3.7rem;
  }
  .join-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 800px) {
  .section {
    padding-block: 4.5rem;
  }
  .site-nav {
    gap: 1.25rem;
  }
  .site-nav .nav-join {
    display: none;
  }
  .home-hero {
    grid-template-columns: 1fr 1fr;
    padding-block: 3rem 4rem;
    min-height: 640px;
  }
  .home-hero h1 {
    font-size: clamp(4rem, 10.5vw, 6rem);
  }
  .home-hero .eyebrow {
    font-size: 0.75rem;
  }
  .home-hero .lead {
    font-size: 1rem;
  }
  .hero-art {
    align-self: center;
    height: 380px;
    margin-right: -1rem;
  }
  .hero-flame {
    right: -1rem;
    top: -3rem;
  }
  .art-coordinate {
    top: -4.5rem;
    left: 0;
    font-size: 0.75rem;
  }
  .art-note,
  .hero-arrow {
    display: none;
  }
  .hero-sticker {
    bottom: 1.7rem;
    font-size: 1.1rem;
  }
  .featured-course {
    grid-template-columns: 1fr;
  }
  .featured-art {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2.5rem;
  }
  .featured-art img {
    max-width: 25rem;
  }
  .art-caption {
    padding: 0;
    font-size: 1.5rem;
  }
  .round-arrow {
    display: none;
  }
  .section-heading {
    gap: 2rem;
  }
  .section-heading > p {
    max-width: 18rem;
    font-size: 1rem;
  }
  .community-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .community-intro h2 {
    font-size: 3.5rem;
  }
  .community-story .lead {
    font-size: 1.2rem;
  }
  .community-numbers {
    gap: 1.5rem;
  }
  .community-numbers > div {
    padding-left: 1rem;
  }
  .community-principles {
    gap: 1.5rem;
  }
  .photo-story {
    grid-template-columns: 1fr 1fr;
  }
  .photo-story .photo-wide:first-child,
  .photo-story .photo-wide:last-child {
    grid-column: auto;
  }
  .photo-story img {
    height: 16rem;
  }
  .event-announcement {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.7rem;
  }
  .founder-grid {
    grid-template-columns: 0.7fr 1fr;
    gap: 2rem;
  }
  .founder-grid h2 {
    font-size: 3rem;
  }
  .founder-links {
    gap: 1rem;
  }
  .founder-links a {
    font-size: 0.9rem;
  }
  .footer-inner {
    justify-content: flex-start;
  }
  .footer-links {
    margin-left: auto;
  }
  .course-hero-inner {
    grid-template-columns: 1fr;
  }
  .course-cover {
    max-width: 33rem;
    display: none;
  }
  .course-hero-inner h1 {
    font-size: 5.5rem;
    max-width: 14ch;
  }
  .two-column {
    gap: 2.5rem;
  }
  .format-grid {
    gap: 1.25rem;
  }
  .format-card h3 {
    font-size: 1.7rem;
  }
  .access-grid,
  .instructor-layout {
    grid-template-columns: 1fr;
  }
  .instructor-aside {
    position: static;
    max-width: 25rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-label {
    max-width: none;
  }
  .free-band {
    grid-template-columns: 1fr;
  }
  .free-band .button {
    justify-self: start;
  }
}
@media (max-width: 600px) {
  :root {
    --content: calc(100% - 2.5rem);
  }
  html {
    scroll-padding-top: 6rem;
  }
  .section {
    padding-block: 3.7rem;
  }
  .header-inner {
    min-height: 4.65rem;
    gap: 1rem;
  }
  .brand {
    font-size: 1.3rem;
  }
  .brand img {
    width: 2.8rem;
  }
  .site-nav {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu > summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.65rem 0.3rem;
  }
  .mobile-menu > summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary span {
    font-size: 1.35rem;
    line-height: 1;
  }
  .mobile-menu[open] summary span {
    transform: rotate(45deg);
  }
  .mobile-menu nav {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: var(--paper);
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--ink);
    box-shadow: 0 10px 15px #0000000d;
  }
  .mobile-menu nav a {
    display: block;
    padding: 0.9rem 0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
  }
  .home-hero {
    display: grid;
    grid-template-columns: 1fr;
    padding-block: 2.5rem 2.8rem;
    gap: 0;
    min-height: 0;
  }
  .home-hero h1 {
    font-size: clamp(4.5rem, 20vw, 7rem);
  }
  .home-hero .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .home-hero .lead {
    font-size: 1.08rem;
    margin-top: 1.4rem;
    max-width: 25rem;
  }
  .home-hero .hero-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 0.6rem;
    margin-top: 1.5rem;
  }
  .home-hero .button {
    min-width: 0;
    flex: 1;
    padding: 0.85rem 0.8rem;
    font-size: 0.875rem;
    gap: 0.6rem;
  }
  .hero-footnote {
    font-size: 0.8rem;
  }
  .hero-art {
    height: auto;
    min-height: 300px;
    width: min(86%, 360px);
    margin: 0.6rem auto 0;
    align-self: auto;
  }
  .hero-mascot {
    width: 100%;
  }
  .hero-flame {
    top: 0;
    right: -2rem;
    width: 48%;
  }
  .art-coordinate {
    display: none;
  }
  .hero-sticker {
    bottom: 1.5rem;
    right: -1.5rem;
    font-size: 1.2rem;
    padding: 0.65rem 1rem;
  }
  .manifesto-strip > div {
    font-size: 1.25rem;
    padding-block: 0.7rem;
    min-width: 850px;
    gap: 1rem;
  }
  .section-heading {
    display: block;
    margin-bottom: 2rem;
  }
  .section-heading .text-link {
    margin-top: 1.5rem;
  }
  .section-heading > p {
    margin-top: 1.5rem;
    max-width: 100%;
  }
  h2 {
    font-size: clamp(2.5rem, 10.5vw, 3.8rem);
  }
  .featured-copy {
    padding: 1.5rem;
  }
  .featured-copy h3 {
    font-size: 2.7rem;
  }
  .featured-copy > p {
    font-size: 1rem;
  }
  .tag {
    font-size: 0.75rem;
  }
  .course-facts {
    font-size: 0.875rem;
    gap: 0.5rem 0.8rem;
  }
  .featured-copy .button {
    width: 100%;
  }
  .featured-art {
    display: block;
    padding: 1.8rem 1.5rem 1.5rem;
  }
  .featured-art img {
    max-width: none;
    transform: rotate(2deg);
  }
  .art-caption {
    display: block;
    margin-top: 2rem;
    font-size: 1.5rem;
  }
  .free-link {
    gap: 0.9rem;
  }
  .free-icon {
    width: 2.4rem;
    height: 2.4rem;
  }
  .free-link strong {
    font-size: 0.9rem;
  }
  .free-link > span > span {
    font-size: 0.875rem;
  }
  .link-arrow {
    font-size: 1.5rem;
  }
  .community-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .community-intro h2 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .community-story .lead {
    font-size: 1.3rem;
  }
  .community-numbers {
    padding-block: 0 2rem;
    margin-top: 2.5rem;
    gap: 1rem;
  }
  .community-numbers > div {
    padding-left: 0.65rem;
  }
  .community-numbers dt {
    font-size: clamp(2rem, 8.5vw, 3rem);
  }
  .community-numbers dd {
    font-size: 0.8rem;
    margin-top: 0.6rem;
  }
  .community-principles {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .community-principles p {
    position: relative;
    padding-left: 2.4rem;
  }
  .community-principles span {
    position: absolute;
    left: 0;
    top: 0.2rem;
  }
  .photo-story {
    gap: 0.65rem;
  }
  .photo-story img {
    height: 14rem;
  }
  .photo-story figcaption {
    font-size: 0.8rem;
    padding: 2rem 0.7rem 0.8rem;
  }
  .photo-story .photo-wide:first-child,
  .photo-story .photo-wide:last-child {
    grid-column: span 2;
  }
  .photo-story .photo-wide:first-child img,
  .photo-story .photo-wide:last-child img {
    height: 13rem;
    object-position: center 40%;
  }
  .event-announcement {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
  .event-announcement h3 {
    font-size: 2rem;
  }
  .event-announcement .button {
    width: 100%;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .founder-portrait {
    max-width: 20rem;
    width: 90%;
    margin-inline: auto;
  }
  .founder-grid h2 {
    font-size: clamp(2.75rem, 11vw, 4rem);
  }
  .founder-grid .lead {
    font-size: 1.2rem;
  }
  .join-section h2 {
    font-size: clamp(3.5rem, 15vw, 5.6rem);
  }
  .join-bottom {
    margin-top: 1.8rem;
  }
  .join-bottom .hero-actions {
    width: 100%;
    display: grid;
  }
  .join-bottom p {
    font-size: 1.1rem;
  }
  .footer-inner {
    display: grid;
    gap: 1rem;
    padding-block: 2rem;
  }
  .footer-links {
    margin: 0;
    gap: 1.2rem;
  }
  .page-hero h1 {
    font-size: clamp(3rem, 12.8vw, 5rem);
  }
  .page-hero {
    padding-bottom: 2rem;
  }
  .section-tight {
    padding-top: 0;
  }
  .breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1.7rem;
  }
  .archive-grid {
    grid-template-columns: 1fr;
  }
  .archive-body {
    padding: 1.5rem;
  }
  .archive-body h3 {
    font-size: 2rem;
  }
  .free-band {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .free-band h2 {
    font-size: 2.8rem;
  }
  .free-band p {
    font-size: 1rem;
  }
  .free-band .button {
    width: 100%;
  }
  .course-hero-inner {
    padding-block: 2rem 3rem;
  }
  .course-hero-inner h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
    overflow-wrap: anywhere;
  }
  .course-hero-inner .lead {
    font-size: 1rem;
  }
  .course-hero-inner .section-label {
    font-size: 0.8rem;
  }
  .course-hero-inner .hero-actions {
    display: grid;
  }
  .course-subnav > nav {
    gap: 0.7rem 1.25rem;
    font-size: 0.875rem;
  }
  .two-column,
  .format-grid,
  .audience-grid,
  .curriculum-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .content-block h2 {
    font-size: 2.5rem;
  }
  .format-grid {
    margin-top: 2rem;
  }
  .format-card {
    padding-top: 1rem;
  }
  .format-index {
    margin-bottom: 0.75rem;
  }
  .format-card h3 {
    font-size: 2rem;
  }
  .audience-card {
    padding: 1.5rem;
  }
  .audience-card h3 {
    font-size: 2rem;
  }
  .price-row {
    gap: 0.5rem;
  }
  .price-value {
    font-size: 2.25rem;
  }
  .price-free {
    font-size: 1.8rem;
  }
  .mission-card h3 {
    font-size: 2.15rem;
  }
  .access-grid {
    gap: 2rem;
  }
  .bank-panel h3 {
    font-size: 2.1rem;
  }
  .bank-number {
    font-size: 1.13rem;
  }
  .module summary {
    padding: 1.1rem;
    font-size: 1rem;
  }
  .module-list {
    columns: 1;
    padding: 0.2rem 1.1rem 1.2rem 2.6rem;
    font-size: 1rem;
  }
  .instructor-copy h2 {
    font-size: 2.6rem;
  }
  .quote {
    padding: 1.5rem;
  }
  .quote p {
    font-size: 1rem;
  }
  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .course-subnav,
  .hero-art,
  .join-section {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .section {
    width: 100%;
    padding-block: 1.5rem;
  }
  .module:not([open]) > ol {
    display: block;
  }
  .module {
    break-inside: avoid;
  }
  .instructor-aside {
    position: static;
  }
  a {
    color: inherit;
  }
}
