@import url("https://fonts.googleapis.com/css2?family=Anton&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #07080b;
  --ink-soft: #15171d;
  --paper: #fbfaf5;
  --chalk: #f1f0e8;
  --muted: #62646d;
  --line: rgba(7, 8, 11, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --turquoise: #00aeb3;
  --blue: #246c9e;
  --purple: #7b3ca5;
  --acid: #d9ff43;
  --danger: #ff5f7e;
  --shadow: 0 1.5rem 4rem rgba(7, 8, 11, 0.22);
  --max: 72rem;
  --measure: 42rem;
  --gutter: 1.25rem;
  --header-height: 4.5rem;
  color-scheme: light dark;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

:where(section, [id]) {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.04) 1px, transparent 1px) 0 0 / 4.5rem 4.5rem,
    var(--paper);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  content: "";
  opacity: 0.045;
  background-image: radial-gradient(circle, currentColor 0 0.055rem, transparent 0.06rem);
  background-size: 0.52rem 0.52rem;
  mix-blend-mode: multiply;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 40;
  padding: 0.7rem 0.9rem;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 0.16rem solid var(--ink);
  outline-offset: 0.2rem;
  box-shadow: 0 0 0 0.34rem var(--acid);
}

:where(.hero, .page-hero, .site-header, .quote-band, .contact-section, .site-footer, .image-band, .media-panel, .cta-band)
  :where(a, button, input, textarea, select, summary, [tabindex]):focus-visible,
.gradient-panel :where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline-color: #fff;
  box-shadow: 0 0 0 0.34rem rgba(217, 255, 67, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--gutter);
  border-bottom: 1px solid var(--line-light);
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.94), rgba(21, 23, 29, 0.88)),
    rgba(7, 8, 11, 0.88);
  color: #fff;
  backdrop-filter: blur(18px);
}

.brand-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.25rem 0.72rem;
  border: 1px solid currentColor;
  background: #fff;
  color: var(--ink);
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0;
  transform: rotate(-1deg);
}

.brand-mark__name,
.brand-mark__byline {
  display: block;
}

.brand-mark__name {
  font-size: 1.05rem;
}

.brand-mark__byline {
  margin-left: 0.4rem;
  padding-left: 0.45rem;
  border-left: 1px solid rgba(7, 8, 11, 0.28);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-mark::after {
  position: absolute;
  inset: auto -0.38rem -0.38rem auto;
  width: 1.45rem;
  height: 1.45rem;
  content: "";
  background: linear-gradient(135deg, var(--turquoise), var(--purple));
  clip-path: polygon(14% 0, 100% 18%, 78% 100%, 0 82%);
  z-index: -1;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: transparent;
  font-size: 0;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.16);
}

.js .nav-toggle {
  display: block;
}

.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  left: 0.78rem;
  right: 0.78rem;
  height: 0.14rem;
  content: "";
  background: #fff;
  transition:
    transform 180ms ease,
    top 180ms ease;
}

.nav-toggle::before {
  top: 1rem;
}

.nav-toggle::after {
  top: 1.58rem;
}

.nav-toggle[aria-expanded="true"]::before {
  top: 1.28rem;
  transform: rotate(42deg);
}

.nav-toggle[aria-expanded="true"]::after {
  top: 1.28rem;
  transform: rotate(-42deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: var(--gutter);
  right: var(--gutter);
  display: grid;
  gap: 0.35rem;
  padding: 0.65rem;
  border: 1px solid var(--line-light);
  background: rgba(7, 8, 11, 0.96);
  box-shadow: var(--shadow);
}

.js .site-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.js .site-header.is-open .site-nav,
.site-nav.is-open,
.nav-toggle[aria-expanded="true"] ~ .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  margin: 0;
}

.site-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.65rem;
  padding: 0.6rem 0.7rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a::after {
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  border-top: 2px solid var(--turquoise);
  border-right: 2px solid var(--turquoise);
  transform: rotate(45deg);
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a[aria-current="page"],
.site-nav a[aria-current="true"],
.site-nav a.is-active {
  background:
    linear-gradient(90deg, rgba(0, 174, 179, 0.2), rgba(123, 60, 165, 0.14)),
    rgba(255, 255, 255, 0.1);
  color: var(--acid);
}

.site-nav a[aria-current="page"]::after,
.site-nav a[aria-current="true"]::after,
.site-nav a.is-active::after {
  border-color: currentColor;
}

.js .reveal-ready {
  opacity: 1;
  transform: none;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.js .is-revealed,
.js .is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered cascade for grid children */
.js .workshop-grid .reveal-ready:nth-child(2) {
  transition-delay: 80ms;
}

.js .workshop-grid .reveal-ready:nth-child(3) {
  transition-delay: 160ms;
}

.js .workshop-grid .reveal-ready:nth-child(4) {
  transition-delay: 240ms;
}

.js .stats .reveal-ready:nth-child(2) {
  transition-delay: 90ms;
}

.js .stats .reveal-ready:nth-child(3) {
  transition-delay: 180ms;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: end;
  padding: 5.5rem var(--gutter) 3.25rem;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 174, 179, 0.32), rgba(123, 60, 165, 0.26)),
    var(--ink);
}

.hero__media img,
.hero__media picture,
.hero__media video {
  width: 100%;
  height: 100%;
}

.hero__media img,
.hero__media video {
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.2) contrast(1.1) brightness(0.58);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.92), rgba(7, 8, 11, 0.58) 50%, rgba(7, 8, 11, 0.68)),
    linear-gradient(0deg, rgba(7, 8, 11, 0.88), transparent 48%);
}

.hero::after {
  position: absolute;
  right: -10rem;
  bottom: -6rem;
  z-index: -1;
  width: 38rem;
  height: 22rem;
  content: "";
  opacity: 0.72;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 0.075rem, transparent 0.08rem) 0 0 / 0.72rem 0.72rem,
    linear-gradient(135deg, var(--turquoise), var(--blue) 52%, var(--purple));
  clip-path: polygon(0 30%, 42% 4%, 100% 18%, 88% 100%, 18% 84%);
  mix-blend-mode: screen;
  animation: drift 16s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(-1.6rem, -1.1rem, 0) rotate(3.5deg);
  }
}

.hero__content {
  width: min(100%, var(--max));
  margin: 0 auto;
  animation: rise-in 620ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 2.35rem;
  height: 0.12rem;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
}

.hero h1,
.section h1,
.section h2,
.quote-band h2,
.quote-band blockquote,
.stat strong {
  margin: 0;
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 11ch;
  font-size: 3.05rem;
}

.hero p:not(.eyebrow) {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero .button,
.hero__content .button {
  margin-top: 1.7rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.hero__actions .button {
  margin-top: 0;
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 26rem;
  display: grid;
  align-items: end;
  padding: 5rem var(--gutter) 3.25rem;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 84% 12%, rgba(123, 60, 165, 0.3), transparent 58%),
    linear-gradient(135deg, var(--ink), var(--ink-soft));
  color: #fff;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 174, 179, 0.28), rgba(36, 108, 158, 0.2), rgba(123, 60, 165, 0.28)),
    var(--ink);
}

.page-hero__media img,
.page-hero__media picture,
.page-hero__media video {
  width: 100%;
  height: 100%;
}

.page-hero__media img,
.page-hero__media video {
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.18) contrast(1.1) brightness(0.48) saturate(0.95);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.92), rgba(7, 8, 11, 0.66) 54%, rgba(7, 8, 11, 0.78)),
    linear-gradient(0deg, rgba(7, 8, 11, 0.88), transparent 50%);
}

.page-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -4.5rem;
  z-index: -1;
  width: 24rem;
  height: 14rem;
  content: "";
  opacity: 0.78;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.45) 0 0.065rem, transparent 0.07rem) 0 0 / 0.68rem 0.68rem,
    linear-gradient(135deg, var(--turquoise), var(--blue) 52%, var(--purple));
  clip-path: polygon(0 28%, 44% 0, 100% 22%, 86% 100%, 16% 82%);
  mix-blend-mode: screen;
}

.page-hero__content {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  animation: rise-in 620ms ease both;
}

.page-hero__content::before {
  position: absolute;
  top: -1.25rem;
  left: -0.7rem;
  z-index: -1;
  width: 3.85rem;
  height: 3.85rem;
  content: "";
  background: var(--acid);
  clip-path: polygon(14% 4%, 100% 18%, 82% 100%, 0 72%);
}

.page-kicker,
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.95rem;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.page-kicker::before {
  width: 2.35rem;
  height: 0.12rem;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
}

.page-hero h1,
.page-hero__title,
.text-panel h2,
.cta-band h2 {
  margin: 0;
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero h1,
.page-hero__title {
  max-width: 13ch;
  font-size: 2.55rem;
}

.page-lede,
.page-hero p:not(.page-kicker):not(.eyebrow) {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.page-hero__actions .button {
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  max-width: 100%;
  padding: 0.72rem 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button::after {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
  transform: translateY(-0.08rem);
}

.button--primary,
.button--solid,
.button--submit,
.contact-form .button,
.contact-form button[type="submit"] {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}

.button--primary:hover,
.button--solid:hover,
.button--submit:hover,
.contact-form .button:hover,
.contact-form button[type="submit"]:hover {
  background: #fff;
  border-color: #fff;
}

.button--outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.section {
  position: relative;
  padding: 4.25rem var(--gutter);
  background: var(--paper);
  color: var(--ink);
}

.section > * {
  position: relative;
  z-index: 1;
}

.section > :where(.section__header, .split, .workshop-grid, .stats, .gradient-panel, .image-band, .quote-band, .contact-section, .content-grid, .text-panel, .feature-list, .program-list, .detail-grid, .process-list, .outcome-grid, .faq-list, .cta-band, .media-panel, .setting-list),
.section > :where(h1, h2, h3, p, ul, ol, blockquote, form) {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.section h2 {
  max-width: 13ch;
  font-size: 2.35rem;
}

.section h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.15;
  text-wrap: balance;
}

.section__header {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section__header h2 {
  max-width: 15ch;
}

.section__header p {
  margin: 0;
}

.section p {
  max-width: var(--measure);
  color: color-mix(in srgb, var(--ink) 72%, white);
}

.section :where(h2, h3) + p {
  margin-top: 1rem;
}

.split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.split > * {
  min-width: 0;
}

.split > :first-child {
  position: relative;
}

.split > :first-child::before {
  position: absolute;
  top: 2.9rem;
  left: -0.9rem;
  z-index: -1;
  width: 4.85rem;
  height: 4.85rem;
  content: "";
  background: var(--acid);
  clip-path: polygon(10% 12%, 88% 0, 100% 68%, 38% 100%, 0 76%);
}

.split__media {
  position: relative;
  min-height: 22rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 4%, 94% 100%, 6% 96%);
}

.split__media img,
.split__media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.1) contrast(1.05) saturate(0.92);
}

.content-grid {
  display: grid;
  gap: 1.15rem;
  align-items: start;
}

.content-grid > * {
  min-width: 0;
}

.text-panel {
  --accent: var(--turquoise);
  --accent-2: var(--purple);
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.55rem 1.4rem 1.45rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 0.7rem 1.7rem rgba(7, 8, 11, 0.06);
  transition:
    transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.text-panel::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.3rem;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 340ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.text-panel::after {
  position: absolute;
  right: -3.5rem;
  bottom: -3.5rem;
  width: 9rem;
  height: 9rem;
  content: "";
  opacity: 0.14;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  transition:
    opacity 340ms ease,
    transform 340ms ease;
}

.text-panel:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 1.2rem 2.6rem rgba(7, 8, 11, 0.14);
  transform: translateY(-0.25rem);
}

.text-panel:hover::before {
  transform: scaleX(1);
}

.text-panel:hover::after {
  opacity: 0.26;
  transform: scale(1.12);
}

.text-panel > * {
  position: relative;
  z-index: 1;
}

.text-panel h2 {
  max-width: 14ch;
  font-size: 2rem;
}

.text-panel h3 {
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0;
}

.text-panel p {
  margin: 0;
}

.media-panel {
  position: relative;
  min-height: 18rem;
  display: grid;
  align-items: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 3%, 96% 100%, 5% 96%);
}

.media-panel img,
.media-panel picture,
.media-panel video {
  width: 100%;
  height: 100%;
}

.media-panel img,
.media-panel video {
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.08) contrast(1.08) brightness(0.72) saturate(0.94);
}

.media-panel > :not(img, picture, video) {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
}

.media-panel::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  content: "";
  background: linear-gradient(0deg, rgba(7, 8, 11, 0.86), transparent);
  pointer-events: none;
}

.feature-list,
.program-list,
.detail-grid,
.process-list,
.outcome-grid,
.faq-list,
.setting-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

:where(.feature-list, .program-list, .detail-grid, .process-list, .outcome-grid, .faq-list, .setting-list) > * {
  min-width: 0;
}

.feature-list > :where(li, article, div),
.program-list > :where(li, article, div),
.detail-grid > :where(li, article, div),
.process-list > :where(li, article, div),
.outcome-grid > :where(li, article, div),
.setting-list > :where(li, article, div) {
  --accent: var(--turquoise);
  --accent-2: var(--purple);
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 0.7rem 1.7rem rgba(7, 8, 11, 0.06);
  transition:
    transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.feature-list > :where(li, article, div):nth-child(2n),
.program-list > :where(li, article, div):nth-child(2n),
.detail-grid > :where(li, article, div):nth-child(2n),
.process-list > :where(li, article, div):nth-child(2n),
.outcome-grid > :where(li, article, div):nth-child(2n),
.setting-list > :where(li, article, div):nth-child(2n) {
  --accent: var(--acid);
  --accent-2: var(--turquoise);
}

.feature-list > :where(li, article, div):nth-child(3n),
.program-list > :where(li, article, div):nth-child(3n),
.detail-grid > :where(li, article, div):nth-child(3n),
.process-list > :where(li, article, div):nth-child(3n),
.outcome-grid > :where(li, article, div):nth-child(3n),
.setting-list > :where(li, article, div):nth-child(3n) {
  --accent: var(--blue);
  --accent-2: var(--purple);
}

.feature-list > :where(li, article, div):nth-child(4n),
.program-list > :where(li, article, div):nth-child(4n),
.detail-grid > :where(li, article, div):nth-child(4n),
.process-list > :where(li, article, div):nth-child(4n),
.outcome-grid > :where(li, article, div):nth-child(4n),
.setting-list > :where(li, article, div):nth-child(4n) {
  --accent: var(--purple);
  --accent-2: var(--danger);
}

.feature-list > :where(li, article, div)::before,
.program-list > :where(li, article, div)::after,
.detail-grid > :where(li, article, div)::before,
.process-list > :where(li, article, div)::after,
.outcome-grid > :where(li, article, div)::before,
.setting-list > :where(li, article, div)::before {
  position: absolute;
  inset: 0 0 auto 0;
  width: auto;
  height: 0.3rem;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 340ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feature-list > :where(li, article, div)::after,
.detail-grid > :where(li, article, div)::after,
.outcome-grid > :where(li, article, div)::after,
.setting-list > :where(li, article, div)::after {
  position: absolute;
  right: -3.5rem;
  bottom: -3.5rem;
  width: 9rem;
  height: 9rem;
  content: "";
  opacity: 0.14;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  transition:
    opacity 340ms ease,
    transform 340ms ease;
}

.feature-list > :where(li, article, div):hover,
.program-list > :where(li, article, div):hover,
.detail-grid > :where(li, article, div):hover,
.process-list > :where(li, article, div):hover,
.outcome-grid > :where(li, article, div):hover,
.setting-list > :where(li, article, div):hover {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 1.2rem 2.6rem rgba(7, 8, 11, 0.14);
  transform: translateY(-0.25rem);
}

.feature-list > :where(li, article, div):hover::before,
.program-list > :where(li, article, div):hover::after,
.detail-grid > :where(li, article, div):hover::before,
.process-list > :where(li, article, div):hover::after,
.outcome-grid > :where(li, article, div):hover::before,
.setting-list > :where(li, article, div):hover::before {
  transform: scaleX(1);
}

.feature-list > :where(li, article, div):hover::after,
.detail-grid > :where(li, article, div):hover::after,
.outcome-grid > :where(li, article, div):hover::after,
.setting-list > :where(li, article, div):hover::after {
  opacity: 0.26;
  transform: scale(1.12);
}

.feature-list > :where(li, article, div) > *,
.program-list > :where(li, article, div) > *,
.detail-grid > :where(li, article, div) > *,
.process-list > :where(li, article, div) > *,
.outcome-grid > :where(li, article, div) > *,
.setting-list > :where(li, article, div) > * {
  position: relative;
  z-index: 1;
}

.feature-list > :where(li, article, div) {
  min-height: 13rem;
  padding: 1.55rem 1.4rem 1.45rem;
}

.feature-list h3,
.program-list h3,
.outcome-grid h3,
.setting-list h3 {
  margin: 0;
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.42rem;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
}

.feature-list p,
.program-list p,
.outcome-grid p,
.setting-list p,
.detail-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.program-list {
  counter-reset: program;
}

.program-list > :where(li, article, div) {
  min-height: 13rem;
  grid-template-rows: auto auto 1fr;
  padding: 1.55rem 1.4rem 1.45rem;
}

.program-list > :where(li, article, div)::before {
  counter-increment: program;
  content: counter(program, decimal-leading-zero);
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.45rem;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.35px rgba(7, 8, 11, 0.34);
}

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

.detail-grid > :where(li, article, div) {
  min-height: 13rem;
  padding: 1.45rem 1.3rem 1.25rem;
}

.detail-grid dt {
  margin: 0 0 0.2rem;
  color: var(--ink);
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
}

.detail-grid dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.5;
}

.process-list {
  counter-reset: process;
}

.process-list > :where(li, article, div) {
  min-height: 13rem;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0.65rem 1rem;
  align-items: start;
  padding: 1.45rem 1.3rem 1.25rem;
}

.process-list > :where(li, article, div):last-child {
  border-bottom-color: var(--line);
}

.process-list > :where(li, article, div)::before {
  counter-increment: process;
  min-width: 2.65rem;
  grid-row: 1 / span 2;
  content: counter(process, decimal-leading-zero);
  color: transparent;
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.25rem;
  line-height: 0.92;
  -webkit-text-stroke: 1.3px rgba(7, 8, 11, 0.34);
}

.process-list :where(h3, p) {
  margin: 0;
}

.process-list h3 {
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
}

.process-list p {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.outcome-grid > :where(li, article, div) {
  min-height: 13rem;
  align-content: end;
  padding: 1.55rem 1.4rem 1.45rem;
}

.outcome-grid strong {
  display: block;
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.55rem;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0;
}

.outcome-grid p,
.outcome-grid span {
  color: var(--muted);
  opacity: 1;
}

.faq-list {
  gap: 0.75rem;
}

.faq-list details {
  --accent: var(--turquoise);
  --accent-2: var(--purple);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0.7rem 1.7rem rgba(7, 8, 11, 0.06);
  transition:
    transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.faq-list details:nth-child(2n) {
  --accent: var(--acid);
  --accent-2: var(--turquoise);
}

.faq-list details:nth-child(3n) {
  --accent: var(--blue);
  --accent-2: var(--purple);
}

.faq-list details:nth-child(4n) {
  --accent: var(--purple);
  --accent-2: var(--danger);
}

.faq-list details::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.3rem;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 340ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.faq-list details::after {
  position: absolute;
  right: -3.5rem;
  bottom: -3.5rem;
  width: 9rem;
  height: 9rem;
  content: "";
  opacity: 0.14;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  transition:
    opacity 340ms ease,
    transform 340ms ease;
}

.faq-list details:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 1.2rem 2.6rem rgba(7, 8, 11, 0.14);
  transform: translateY(-0.18rem);
}

.faq-list details:hover::before,
.faq-list details[open]::before {
  transform: scaleX(1);
}

.faq-list details:hover::after,
.faq-list details[open]::after {
  opacity: 0.26;
  transform: scale(1.12);
}

.faq-list details > * {
  position: relative;
  z-index: 1;
}

.faq-list summary {
  min-height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem 1rem;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::after {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  content: "";
  border-right: 2px solid var(--turquoise);
  border-bottom: 2px solid var(--turquoise);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list details > :not(summary) {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
  color: var(--muted);
}

.setting-list > :where(li, article, div) {
  min-height: 13rem;
  padding: 1.45rem 1.3rem 1.25rem;
}

.cta-band {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 1.1rem;
  padding: 2rem 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(120% 95% at 104% 0, rgba(123, 60, 165, 0.42), transparent 58%),
    linear-gradient(135deg, rgba(0, 174, 179, 0.28), rgba(36, 108, 158, 0.16)),
    var(--ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.cta-band::before {
  position: absolute;
  right: -2.2rem;
  bottom: -2.2rem;
  z-index: -1;
  width: 11rem;
  height: 7rem;
  content: "";
  opacity: 0.62;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 0.06rem, transparent 0.065rem) 0 0 / 0.58rem 0.58rem,
    linear-gradient(135deg, var(--turquoise), var(--blue), var(--purple));
  clip-path: polygon(0 28%, 72% 0, 100% 64%, 34% 100%);
}

.cta-band h2 {
  max-width: 14ch;
  font-size: 2rem;
}

.cta-band p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .button {
  justify-self: start;
}

.gradient-panel {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: 2.1rem 1.35rem;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(0, 174, 179, 0.96), rgba(36, 108, 158, 0.94) 50%, rgba(123, 60, 165, 0.96)),
    var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.gradient-panel::before {
  position: absolute;
  top: -2rem;
  right: -3rem;
  width: 16rem;
  height: 9rem;
  content: "";
  opacity: 0.34;
  background-image: radial-gradient(circle, #fff 0 0.06rem, transparent 0.065rem);
  background-size: 0.58rem 0.58rem;
  clip-path: polygon(0 20%, 66% 0, 100% 44%, 74% 100%, 8% 86%);
}

.gradient-panel h2,
.gradient-panel h3,
.gradient-panel p {
  max-width: 44rem;
  color: inherit;
}

.image-band {
  position: relative;
  min-height: 17rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.image-band img,
.image-band picture,
.image-band video {
  width: 100%;
  height: 100%;
}

.image-band img,
.image-band video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08) brightness(0.66);
}

.image-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(7, 8, 11, 0.86), transparent 58%),
    linear-gradient(115deg, rgba(0, 174, 179, 0.42), transparent 52%);
}

.image-band > :not(img, picture, video) {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

.workshop-grid {
  display: grid;
  gap: 1.1rem;
}

.workshop-card {
  --accent: var(--turquoise);
  --accent-2: var(--purple);
  position: relative;
  min-height: 14.5rem;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.85rem;
  padding: 1.55rem 1.4rem 1.45rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 0.7rem 1.7rem rgba(7, 8, 11, 0.06);
  transition:
    transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.workshop-card:nth-child(2n) {
  --accent: var(--acid);
  --accent-2: var(--turquoise);
}

.workshop-card:nth-child(3n) {
  --accent: var(--blue);
  --accent-2: var(--purple);
}

.workshop-card:nth-child(4n) {
  --accent: var(--purple);
  --accent-2: var(--danger);
}

/* colour rail that grows on hover */
.workshop-card::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.3rem;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 340ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* soft tinted glow anchored to the corner */
.workshop-card::after {
  position: absolute;
  right: -3.5rem;
  bottom: -3.5rem;
  width: 9rem;
  height: 9rem;
  content: "";
  opacity: 0.18;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  transition:
    opacity 340ms ease,
    transform 340ms ease;
}

.workshop-card > * {
  position: relative;
  z-index: 1;
}

.workshop-card__number {
  margin: 0;
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.55rem;
  line-height: 0.8;
  letter-spacing: 0.01em;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(7, 8, 11, 0.34);
  transition:
    color 260ms ease,
    -webkit-text-stroke-color 260ms ease;
}

.workshop-card h3 {
  max-width: 15rem;
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.42rem;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0;
}

.workshop-card p {
  align-self: end;
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.workshop-card:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 1.2rem 2.6rem rgba(7, 8, 11, 0.14);
  transform: translateY(-0.35rem);
}

.workshop-card:hover::before {
  transform: scaleX(1);
}

.workshop-card:hover::after {
  opacity: 0.3;
  transform: scale(1.12);
}

.workshop-card:hover .workshop-card__number {
  color: var(--ink);
  -webkit-text-stroke-color: transparent;
}

.stats {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.4rem;
}

.stat {
  position: relative;
  min-height: 9.25rem;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  padding: 1.3rem 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.stat:nth-child(2n) {
  background: var(--paper);
  color: var(--ink);
}

.stat:nth-child(3n) {
  background: linear-gradient(135deg, var(--turquoise), var(--blue), var(--purple));
  color: #fff;
}

/* hairline accent above each figure */
.stat::before {
  position: absolute;
  inset: 0 auto auto 1.2rem;
  top: 1.3rem;
  width: 2.1rem;
  height: 0.16rem;
  content: "";
  background: var(--acid);
}

.stat:nth-child(2n)::before {
  background: var(--turquoise);
}

.stat:nth-child(3n)::before {
  background: rgba(255, 255, 255, 0.85);
}

.stat strong {
  display: block;
  font-size: 2.9rem;
}

.stat:first-child strong {
  color: var(--acid);
}

.stat span,
.stat p {
  margin: 0;
  color: currentColor;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.82;
}

.quote-band {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(4.5rem, 10vw, 8rem) var(--gutter);
  overflow: hidden;
  background:
    radial-gradient(135% 90% at 50% -12%, rgba(0, 174, 179, 0.16), transparent 56%),
    radial-gradient(120% 95% at 102% 120%, rgba(123, 60, 165, 0.24), transparent 58%),
    var(--ink);
  color: #fff;
  text-align: center;
}

.quote-band > div {
  position: relative;
  z-index: 1;
  width: min(100%, 54rem);
  margin: 0 auto;
}

/* oversized typographic quotation mark, centred behind the text */
.quote-band > div::before {
  position: absolute;
  top: clamp(-5.5rem, -8vw, -3.25rem);
  left: 50%;
  z-index: -1;
  content: "\201C";
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, var(--turquoise), var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.42;
  transform: translateX(-50%);
  pointer-events: none;
}

/* faint dot texture anchored bottom-right */
.quote-band::after {
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 20rem;
  height: 13rem;
  content: "";
  opacity: 0.2;
  background-image: radial-gradient(circle, #fff 0 0.075rem, transparent 0.08rem);
  background-size: 0.72rem 0.72rem;
  clip-path: polygon(8% 18%, 72% 0, 100% 74%, 24% 100%);
  pointer-events: none;
}

.quote-band .eyebrow {
  justify-content: center;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.6);
}

.quote-band .eyebrow::before {
  background: var(--turquoise);
}

.quote-band h2,
.quote-band blockquote {
  position: relative;
  z-index: 1;
  max-width: 20ch;
  margin: 0 auto;
  font-size: clamp(1.95rem, 4.6vw, 3.5rem);
  line-height: 1.14;
}

.quote-band blockquote p {
  margin: 0;
}

.quote-band__cite {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 2.1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-band__cite::before {
  width: 1.9rem;
  height: 0.12rem;
  content: "";
  background: var(--acid);
}

.contact-section {
  display: grid;
  gap: 2rem;
  padding: 4.25rem var(--gutter);
  background:
    linear-gradient(135deg, rgba(0, 174, 179, 0.18), transparent 34%),
    var(--ink);
  color: #fff;
}

.contact-section.section,
.section.contact-section {
  background:
    linear-gradient(135deg, rgba(0, 174, 179, 0.18), transparent 34%),
    var(--ink);
  color: #fff;
}

.contact-section h2,
.contact-section h3,
.contact-section p {
  color: inherit;
}

.contact-section__content,
.contact-form {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.contact-section h2 {
  max-width: 13ch;
  margin: 0;
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.35rem;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-section__content p:not(.eyebrow),
.contact-form .form-status {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line-light);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.28);
}

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

.contact-form__row {
  display: grid;
  gap: 0.36rem;
}

.contact-form label {
  display: grid;
  gap: 0.36rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line-light);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 0.75rem 0.82rem;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(7, 8, 11, 0.48);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 0.18rem rgba(217, 255, 67, 0.22);
}

.contact-form .form-status {
  margin: 0;
  font-weight: 700;
}

.contact-form .form-status.is-pending {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form .form-status.is-success {
  color: var(--acid);
}

.contact-form .form-status.is-error {
  color: #ffd1d1;
}

.contact-form.is-loading button[type="submit"] {
  cursor: progress;
  opacity: 0.72;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem var(--gutter);
  border-top: 1px solid var(--line-light);
  background: #000;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
  text-decoration-color: var(--turquoise);
  text-decoration-thickness: 0.12rem;
  text-underline-offset: 0.18rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

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

@media (min-width: 42rem) {
  :root {
    --gutter: 2rem;
  }

  .hero {
    padding-bottom: 5rem;
  }

  .hero h1 {
    font-size: 4.45rem;
  }

  .section {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
  }

  .section h2 {
    font-size: 3.2rem;
  }

  .gradient-panel {
    padding: 2.5rem;
  }

  .workshop-grid,
  .stats,
  .feature-list,
  .program-list,
  .detail-grid,
  .process-list,
  .outcome-grid,
  .setting-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero h1,
  .page-hero__title {
    font-size: 3.65rem;
  }

  .contact-section h2 {
    font-size: 3.2rem;
  }

  .contact-form {
    padding: 1.35rem;
  }
}

@media (min-width: 56rem) {
  :root {
    --gutter: 2.5rem;
  }

  .site-header {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .nav-toggle,
  .js .nav-toggle {
    display: none;
  }

  .site-nav,
  .js .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .site-nav a {
    min-height: 2.35rem;
    padding: 0.45rem 0.65rem;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: 5.85rem;
  }

  .hero p:not(.eyebrow) {
    font-size: 1.22rem;
  }

  .split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 4.25rem;
    align-items: center;
  }

  .content-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
  }

  .content-grid > .feature-list,
  .content-grid > .program-list,
  .content-grid > .detail-grid,
  .content-grid > .outcome-grid {
    width: 100%;
  }

  .gradient-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: end;
    gap: 3rem;
  }

  .image-band {
    min-height: 26rem;
  }

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

  .feature-list,
  .program-list,
  .detail-grid,
  .process-list,
  .outcome-grid,
  .setting-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .stat {
    min-height: 12rem;
  }

  .stat strong {
    font-size: 3.6rem;
  }

  .contact-section {
    grid-template-columns: minmax(0, 0.86fr) minmax(22rem, 0.74fr);
    align-items: center;
    padding-right: max(var(--gutter), calc((100% - var(--max)) / 2));
    padding-left: max(var(--gutter), calc((100% - var(--max)) / 2));
  }

  .contact-section__content,
  .contact-form {
    width: 100%;
  }
}

@media (min-width: 76rem) {
  .hero h1 {
    font-size: 7rem;
  }

  .page-hero h1,
  .page-hero__title {
    font-size: 4.65rem;
  }

  .workshop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .program-list,
  .process-list,
  .detail-grid:has(> :nth-child(4)),
  .setting-list:has(> :nth-child(4)),
  .feature-list:has(> :nth-child(4)),
  .outcome-grid:has(> :nth-child(4)) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section h2 {
    font-size: 4rem;
  }
}

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