@font-face {
  font-family: "Bebas Neue";
  src: url("assets/fonts/bebas-neue.woff2") format("woff2"),
       url("assets/fonts/bebas-neue.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-regular.woff2") format("woff2"),
       url("assets/fonts/manrope-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-semibold.woff2") format("woff2"),
       url("assets/fonts/manrope-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #0b0a0a;
  --paper: #f1ecdf;
  --coral: oklch(0.61 0.21 25);
  --coral-paper: oklch(0.46 0.16 25);
  --focus: oklch(0.6 0.21 25);
  --muted: #aaa394;
  --pad: clamp(1rem, 3.4vw, 4rem);
  --header-height: 4.25rem;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-snap: cubic-bezier(.76, 0, .24, 1);
  --ribbon-progress: .035;
  --peak-strength: 0;
  --sweep-position: 0;
}

.no-js {
  --ribbon-progress: 1;
  --peak-strength: 0;
}

.no-js .site-weave__light {
  stroke-dasharray: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
  scroll-snap-type: y proximity;
  background: var(--ink);
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: .042;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  mix-blend-mode: soft-light;
}

body.menu-open {
  overflow: hidden;
}

.site-pole {
  position: fixed;
  top: 0;
  bottom: 0;
  left: clamp(.55rem, 1.1vw, 1rem);
  z-index: 18;
  width: clamp(.38rem, .62vw, .62rem);
  pointer-events: none;
  background: linear-gradient(90deg, #181818 0%, #ddd9d0 23%, #676765 48%, #f3efe6 67%, #202020 100%);
  box-shadow:
    -5px 0 12px rgba(0, 0, 0, .38),
    5px 0 14px rgba(255, 255, 255, .08),
    0 0 calc(1.8rem * var(--peak-strength)) oklch(0.78 0.11 25 / calc(.36 * var(--peak-strength)));
}

.site-pole::before {
  content: "";
  position: absolute;
  left: -140%;
  top: calc(var(--sweep-position) * 100%);
  width: 380%;
  height: clamp(5rem, 13vh, 9rem);
  pointer-events: none;
  opacity: var(--peak-strength);
  background: linear-gradient(180deg, transparent, rgba(255, 250, 239, .82), transparent);
  filter: blur(5px);
  transform: translateY(-50%);
}

.site-weave {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: clamp(3.4rem, 5vw, 4.8rem);
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.site-weave--under {
  z-index: 17;
}

.site-weave--over {
  z-index: 19;
}

.site-weave path {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
}

.site-weave__shadow {
  stroke: oklch(0.44 0.18 25 / .32);
  stroke-width: 18;
  filter: blur(5px);
}

.site-weave__stroke {
  stroke: var(--coral);
  stroke-width: 9;
}

.site-weave__light {
  stroke: oklch(0.88 0.07 25 / .62);
  stroke-width: 1.5;
  stroke-dasharray: .075 .925;
  stroke-dashoffset: calc(1 - var(--ribbon-progress));
  transform: translateX(-1.5px);
}

.site-weave--over path {
  stroke-linecap: butt;
}

.site-pole::after {
  content: "";
  position: absolute;
  inset: 0 18% 0 auto;
  width: 1px;
  background: rgba(255, 255, 255, .7);
}

main:focus {
  outline: none;
}

main > section {
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

a {
  color: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

.menu-button,
.kinetic-link,
.lesson-card__link,
.contact-action {
  touch-action: manipulation;
}

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  padding: .75rem 1rem;
  color: var(--ink);
  background: var(--paper);
  font-weight: 600;
  transform: translateY(-180%);
  transition: transform 220ms var(--ease-out);
}

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

.site-header {
  position: fixed;
  top: .9rem;
  left: 50%;
  z-index: 40;
  width: min(calc(100% - 2rem), 94rem);
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .65rem;
  align-items: center;
  padding: 0;
  color: var(--paper);
  pointer-events: none;
  transform: translateX(-50%);
  transition: color 360ms var(--ease-out), transform 500ms var(--ease-out);
}

.site-header.header--light {
  color: var(--ink);
}

.site-header.header--light .brand__mark {
  fill: var(--coral-paper);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: var(--header-height);
  padding: 0 1.1rem;
  color: var(--paper);
  background: rgba(11, 10, 10, .91);
  border: 1px solid rgba(241, 236, 223, .16);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.25rem, 1.5vw, 1.6rem);
  letter-spacing: .055em;
  line-height: 1;
  text-decoration: none;
}

.header--light .brand {
  color: var(--ink);
  background: rgba(241, 236, 223, .92);
  border-color: rgba(11, 10, 10, .16);
}

.brand__mark {
  width: 1.15rem;
  fill: var(--coral);
}

.desktop-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.3rem);
}

.desktop-nav a {
  position: relative;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.45rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  position: relative;
  justify-self: end;
  width: var(--header-height);
  height: var(--header-height);
  display: block;
  padding: 0;
  color: var(--paper);
  background: rgba(11, 10, 10, .91);
  border: 1px solid rgba(241, 236, 223, .16);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  cursor: pointer;
  transition: color 280ms var(--ease-out), background-color 280ms var(--ease-out), border-color 280ms var(--ease-out);
}

.menu-button span {
  position: absolute;
  left: 50%;
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -.25rem);
  transition: transform 400ms var(--ease-out);
}

.menu-button span:last-child {
  transform: translate(-50%, .25rem);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateX(-50%) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateX(-50%) rotate(-45deg);
}

.header--light .menu-button {
  color: var(--ink);
  background: rgba(241, 236, 223, .92);
  border-color: rgba(11, 10, 10, .16);
}

.menu-open .site-header {
  color: var(--paper);
}

.menu-open .site-header .brand,
.menu-open .site-header .menu-button {
  color: var(--paper);
  background: rgba(11, 10, 10, .91);
  border-color: rgba(241, 236, 223, .16);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 8rem var(--pad) 2rem;
  color: var(--paper);
  background: rgba(11, 10, 10, .97);
  backdrop-filter: blur(22px);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: opacity 260ms var(--ease-out), transform 360ms var(--ease-out);
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-overlay__nav {
  align-self: center;
}

.menu-overlay__nav a {
  display: block;
  width: max-content;
  color: var(--paper);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: .84;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(2.5rem);
  transition: color 200ms var(--ease-out), opacity 480ms var(--ease-out), transform 620ms var(--ease-out);
}

.menu-overlay.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay.is-open a:nth-child(2) { transition-delay: 45ms; }
.menu-overlay.is-open a:nth-child(3) { transition-delay: 90ms; }
.menu-overlay.is-open a:nth-child(4) { transition-delay: 135ms; }
.menu-overlay.is-open a:nth-child(5) { transition-delay: 180ms; }

.menu-overlay__nav a:hover {
  color: var(--coral);
}

.menu-overlay > p {
  margin: 0;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  line-height: 1.35;
}

.js .desktop-nav {
  display: none;
}

.no-js .site-header {
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 0 1rem;
  background: rgba(11, 10, 10, .91);
  border: 1px solid rgba(241, 236, 223, .16);
  pointer-events: auto;
}

.no-js .site-header .brand {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.no-js .desktop-nav {
  justify-self: end;
}

.no-js .menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(23rem, .75fr);
  align-items: end;
  padding: clamp(8.5rem, 14vh, 11rem) var(--pad) clamp(3.5rem, 8vh, 6.5rem) calc(var(--pad) + 2.75rem);
  color: var(--paper);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  top: -22vw;
  left: 17vw;
  width: 60vw;
  aspect-ratio: 1;
  border: 1px solid rgba(241, 236, 223, .06);
  transform: rotate(45deg);
}

.hero__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pad);
  z-index: 20;
  width: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--coral);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .27em;
  text-transform: uppercase;
}

.hero__rail i {
  width: 1px;
  height: 3.6rem;
  background: currentColor;
}

.hero__copy {
  position: relative;
  z-index: 20;
  align-self: center;
  padding-top: 2rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0 0 clamp(1.4rem, 3vh, 2.5rem);
  color: var(--muted);
  font-size: clamp(.64rem, .72vw, .76rem);
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--coral);
  font-size: .55rem;
}

.hero__title,
.display-title,
.footer__brand {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.hero__title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(6rem, 11.2vw, 12rem);
  line-height: .76;
  letter-spacing: -.025em;
}

.title-line {
  display: block;
  overflow: hidden;
  padding: .07em 0;
}

.title-line > span {
  display: block;
  transform: translateY(112%);
  animation: title-in 980ms var(--ease-snap) forwards;
}

.title-line:nth-child(2) > span {
  animation-delay: 110ms;
}

@keyframes title-in {
  to { transform: translateY(0); }
}

.hero-enter {
  opacity: 0;
  transform: translateY(1.5rem);
  animation: hero-enter 700ms var(--ease-out) 420ms forwards;
}

.hero__intro.hero-enter {
  animation-delay: 560ms;
}

.hero__welcome.hero-enter {
  animation-delay: 700ms;
}

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

.hero__intro {
  max-width: 45rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2rem, 4vh, 3.5rem);
  padding-left: .35rem;
}

.hero__intro p {
  max-width: 26rem;
  margin: 0;
  color: #d1cabd;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  line-height: 1.35;
}

.hero__intro em {
  color: var(--coral);
  font-style: normal;
  font-weight: 600;
}

.hero__welcome {
  max-width: 45rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 1.65rem 0 0;
  padding: 1rem .35rem 0;
  color: var(--paper);
  border-top: 1px solid rgba(241, 236, 223, .24);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  letter-spacing: .025em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__welcome em {
  color: var(--coral);
  font-size: .72em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-index {
  max-width: 45rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(1.4rem, 3vh, 2.4rem);
  border-top: 1px solid rgba(241, 236, 223, .24);
  border-bottom: 1px solid rgba(241, 236, 223, .24);
}

.hero-index.hero-enter {
  animation-delay: 820ms;
}

.hero-index a {
  position: relative;
  min-height: 4.8rem;
  display: grid;
  align-content: center;
  gap: .15rem;
  padding: .7rem .55rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 220ms var(--ease-out), background-color 220ms var(--ease-out);
}

.hero-index a + a {
  border-left: 1px solid rgba(241, 236, 223, .16);
}

.hero-index a::after {
  content: "";
  position: absolute;
  right: .55rem;
  bottom: .55rem;
  width: .4rem;
  aspect-ratio: 1;
  background: var(--coral);
  transform: rotate(45deg) scale(0);
  transition: transform 280ms var(--ease-out);
}

.hero-index a:hover,
.hero-index a:focus-visible,
.hero-index a[aria-current="location"] {
  color: var(--paper);
  background: rgba(241, 236, 223, .055);
}

.hero-index a:hover::after,
.hero-index a:focus-visible::after,
.hero-index a[aria-current="location"]::after {
  transform: rotate(45deg) scale(1);
}

.hero-index span {
  color: var(--coral);
  font-size: .57rem;
  font-weight: 600;
  letter-spacing: .16em;
}

.hero-index b {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kinetic-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: .55rem .55rem .55rem 1.25rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), color 240ms var(--ease-out), background-color 240ms var(--ease-out);
}

.kinetic-link--coral {
  color: var(--ink);
  background: var(--coral);
}

.kinetic-link__arrow {
  width: 2.45rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-size: 1rem;
  transition: transform 360ms var(--ease-out);
}

.kinetic-link:hover .kinetic-link__arrow {
  transform: rotate(45deg) scale(1.04);
}

.kinetic-link:active {
  transform: scale(.98);
}

.hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(47vw, 52rem);
  overflow: hidden;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 31%, transparent 82%, var(--ink) 118%);
  pointer-events: none;
}

.hero__halo {
  position: absolute;
  top: 24%;
  right: 9%;
  width: 56%;
  aspect-ratio: 1;
  border: 1px solid oklch(0.61 0.21 25 / .15);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem oklch(0.61 0.21 25 / .018), 0 0 0 8rem oklch(0.61 0.21 25 / .012);
}

.ribbon {
  position: absolute;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}

.ribbon path {
  fill: none;
  stroke-linecap: butt;
}

.ribbon__shadow {
  stroke: oklch(0.61 0.21 25 / .22);
  stroke-width: 92;
  filter: blur(13px);
}

.ribbon__stroke {
  stroke: var(--coral);
  stroke-width: 56;
}

.ribbon__light {
  stroke: oklch(0.88 0.07 25 / .54);
  stroke-width: 3;
  transform: translateY(-10px);
}

.ribbon--hero {
  inset: 5% -12% 0 -5%;
  width: 116%;
  height: 96%;
}

.ribbon--hero path {
  stroke-dasharray: 1640;
  stroke-dashoffset: 1640;
  animation: ribbon-draw 1500ms var(--ease-out) 280ms forwards;
}

@keyframes ribbon-draw {
  to { stroke-dashoffset: 0; }
}

.hero__spade {
  position: absolute;
  top: 13%;
  left: 2%;
  width: 65%;
  fill: none;
  stroke: rgba(241, 236, 223, .075);
  stroke-width: 1;
}

.hero__caption {
  position: absolute;
  right: var(--pad);
  bottom: 2rem;
  z-index: 4;
  display: flex;
  gap: 1.1rem;
  margin: 0;
  color: rgba(241, 236, 223, .68);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero__caption span + span::before {
  content: "/";
  margin-right: 1.1rem;
  color: var(--coral);
}

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 4.4rem;
  z-index: 5;
  display: none;
  align-items: center;
  gap: .8rem;
  min-height: 2.75rem;
  padding-block: .4rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
}

.scroll-cue svg {
  width: .8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.paper-section {
  background-color: var(--paper);
  background-image: radial-gradient(rgba(11, 10, 10, .08) .55px, transparent .55px);
  background-size: 5px 5px;
}

.paper-section .display-title > span,
.paper-section .welcome-note em,
.paper-section .contact__script {
  color: var(--coral-paper);
}

.section-suit {
  position: absolute;
  z-index: 1;
  color: transparent;
  font-family: Georgia, serif;
  font-size: clamp(18rem, 48vw, 48rem);
  line-height: .75;
  pointer-events: none;
  user-select: none;
  -webkit-text-stroke: 1px rgba(11, 10, 10, .09);
  transform: rotate(-10deg);
}

.section-suit--club {
  right: -12vw;
  bottom: -10vw;
}

.section-suit--heart {
  top: -9vw;
  right: -8vw;
  -webkit-text-stroke-color: rgba(11, 10, 10, .13);
  transform: rotate(9deg);
}

.section-suit--diamond {
  top: 31%;
  left: 4vw;
  -webkit-text-stroke-color: rgba(241, 236, 223, .055);
  transform: rotate(-17deg);
}

.section-suit--faq {
  right: -8vw;
  bottom: -13vw;
}

.lessons,
.pricing,
.contact {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
}

.lessons {
  overflow: hidden;
}

.lessons__grid {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(17rem, .78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 6.5rem);
  align-items: start;
}

.studio-visual {
  position: relative;
  min-height: min(52vw, 43rem);
  overflow: hidden;
  background: var(--ink);
}

.ribbon--studio {
  inset: 0;
  width: 100%;
  height: 100%;
}

.studio-visual__note {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 4;
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.1;
  text-align: right;
}

.lessons__copy {
  padding-top: 1rem;
}

.display-title {
  margin: 0;
  font-size: clamp(4.7rem, 9vw, 10.4rem);
  line-height: .82;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.display-title > span {
  display: inline-block;
  margin-left: .08em;
  color: var(--coral);
  font-family: "Bebas Neue", sans-serif;
  font-size: .26em;
  vertical-align: .2em;
}

.display-title em {
  color: var(--coral);
  font-family: "Bebas Neue", sans-serif;
  font-size: .78em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.display-title--dark {
  color: var(--ink);
}

.display-title--light {
  color: var(--paper);
}

.editorial-copy {
  max-width: 34rem;
  margin: clamp(2rem, 4vw, 4rem) 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.3;
  text-wrap: pretty;
}

.welcome-note {
  max-width: 36rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(11, 10, 10, .24);
}

.welcome-note em {
  color: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 600;
}

.welcome-note span {
  max-width: 27rem;
  font-size: .875rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.where {
  position: relative;
  min-height: 62rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(27rem, .9fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(6rem, 10vw, 9rem) var(--pad);
  background: var(--coral);
}

.where__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .17;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
}

.where__spade {
  position: absolute;
  left: -15rem;
  bottom: -19rem;
  width: min(58vw, 49rem);
  fill: var(--ink);
}

.where__lead,
.where__poster {
  position: relative;
  z-index: 20;
}

.where__lead {
  align-self: start;
}

.where__poster {
  align-self: end;
  margin: 8rem 1.2rem 0 0;
  padding: clamp(2.2rem, 4vw, 4.5rem);
  background: var(--paper);
  clip-path: polygon(2% 3%, 94% 0, 100% 6%, 98% 100%, 3% 97%, 0 9%);
  transform: rotate(-1.3deg);
}

.where__poster .editorial-copy {
  margin: 0 0 clamp(2.8rem, 5vw, 5rem);
}

.where__poster ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.where__poster li {
  padding: .9rem 0 .7rem;
  border-top: 1px solid var(--ink);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.where__note {
  max-width: 30rem;
  margin: 2.5rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
}

.where__note strong {
  display: block;
  color: var(--coral-paper);
  font-weight: 400;
}

.pricing {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.pricing__spade {
  position: absolute;
  top: 11rem;
  right: -6rem;
  width: min(51vw, 47rem);
  fill: none;
  stroke: rgba(241, 236, 223, .07);
  stroke-width: 2;
}

.pricing__heading {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.pricing__heading p {
  max-width: 16rem;
  margin: 0 0 .7rem;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.lesson-hand {
  --parallax-x: 0deg;
  --parallax-y: 0deg;
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(.55rem, 1.2vw, 1.25rem);
  align-items: end;
  margin-top: clamp(4rem, 7vw, 7rem);
  padding: 2rem .35rem 4rem;
  perspective: 90rem;
  list-style: none;
  transform-style: preserve-3d;
}

.lesson-hand.is-dealt .lesson-card {
  animation: card-deal-in 640ms var(--ease-out) backwards;
  animation-delay: calc((var(--card-index, 0) * 75ms) + 80ms);
}

.lesson-card:nth-child(1) { --card-index: 0; }
.lesson-card:nth-child(2) { --card-index: 1; }
.lesson-card:nth-child(3) { --card-index: 2; }
.lesson-card:nth-child(4) { --card-index: 3; }
.lesson-card:nth-child(5) { --card-index: 4; }

@keyframes card-deal-in {
  from {
    opacity: 0;
    transform: translate3d(-2.5rem, 3rem, 0) rotate(-4deg) scale(.96);
  }
}

.lesson-card {
  --tilt: 0deg;
  --dip: 0rem;
  position: relative;
  min-width: 0;
  aspect-ratio: 2.5 / 3.55;
}

.lesson-card::before {
  content: "";
  position: absolute;
  inset: -1.5rem 0 -2.75rem;
}

.lesson-card:nth-child(1) { --tilt: -6deg; --dip: 2.1rem; }
.lesson-card:nth-child(2) { --tilt: -3deg; --dip: .75rem; }
.lesson-card:nth-child(4) { --tilt: 3deg; --dip: .75rem; }
.lesson-card:nth-child(5) { --tilt: 6deg; --dip: 2.1rem; }

.lesson-card:hover,
.lesson-card:focus-within {
  z-index: 3;
}

.lesson-card__link {
  --suit: var(--ink);
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 1.8vw, 1.6rem);
  color: var(--ink);
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, .72), transparent 38%),
    #eee4d2;
  border-radius: .7rem;
  box-shadow: 0 2.4rem 4.2rem -2.2rem rgba(0, 0, 0, .92);
  text-align: center;
  text-decoration: none;
  transform: translateY(var(--dip)) rotate(var(--tilt));
  transform-origin: 50% 112%;
  transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out), background-color 260ms var(--ease-out);
}

.lesson-card__link::before {
  content: "";
  position: absolute;
  inset: .48rem;
  border: 1px solid rgba(11, 10, 10, .28);
  border-radius: .4rem;
  pointer-events: none;
}

.lesson-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: radial-gradient(rgba(11, 10, 10, .28) .45px, transparent .45px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

.lesson-card:hover .lesson-card__link,
.lesson-card:focus-within .lesson-card__link {
  box-shadow: 0 3.4rem 5.4rem -2.5rem rgba(0, 0, 0, .98);
  transform: translateY(-1rem) rotate(0deg) scale(1.025);
}

.lesson-card--red .lesson-card__link {
  --suit: var(--coral-paper);
}

.lesson-card--package .lesson-card__link {
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, .68), transparent 38%),
    #e8dbc3;
}

.card-corner {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--suit);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  line-height: .75;
}

.card-corner b {
  font-weight: 400;
}

.card-corner span {
  margin-top: .2rem;
  font-family: Georgia, serif;
  font-size: .72em;
}

.card-corner--top {
  top: 1.05rem;
  left: 1.08rem;
}

.card-corner--bottom {
  right: 1.08rem;
  bottom: 1.05rem;
  transform: rotate(180deg);
}

.lesson-card__eyebrow {
  position: relative;
  z-index: 2;
  margin-bottom: .65rem;
  color: var(--coral-paper);
  font-size: clamp(.68rem, .72vw, .74rem);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.lesson-card h3 {
  position: relative;
  z-index: 2;
  max-width: 7ch;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: .88;
  text-transform: uppercase;
}

.lesson-card strong {
  position: relative;
  z-index: 2;
  margin-top: clamp(.65rem, 1.5vw, 1.2rem);
  color: var(--suit);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.3rem, 5.3vw, 5.5rem);
  font-weight: 400;
  line-height: .78;
}

.lesson-card__unit {
  position: relative;
  z-index: 2;
  margin-top: .65rem;
  color: #665e52;
  font-family: "Manrope", sans-serif;
  font-size: clamp(.82rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.1;
}

.lesson-card__detail {
  position: relative;
  z-index: 2;
  margin-top: .55rem;
  color: #625b50;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.lesson-card__cta {
  position: absolute;
  right: auto;
  bottom: 1.15rem;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--coral-paper);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.lesson-card__cta i {
  font-size: .9rem;
  font-style: normal;
  transition: transform 280ms var(--ease-out);
}

.lesson-card:hover .lesson-card__cta i,
.lesson-card:focus-within .lesson-card__cta i {
  transform: translate(.15rem, -.15rem);
}

.pricing__gesture {
  display: none;
}

.pricing__note {
  position: relative;
  z-index: 20;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.5;
  letter-spacing: .02em;
}

.faq {
  position: relative;
  min-height: max(100svh, 58rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(15rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: start;
  padding: clamp(7rem, 11vw, 11rem) var(--pad);
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(28%, 34vw, 39%);
  width: 1px;
  background: rgba(11, 10, 10, .15);
  transform: rotate(2deg);
  transform-origin: top;
}

.faq::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: clamp(5.5rem, 10vw, 9rem);
  height: 100%;
  pointer-events: none;
  opacity: .85;
  background:
    radial-gradient(circle at 12% 17%, var(--coral) 0 .42rem, transparent .48rem),
    radial-gradient(circle at 11% 52%, var(--coral) 0 .58rem, transparent .64rem),
    radial-gradient(circle at 13% 87%, var(--coral) 0 .44rem, transparent .5rem);
}

.faq__heading,
.faq-list {
  position: relative;
  z-index: 20;
}

.faq__heading {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.faq__kicker {
  margin: 0 0 1.2rem;
  color: var(--coral-paper);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.faq .display-title {
  font-size: clamp(4.8rem, 8vw, 9rem);
}

.faq__intro {
  max-width: 28rem;
  margin: 2rem 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-slip {
  position: relative;
  min-width: 0;
  min-height: 13rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2.7rem);
  background: #e8dfcf;
  border: 1px solid rgba(11, 10, 10, .24);
  box-shadow: 0 2rem 3rem -3rem rgba(11, 10, 10, .7);
  clip-path: polygon(1% 2%, 97% 0, 100% 6%, 99% 98%, 3% 100%, 0 94%);
}

.faq-slip > div {
  min-width: 0;
}

.faq-slip:nth-child(even) {
  margin-left: clamp(1.2rem, 5vw, 5.5rem);
  background: #eee6d8;
  transform: rotate(.65deg);
}

.faq-slip:nth-child(3n) {
  margin-right: clamp(.8rem, 3vw, 3.5rem);
  transform: rotate(-.55deg);
}

.faq-slip::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 14%;
  width: 4.8rem;
  height: .48rem;
  background: var(--coral-paper);
  transform: rotate(-3deg);
}

.faq-slip__number {
  color: var(--coral-paper);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  line-height: .8;
}

.faq-slip h3 {
  max-width: 24ch;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

.faq-slip p {
  max-width: 60ch;
  margin: 1rem 0 0;
  color: #39342e;
  font-size: .94rem;
  line-height: 1.65;
}

.faq-slip a {
  width: fit-content;
  max-width: 100%;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .75rem;
  color: var(--coral-paper);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-underline-offset: .28rem;
}

.faq-slip a span {
  font-size: .9rem;
  transition: transform 260ms var(--ease-out);
}

.faq-slip a:hover span,
.faq-slip a:focus-visible span {
  transform: translate(.15rem, -.15rem);
}

.contact {
  min-height: max(49rem, 100svh);
  overflow: hidden;
  padding-left: max(var(--pad), 22vw);
}

.contact::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -15vw;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgba(11, 10, 10, .11);
  transform: rotate(45deg);
}

.contact__ribbon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(21vw, 21rem);
  overflow: hidden;
  background: var(--ink);
}

.ribbon--contact {
  inset: 0 -40% 0 -50%;
  width: 180%;
  height: 100%;
}

.contact__inner {
  position: relative;
  z-index: 20;
}

.contact .display-title {
  font-size: clamp(5rem, 12vw, 14rem);
}

.contact__script {
  position: relative;
  z-index: 2;
  margin: -.24em 0 clamp(4rem, 7vw, 7rem);
  color: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 2.4rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .015em;
  line-height: 1.1;
}

.contact__prompt {
  max-width: 39rem;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.35;
}

.contact-actions {
  width: min(100%, 60rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.contact-action {
  min-width: 0;
  min-height: 7rem;
  display: grid;
  grid-template-columns: 2.9rem minmax(0, 1fr) auto;
  align-items: center;
  gap: .85rem;
  padding: .8rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: color 220ms var(--ease-out), background-color 220ms var(--ease-out), transform 160ms var(--ease-out);
}

.contact-action__icon {
  width: 2.9rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--coral-paper);
  transition: background-color 220ms var(--ease-out), transform 340ms var(--ease-out);
}

.contact-action__icon svg {
  width: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-action__copy {
  min-width: 0;
  display: grid;
  gap: .22rem;
}

.contact-action__copy b {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-action__copy small {
  overflow-wrap: anywhere;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.contact-action > i {
  font-size: 1rem;
  font-style: normal;
  transition: transform 340ms var(--ease-out);
}

.contact-action:hover,
.contact-action:focus-visible {
  color: var(--paper);
  background: var(--coral-paper);
}

.contact-action:hover .contact-action__icon,
.contact-action:focus-visible .contact-action__icon {
  background: var(--ink);
  transform: rotate(-3deg);
}

.contact-action:hover > i,
.contact-action:focus-visible > i {
  transform: translate(.15rem, -.15rem);
}

.contact-action:active {
  transform: scale(.985);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  padding: 2rem var(--pad);
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid rgba(241, 236, 223, .18);
  scroll-snap-align: end;
}

.footer__brand {
  width: max-content;
  color: var(--paper);
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  letter-spacing: .03em;
  text-decoration: none;
}

.footer__brand span {
  color: var(--coral);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footer nav a,
.footer > p {
  margin: 0;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  transition: color 180ms var(--ease-out);
}

.footer nav a:hover {
  color: var(--coral);
}

.error-body {
  color: var(--paper);
  background: var(--ink);
}

.error-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-content: center;
  padding: clamp(7rem, 14vw, 11rem) var(--pad);
}

.error-page::before {
  content: "♠";
  position: absolute;
  right: -5vw;
  bottom: -19vw;
  color: transparent;
  font-family: Georgia, serif;
  font-size: min(78vw, 62rem);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(241, 236, 223, .11);
}

.error-page__brand {
  position: absolute;
  top: 2rem;
  left: var(--pad);
  color: var(--paper);
}

.error-page__code {
  margin: 0 0 1rem;
  color: var(--coral);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.error-page h1 {
  max-width: 8ch;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 400;
  line-height: .8;
  text-transform: uppercase;
}

.error-page__copy {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: #d1cabd;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.4;
}

.error-page .kinetic-link {
  width: max-content;
  margin-top: 2rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(2.75rem);
  transition: opacity 760ms var(--ease-out), transform 900ms var(--ease-out);
}

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

@media (hover: hover) and (pointer: fine) and (min-width: 701px) {
  .js .lesson-hand.reveal.is-visible {
    transform: perspective(80rem) rotateX(var(--parallax-y)) rotateY(var(--parallax-x));
  }

  .js .lesson-hand.reveal.is-visible.is-dealt {
    transition-duration: 180ms;
  }

  .pricing.is-parallax .lesson-hand {
    will-change: transform;
  }
}

@media (min-width: 1120px) and (min-height: 760px) {
  .scroll-cue {
    display: flex;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 3.8rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .no-js .site-header {
    height: auto;
    min-height: var(--header-height);
    grid-template-columns: 1fr;
    padding-inline: .7rem;
  }

  .no-js .brand,
  .no-js .menu-button {
    display: none;
  }

  .no-js .desktop-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: .6rem;
    overflow-x: auto;
  }

  .no-js .desktop-nav a {
    flex: 0 0 auto;
    font-size: .58rem;
    letter-spacing: .09em;
  }

  .menu-overlay {
    display: grid;
    grid-template-rows: 1fr auto;
  }

  .menu-overlay__nav {
    align-self: center;
  }

  .menu-overlay__nav a {
    display: block;
    width: max-content;
    color: var(--paper);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4rem, 15vw, 8rem);
    line-height: .9;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(2.5rem);
    opacity: 0;
    transition: color 200ms var(--ease-out), opacity 480ms var(--ease-out), transform 620ms var(--ease-out);
  }

  .menu-overlay.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-overlay.is-open a:nth-child(2) { transition-delay: 45ms; }
  .menu-overlay.is-open a:nth-child(3) { transition-delay: 90ms; }
  .menu-overlay.is-open a:nth-child(4) { transition-delay: 135ms; }
  .menu-overlay.is-open a:nth-child(5) { transition-delay: 180ms; }

  .menu-overlay__nav a:hover {
    color: var(--coral);
  }

  .menu-overlay > p {
    margin: 0;
    color: var(--muted);
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    line-height: 1.35;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-right: var(--pad);
  }

  .hero__visual {
    width: 62vw;
    opacity: .74;
  }

  .hero__copy {
    align-self: end;
  }

  .hero__title {
    font-size: clamp(5.4rem, 15vw, 10rem);
  }

  .hero__intro {
    max-width: 41rem;
  }

  .hero-index {
    max-width: 41rem;
  }

  .lessons__grid {
    grid-template-columns: .75fr 1.25fr;
    gap: 2rem;
  }

  .studio-visual {
    min-height: 37rem;
  }

  .where {
    min-height: 100svh;
    grid-template-columns: 1fr;
  }

  .where__lead {
    max-width: 47rem;
  }

  .where__poster {
    width: min(100%, 39rem);
    justify-self: end;
    margin-top: 1rem;
  }

  .lesson-hand {
    width: calc(100% + var(--pad) + var(--pad));
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    margin-right: calc(0rem - var(--pad));
    margin-left: calc(0rem - var(--pad));
    padding: 3rem var(--pad) 3.5rem;
    scroll-padding-inline: var(--pad);
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-color: var(--coral) rgba(241, 236, 223, .12);
    scrollbar-width: thin;
  }

  .lesson-card {
    flex: 0 0 min(40vw, 20rem);
    scroll-snap-align: center;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-action:first-child {
    grid-column: 1 / -1;
  }

  .faq {
    grid-template-columns: minmax(14rem, .65fr) minmax(0, 1.35fr);
    gap: 3rem;
  }
}

@media (max-width: 700px) {
  :root {
    --pad: 1rem;
  }

  .site-header {
    top: .65rem;
    width: calc(100% - 1.25rem);
    padding-left: .85rem;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 7.2rem var(--pad) 2rem calc(var(--pad) + 1.7rem);
  }

  .hero::before {
    top: 8rem;
    left: 2rem;
    width: 90vw;
  }

  .hero__rail {
    left: .55rem;
    width: 1.15rem;
  }

  .hero__visual {
    top: 4.5rem;
    bottom: auto;
    width: 100%;
    height: 48%;
    opacity: .62;
  }

  .hero__visual::after {
    background: linear-gradient(0deg, var(--ink) 0%, transparent 55%, var(--ink) 120%);
  }

  .ribbon--hero {
    inset: -9% -22% 0 -2%;
    width: 124%;
    height: 116%;
  }

  .hero__spade,
  .hero__caption {
    display: none;
  }

  .eyebrow {
    max-width: 15rem;
    margin-bottom: 1rem;
    line-height: 1.45;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(4.8rem, 25vw, 7.8rem);
    line-height: .79;
  }

  .hero__intro {
    display: block;
    margin-top: 1.5rem;
  }

  .hero__intro p {
    max-width: 20rem;
    font-size: 1.15rem;
  }

  .kinetic-link {
    margin-top: 1.4rem;
  }

  .hero__welcome {
    gap: 1rem;
    margin-top: 1.35rem;
    padding-top: .85rem;
    font-size: 1.2rem;
  }

  .hero-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.25rem;
  }

  .hero-index a {
    min-height: 3.7rem;
    padding: .5rem;
  }

  .hero-index a:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(241, 236, 223, .16);
  }

  .hero-index a:nth-child(5) {
    border-top: 1px solid rgba(241, 236, 223, .16);
  }

  .lessons,
  .pricing,
  .contact {
    padding: 6rem var(--pad);
  }

  .lessons__grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .display-title {
    font-size: clamp(4.2rem, 21vw, 7rem);
    line-height: .83;
  }

  .editorial-copy {
    font-size: 1.55rem;
  }

  .studio-visual {
    width: calc(100% + 1rem);
    min-height: 31rem;
    margin-left: -1rem;
  }

  .where {
    display: block;
    padding: 6rem var(--pad);
  }

  .where__lead {
    padding-bottom: 4rem;
  }

  .where__poster {
    width: calc(100% + .5rem);
    margin: 0 -.25rem;
    padding: 2.1rem 1.5rem 2.4rem;
    transform: rotate(-.6deg);
  }

  .where__poster li {
    font-size: 2.6rem;
  }

  .where__spade {
    top: 9rem;
    bottom: auto;
    left: -8rem;
    width: 27rem;
    opacity: .1;
  }

  .pricing__heading {
    display: block;
  }

  .pricing__heading p {
    margin-top: 2rem;
  }

  .pricing__spade {
    top: 11rem;
    right: -9rem;
    width: 29rem;
  }

  .lesson-hand {
    --fan-step: clamp(2rem, 10vw, 2.5rem);
    --card-width: min(18.5rem, calc(100vw - 4 * var(--fan-step)));
    --hand-lift: clamp(1.4rem, 6vw, 2.2rem);
    position: relative;
    width: calc(100% + 2rem);
    height: clamp(27rem, 128vw, 34rem);
    display: block;
    overflow: visible;
    margin-top: 2.5rem;
    margin-right: -1rem;
    margin-left: -1rem;
    padding: 0;
    perspective: 70rem;
  }

  .lesson-card,
  .lesson-card:nth-child(n) {
    --hand-x: 0rem;
    --hand-y: 0rem;
    --hand-r: 0deg;
    --stack: 3;
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    z-index: var(--stack);
    width: var(--card-width);
    backface-visibility: hidden;
    transform: translate3d(calc(-50% + var(--hand-x)), var(--hand-y), 0) rotate(var(--hand-r));
    transform-origin: 50% 115%;
    transition: transform 520ms var(--ease-out), filter 420ms var(--ease-out);
    will-change: transform;
  }

  .lesson-card::before {
    display: none;
  }

  .lesson-card__link,
  .lesson-card:hover .lesson-card__link,
  .lesson-card:focus-within .lesson-card__link {
    transform: none;
  }

  .lesson-card:nth-child(1) { --hand-x: calc(-2 * var(--fan-step)); --hand-y: 3.4rem; --hand-r: -5deg; --stack: 1; }
  .lesson-card:nth-child(2) { --hand-x: calc(-1 * var(--fan-step)); --hand-y: .85rem; --hand-r: -2.5deg; --stack: 2; }
  .lesson-card:nth-child(3) { --hand-x: 0rem; --hand-y: 0rem; --hand-r: 0deg; --stack: 3; }
  .lesson-card:nth-child(4) { --hand-x: var(--fan-step); --hand-y: .85rem; --hand-r: 2.5deg; --stack: 2; }
  .lesson-card:nth-child(5) { --hand-x: calc(2 * var(--fan-step)); --hand-y: 3.4rem; --hand-r: 5deg; --stack: 1; }

  .lesson-card.is-selected,
  .lesson-card:has(.lesson-card__link:focus-visible) {
    z-index: 10;
    filter: drop-shadow(0 2rem 2rem rgba(0, 0, 0, .38));
    transform: translate3d(-50%, calc(0rem - var(--hand-lift)), 0) rotate(0deg) scale(1.015);
  }

  .lesson-hand.is-dealt .lesson-card {
    animation-name: card-deal-mobile;
  }

  @keyframes card-deal-mobile {
    from {
      opacity: 0;
      transform: translate3d(calc(-50% + var(--hand-x) - 1.6rem), calc(var(--hand-y) + 2.4rem), 0) rotate(calc(var(--hand-r) - 3deg)) scale(.97);
    }
  }

  .lesson-card h3 {
    font-size: clamp(2.75rem, 13vw, 3.35rem);
  }

  .lesson-card strong {
    font-size: clamp(4.4rem, 20vw, 5.25rem);
  }

  .lesson-card__unit {
    font-size: clamp(.9rem, 3.5vw, 1.05rem);
  }

  .pricing__gesture {
    display: block;
    max-width: 24rem;
    margin: -1rem auto 0;
    color: var(--muted);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
  }

  .faq {
    min-height: 0;
    display: block;
    padding: 6rem var(--pad);
  }

  .faq::before {
    display: none;
  }

  .faq__heading {
    position: relative;
    top: auto;
    margin-bottom: 3rem;
  }

  .faq .display-title {
    font-size: clamp(4.2rem, 21vw, 7rem);
  }

  .faq-list {
    gap: 1rem;
  }

  .faq-slip,
  .faq-slip:nth-child(even),
  .faq-slip:nth-child(3n) {
    min-height: 0;
    margin-inline: 0;
    padding: 1.45rem 1.2rem 1.6rem;
    transform: none;
  }

  .faq-slip {
    grid-template-columns: 2.5rem 1fr;
    gap: .75rem;
  }

  .faq-slip h3 {
    font-size: clamp(1.75rem, 8.5vw, 2.5rem);
  }

  .contact {
    min-height: 100svh;
    padding: 6rem 1rem 7rem;
  }

  .contact__ribbon {
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    width: 28%;
    height: 44%;
    opacity: .3;
  }

  .contact .display-title {
    font-size: clamp(5rem, 23vw, 8rem);
  }

  .contact__script {
    margin-top: -.18em;
    font-size: clamp(1.15rem, 5.5vw, 1.55rem);
  }

  .contact__prompt {
    max-width: 24rem;
  }

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

  .contact-action:first-child {
    grid-column: auto;
  }


  .footer {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding-block: 2rem;
  }

  .footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: .35rem 1.25rem;
    order: 3;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(241, 236, 223, .18);
  }

  .footer > p {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 1.1rem;
  }

  .hero__title {
    font-size: 4.55rem;
  }

}

@media (max-height: 760px) {
  .menu-overlay {
    grid-template-rows: auto auto;
    align-content: start;
    gap: 1.5rem;
    padding-top: clamp(5.5rem, 20vh, 7rem);
  }

  .menu-overlay__nav {
    align-self: start;
  }

  .menu-overlay__nav a {
    font-size: clamp(3rem, min(10vw, 12vh), 6rem);
    line-height: .86;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --ribbon-progress: 1;
    --peak-strength: 0;
  }
  html {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .title-line > span,
  .hero-enter,
  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .ribbon--hero path {
    stroke-dashoffset: 0;
  }

  .site-weave path {
    stroke-dashoffset: 0;
  }

  .site-weave__light {
    stroke-dasharray: none;
  }
}
