:root {
  --ink: #080a08;
  --ink-2: #10130f;
  --paper: #e7e8df;
  --white: #f5f6f1;
  --muted: #949b90;
  --line: rgba(245, 246, 241, .16);
  --dark-line: rgba(8, 10, 8, .16);
  --acid: #c6ff3f;
  --acid-dark: #25360e;
  --pad: clamp(1.25rem, 4vw, 5rem);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--acid) var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--white);
  background: var(--ink);
  font-family: "Vazirmatn", Tahoma, sans-serif;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

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

img {
  display: block;
  max-width: 100%;
}

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

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: var(--acid);
}

.grain {
  position: fixed;
  z-index: 1000;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.scroll-meter {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 3px;
  height: 100vh;
  background: rgba(255, 255, 255, .08);
}

.scroll-meter i {
  display: block;
  width: 100%;
  height: 0;
  background: var(--acid);
}

.preloader {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.5rem;
  color: var(--white);
  background: #050605;
  transition: clip-path 1.1s var(--ease), visibility 1.1s;
  clip-path: inset(0 0 0 0);
}

.preloader.is-hidden {
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}

.preloader__logo {
  font: 900 clamp(5rem, 12vw, 10rem)/.8 Arial, sans-serif;
  letter-spacing: -.11em;
}

.preloader__logo span,
.logo span,
.footer__logo span {
  color: var(--acid);
}

.preloader__track {
  width: min(280px, 60vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
}

.preloader__track i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: translateX(-100%);
  animation: preload 1.25s var(--ease) forwards;
}

.preloader small {
  color: var(--muted);
  font: 400 .55rem/1 Arial, sans-serif;
  letter-spacing: .24em;
}

@keyframes preload {
  to { transform: translateX(0); }
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 88px;
  padding: 0 var(--pad);
  display: flex;
  direction: ltr;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: height .4s var(--ease), background .4s, border-color .4s;
}

.header.is-scrolled {
  height: 68px;
  background: rgba(8, 10, 8, .78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.logo {
  display: flex;
  direction: ltr;
  align-items: flex-end;
  gap: .75rem;
}

.logo b {
  font: 900 2.1rem/.78 Arial, sans-serif;
  letter-spacing: -.11em;
}

.logo small {
  padding: 0 0 .1rem .75rem;
  color: #b7bdb3;
  border-left: 1px solid var(--line);
  font: 600 .55rem/1 Arial, sans-serif;
  letter-spacing: .2em;
}

.nav {
  display: flex;
  direction: rtl;
  gap: clamp(1.2rem, 2.5vw, 2.7rem);
}

.nav a {
  position: relative;
  color: #d7dbd4;
  font-size: .74rem;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.55rem;
  width: 100%;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: right;
}

.header__action {
  display: flex;
  direction: rtl;
  align-items: center;
  gap: .7rem;
  padding: .75rem 1rem;
  color: var(--ink);
  background: var(--acid);
  font-size: .72rem;
  font-weight: 600;
}

.header__action svg,
.button svg,
.location__link svg,
.form button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 8px;
  background: transparent;
  border: 1px solid var(--line);
}

.menu-button i {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform .35s var(--ease);
}

.menu-button.is-open i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button.is-open i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: 110px var(--pad) 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity .45s, visibility .45s, transform .6s var(--ease);
}

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

.menu nav {
  display: flex;
  flex-direction: column;
}

.menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(2rem, 9vw, 4rem);
  font-weight: 600;
}

.menu nav span {
  color: var(--acid);
  font: 400 .6rem/1 Arial, sans-serif;
}

.menu p {
  color: var(--muted);
  font-size: .72rem;
}

.menu__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1.5rem;
}

.menu__contact a {
  color: var(--white);
  font: 500 .75rem/1 Arial, sans-serif;
}

.menu__contact p {
  width: 100%;
  margin: 0;
}

.section {
  position: relative;
  z-index: 2;
  padding: clamp(6.5rem, 12vw, 11rem) var(--pad);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--muted);
  font-size: .68rem;
}

.section-kicker span {
  color: var(--acid);
  font: 400 .6rem/1 Arial, sans-serif;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .45;
}

.section-kicker--dark {
  color: #62665f;
}

.section-kicker--dark span {
  color: #3f5d14;
}

[data-reveal] {
  transform: translateY(32px);
  opacity: 0;
  transition: transform .9s var(--ease), opacity .75s;
}

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

.hero {
  height: 160vh;
}

.hero__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
}

.hero__video {
  --video-x: 0px;
  --video-y: 0px;
  --video-scroll-y: 0%;
  --video-scale: 1.02;
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: 53% center;
  filter: saturate(.82) contrast(1.08) brightness(.9);
  transform: translate3d(var(--video-x), calc(var(--video-y) + var(--video-scroll-y)), 0) scale(var(--video-scale));
  will-change: transform, filter;
}

.hero__video-light {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(198, 255, 63, .12), rgba(198, 255, 63, 0) 68%);
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--pointer-x, 50vw) - 50%), calc(var(--pointer-y, 50vh) - 50%), 0);
  transition: opacity .45s ease;
}

.hero__stage.is-scrubbing .hero__video-light {
  opacity: 1;
}

.hero__video-hint {
  position: absolute;
  z-index: 4;
  left: var(--pad);
  top: 108px;
  width: min(220px, 22vw);
  display: grid;
  direction: rtl;
  gap: .4rem;
  color: rgba(255, 255, 255, .62);
  pointer-events: none;
}

.hero__video-hint span {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--acid);
  font-size: .55rem;
  letter-spacing: .04em;
}

.hero__video-hint i {
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(198, 255, 63, .3);
  animation: liveHint 2.2s ease-out infinite;
}

.hero__video-hint b {
  font-size: .58rem;
  font-weight: 400;
}

.hero__video-hint em {
  position: relative;
  width: 100%;
  height: 1px;
  margin-top: .35rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}

.hero__video-hint small {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--video-progress, 0) * 100%);
  background: var(--acid);
  box-shadow: 0 0 12px rgba(198, 255, 63, .5);
}

@keyframes liveHint {
  65%, 100% { box-shadow: 0 0 0 10px rgba(198, 255, 63, 0); }
}

.hero__veil {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 5, .9) 0%, rgba(5, 7, 5, .52) 48%, rgba(5, 7, 5, .22) 76%),
    linear-gradient(180deg, rgba(5, 7, 5, .3) 0%, transparent 25%, transparent 65%, rgba(5, 7, 5, .85) 100%);
}

.hero__copy {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: var(--pad);
  width: min(760px, 72vw);
  transform: translateY(-48%);
  will-change: transform, opacity;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 clamp(1rem, 2.5vh, 2rem);
  color: #d9ddd5;
  font-size: .72rem;
}

.hero__eyebrow span {
  width: 6px;
  height: 6px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(198, 255, 63, .12);
}

.hero__brand {
  direction: ltr;
  margin-right: -.055em;
  font: 900 clamp(8rem, 24vw, 23rem)/.7 Arial, sans-serif;
  letter-spacing: -.115em;
  white-space: nowrap;
}

.hero__brand i {
  color: var(--acid);
  font-style: normal;
}

.hero__statement {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 3rem;
  margin-top: clamp(1.4rem, 3vh, 2.5rem);
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, .35);
}

.hero__statement h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.045em;
}

.hero__statement p {
  margin: 0;
  color: #d8dcd4;
  font-size: .84rem;
  line-height: 2;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .6);
}

.hero__actions {
  display: flex;
  gap: .65rem;
  margin-top: 1.6rem;
}

.button {
  min-height: 48px;
  padding: .8rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  font-size: .72rem;
  transition: color .3s, background .3s, border-color .3s;
}

.button--accent {
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--acid);
}

.button--accent:hover {
  background: #d6ff72;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, .3);
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero__footer {
  position: absolute;
  z-index: 5;
  right: var(--pad);
  bottom: 1.5rem;
  left: var(--pad);
  display: flex;
  direction: ltr;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .55);
  font: 400 .52rem/1 Arial, sans-serif;
  letter-spacing: .18em;
}

.hero__footer a {
  display: flex;
  direction: rtl;
  align-items: center;
  gap: 1rem;
  font-family: "Vazirmatn", sans-serif;
  letter-spacing: 0;
}

.hero__footer i {
  position: relative;
  display: block;
  width: 70px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .22);
}

.hero__footer i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 38%;
  background: var(--acid);
  animation: scrollHint 1.8s var(--ease) infinite;
}

@keyframes scrollHint {
  from { transform: translateX(-130%); }
  to { transform: translateX(360%); }
}

.intro {
  background: var(--ink);
}

.intro__headline {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 8vw;
  align-items: end;
  margin: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 9vw, 8rem);
}

.intro__headline h2,
.programs__head h2,
.gallery__head h2,
.location h2,
.register__intro h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.6rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.075em;
}

.intro__headline p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 2.1;
}

.intro__media {
  position: relative;
  min-height: 900px;
}

.intro__image {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.intro__image--large {
  top: 0;
  right: 0;
  width: 68%;
  height: 690px;
}

.intro__image--small {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 32%;
  height: 500px;
  border: 12px solid var(--ink);
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.intro__image:hover img {
  transform: scale(1.035);
}

.intro__image figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .72);
  font-size: .65rem;
}

.intro__image figcaption b {
  font: 400 .55rem/1 Arial, sans-serif;
}

.intro__note {
  position: absolute;
  right: 72%;
  top: 60px;
  width: 24%;
}

.intro__note strong {
  display: block;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
}

.intro__note p {
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: .75rem;
  line-height: 2;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  margin-top: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof > * {
  min-height: 200px;
  margin: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--line);
}

.proof > *:last-child {
  border-left: 0;
}

.proof b {
  color: var(--acid);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.07em;
}

.proof span {
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.8;
}

.proof > p {
  justify-content: flex-end;
  font-size: clamp(1.3rem, 2.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.5;
}

.journey {
  position: relative;
  height: 350vh;
  background: #0d100d;
}

.journey__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 650px;
  padding: 96px var(--pad) 28px;
  overflow: hidden;
  perspective: 1400px;
}

.journey__top {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.journey__count {
  display: flex;
  direction: ltr;
  align-items: center;
  gap: .7rem;
  font: 400 .55rem/1 Arial, sans-serif;
}

.journey__count b {
  color: var(--acid);
  font-size: 1rem;
}

.journey__count i {
  width: 35px;
  height: 1px;
  background: var(--line);
}

.journey__viewport {
  position: absolute;
  inset: 145px var(--pad) 50px;
  transform-style: preserve-3d;
}

.journey__scene {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.journey__scene.is-active {
  pointer-events: auto;
}

.journey__visual {
  position: relative;
  height: min(65vh, 680px);
  overflow: hidden;
  background: #151815;
  box-shadow: 0 50px 100px rgba(0, 0, 0, .28);
}

.journey__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, .5));
}

.journey__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey__visual > span {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: .2rem;
  color: transparent;
  font: 700 clamp(4rem, 8vw, 8rem)/1 Arial, sans-serif;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .35);
}

.journey__copy small {
  color: var(--acid);
  font: 400 .55rem/1 Arial, sans-serif;
  letter-spacing: .17em;
}

.journey__copy h2 {
  margin: 1.4rem 0 2rem;
  font-size: clamp(2.4rem, 4.6vw, 5.3rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.065em;
}

.journey__copy p {
  max-width: 460px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 2.1;
}

.journey__line {
  position: absolute;
  right: var(--pad);
  bottom: 24px;
  left: var(--pad);
  height: 1px;
  background: var(--line);
}

.journey__line i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--acid);
}

.programs {
  background: var(--ink);
}

.programs__head {
  display: grid;
  grid-template-columns: .4fr 1.6fr;
  gap: 5vw;
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.programs__head h2 {
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.programs__list {
  border-top: 1px solid var(--line);
}

.programs__list article {
  display: grid;
  grid-template-columns: .16fr .7fr 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 165px;
  border-bottom: 1px solid var(--line);
  transition: padding .45s var(--ease), color .3s, background .3s;
}

.programs__list article:hover {
  padding: 0 1.2rem;
  color: var(--ink);
  background: var(--acid);
}

.programs__list article > span {
  color: var(--muted);
  font: 400 .55rem/1 Arial, sans-serif;
}

.programs__list article:hover > span,
.programs__list article:hover p {
  color: rgba(8, 10, 8, .65);
}

.programs__list h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.8rem);
  font-weight: 500;
}

.programs__list p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.9;
}

.programs__list i {
  font-size: 1.5rem;
  font-style: normal;
}

.motion-story {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  overflow: hidden;
  background: #050705;
}

.motion-story__media,
.motion-story__veil {
  position: absolute;
  inset: 0;
}

.motion-story__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.1);
}

.motion-story__veil {
  background:
    linear-gradient(90deg, rgba(4, 6, 4, .94) 0%, rgba(4, 6, 4, .58) 46%, rgba(4, 6, 4, .18) 80%),
    linear-gradient(180deg, rgba(4, 6, 4, .24), transparent 45%, rgba(4, 6, 4, .64));
}

.motion-story__content {
  position: relative;
  z-index: 2;
  width: min(680px, 50vw);
  min-height: 100svh;
  padding: clamp(8rem, 13vw, 13rem) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.motion-story__content h2 {
  margin: 2.2rem 0 1.8rem;
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.08em;
}

.motion-story__content > p {
  max-width: 480px;
  margin: 0;
  color: #c5cbc1;
  font-size: .84rem;
  line-height: 2.1;
}

.motion-story__control {
  width: max-content;
  margin-top: 2.2rem;
  padding: .75rem 0;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #cdd2c9;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-size: .68rem;
}

.motion-story__control i {
  width: 8px;
  height: 11px;
  border-right: 2px solid var(--acid);
  border-left: 2px solid var(--acid);
}

.motion-story__control[aria-pressed="true"] i {
  width: 0;
  height: 0;
  border: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 9px solid var(--acid);
}

.motion-story__mark {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  bottom: 2rem;
  width: clamp(70px, 9vw, 130px);
  opacity: .7;
  filter: drop-shadow(0 0 25px rgba(198, 255, 63, .18));
}

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

.gallery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.gallery__head h2 {
  margin-top: 2.5rem;
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.gallery__open {
  flex: 0 0 auto;
  padding: .8rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
  font-size: .72rem;
}

.gallery__open span {
  font-size: 1.1rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 1.2rem;
}

.gallery__item {
  position: relative;
  grid-column: span 4;
  grid-row: span 4;
  padding: 0;
  overflow: hidden;
  color: white;
  background: #111;
  border: 0;
}

.gallery__item--hero {
  grid-column: span 8;
  grid-row: span 6;
}

.gallery__item--tall {
  grid-column: span 4;
  grid-row: span 6;
}

.gallery__item--wide {
  grid-column: span 8;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, .65));
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .5s;
}

.gallery__item:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.gallery__item > span {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .7rem;
}

.gallery__item b {
  font: 400 .55rem/1 Arial, sans-serif;
}

.founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  min-height: 110vh;
  background: var(--ink);
}

.founder__media {
  position: relative;
  height: min(78vh, 820px);
  overflow: hidden;
}

.founder__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
}

.founder__media .founder__mark {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: clamp(75px, 9vw, 130px);
  height: auto;
  object-fit: contain;
  opacity: .78;
  mix-blend-mode: screen;
  filter: none;
}

.founder__years {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 210px;
  padding: 1.4rem;
  color: var(--ink);
  background: var(--acid);
}

.founder__years b {
  display: block;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
}

.founder__years span {
  display: block;
  margin-top: .7rem;
  font-size: .68rem;
  line-height: 1.7;
}

.founder__copy blockquote {
  margin: clamp(3rem, 6vw, 6rem) 0;
  font-size: clamp(1.5rem, 2.7vw, 3rem);
  font-weight: 300;
  line-height: 1.75;
}

.founder__name {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.founder__name h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -.06em;
}

.founder__name span {
  color: var(--acid);
  font-size: .68rem;
}

.founder__copy > p {
  max-width: 580px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 2.15;
}

.location {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 8vw;
  align-items: center;
  min-height: 100vh;
  background: #10140f;
}

.location h2 {
  margin-top: 3rem;
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.location address {
  margin: 3rem 0;
  color: #d0d5cc;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-style: normal;
  line-height: 2;
}

.location__link {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
}

.location__contacts {
  margin-top: 2.2rem;
  border-top: 1px solid var(--line);
}

.location__contacts a {
  padding: .9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.location__contacts small {
  color: var(--muted);
  font-size: .62rem;
}

.location__contacts b {
  font: 500 .73rem/1 Arial, sans-serif;
}

.map {
  position: relative;
  height: min(70vh, 720px);
  overflow: hidden;
  background: #151b14;
  border: 1px solid var(--line);
}

.map--real {
  margin: 0;
  height: min(78vh, 780px);
  background: #dce1da;
}

.map--real > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.map--real::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 90px rgba(5, 7, 5, .3);
}

.map--real figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  background: rgba(5, 7, 5, .84);
  backdrop-filter: blur(16px);
}

.map--real figcaption span {
  color: #aeb5aa;
  font-size: .62rem;
}

.map--real figcaption b {
  font-size: .78rem;
  font-weight: 600;
}

.map__grid {
  position: absolute;
  inset: -15%;
  opacity: .38;
  background-image:
    linear-gradient(rgba(198, 255, 63, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 255, 63, .12) 1px, transparent 1px);
  background-size: 45px 45px;
  transform: perspective(500px) rotateX(58deg) scale(1.35);
}

.map__route {
  position: absolute;
  height: 14px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.map__route--a {
  top: 36%;
  left: -10%;
  width: 120%;
  transform: rotate(-15deg);
}

.map__route--b {
  top: 42%;
  left: 2%;
  width: 100%;
  transform: rotate(54deg);
}

.map__route--c {
  right: 6%;
  bottom: 17%;
  width: 80%;
  transform: rotate(7deg);
}

.map__pin {
  position: absolute;
  z-index: 2;
  top: 48%;
  left: 52%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 0 0 12px rgba(198, 255, 63, .08), 0 0 70px rgba(198, 255, 63, .18);
  animation: pinFloat 2.2s ease-in-out infinite;
}

.map__pin::after {
  content: "";
  position: absolute;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(198, 255, 63, .28);
  border-radius: 50%;
  animation: pinRing 2.2s infinite;
}

.map__pin span {
  font: 900 1rem/1 Arial, sans-serif;
  transform: rotate(45deg);
}

@keyframes pinFloat {
  50% { transform: translate(-50%, -58%) rotate(-45deg); }
}

@keyframes pinRing {
  from { transform: scale(.5); opacity: 1; }
  to { transform: scale(1.7); opacity: 0; }
}

.map > p {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  margin: 0;
  padding: .55rem .7rem;
  color: var(--muted);
  background: rgba(8, 10, 8, .75);
  font-size: .62rem;
}

.map > small {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  color: rgba(255, 255, 255, .42);
  font: 400 .52rem/1.5 Arial, sans-serif;
  letter-spacing: .12em;
}

.register {
  position: relative;
  min-height: 100vh;
  padding: clamp(7rem, 12vw, 12rem) var(--pad);
  overflow: hidden;
}

.register__image {
  position: absolute;
  inset: 0;
}

.register__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 5, .84);
  backdrop-filter: blur(3px);
}

.register__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.register__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: end;
}

.register__intro h2 {
  margin: 3rem 0 2rem;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.register__intro > p {
  max-width: 480px;
  margin: 0;
  color: #b4bbb0;
  font-size: .82rem;
  line-height: 2.1;
}

.form {
  padding: clamp(1.5rem, 3vw, 3rem);
  background: rgba(8, 10, 8, .68);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.form label {
  display: block;
  margin-bottom: 1.4rem;
}

.form label span {
  display: block;
  margin-bottom: .45rem;
  color: #aeb5aa;
  font-size: .63rem;
}

.form input,
.form select {
  width: 100%;
  padding: .9rem 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  border-radius: 0;
  outline: 0;
  transition: border-color .3s;
}

.form input:focus,
.form select:focus {
  border-color: var(--acid);
}

.form input::placeholder {
  color: #62685e;
}

.form select option {
  color: var(--ink);
}

.form button {
  width: 100%;
  min-height: 52px;
  padding: .9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--acid);
  border: 0;
  font-size: .75rem;
  font-weight: 600;
}

.form__status {
  min-height: 1.5em;
  margin: .8rem 0 0;
  color: var(--acid);
  font-size: .65rem;
}

.footer {
  padding: clamp(5rem, 9vw, 9rem) var(--pad) 2rem;
  background: #050605;
}

.footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.footer__logo {
  direction: ltr;
  font: 900 clamp(8rem, 23vw, 22rem)/.62 Arial, sans-serif;
  letter-spacing: -.115em;
}

.footer__top p {
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.8;
}

.footer__contact {
  display: grid;
  justify-items: end;
  gap: .5rem;
}

.footer__contact p {
  margin: 0 0 .5rem;
}

.footer__contact a {
  color: #c5cbc1;
  font: 500 .7rem/1 Arial, sans-serif;
}

.footer__line {
  padding-top: 1.3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  color: #6f766c;
  font-size: .58rem;
}

.footer__line nav {
  display: flex;
  gap: 2rem;
  color: #b8beb4;
}

.footer__line > a {
  justify-self: end;
}

.mobile-cta {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  padding: 4vw;
  display: grid;
  place-items: center;
  background: rgba(3, 4, 3, .96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox figure {
  width: min(1100px, 84vw);
  height: 84vh;
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  height: calc(100% - 32px);
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: .65rem;
  color: var(--muted);
  text-align: center;
  font-size: .65rem;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: var(--white);
  background: transparent;
  border: 0;
}

.lightbox__close {
  top: 1.4rem;
  left: 1.4rem;
  font-size: 2rem;
}

.lightbox__nav {
  top: 50%;
  padding: 1rem;
  font-size: 3rem;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  right: 2rem;
}

.lightbox__nav--next {
  left: 2rem;
}

.gallery-modal {
  position: fixed;
  z-index: 450;
  inset: 0;
  padding: clamp(1.5rem, 4vw, 4rem);
  overflow-y: auto;
  color: var(--white);
  background: #090b09;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform .8s var(--ease), opacity .5s, visibility .5s;
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gallery-modal header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.gallery-modal header small {
  color: var(--acid);
  font: 400 .52rem/1 Arial, sans-serif;
  letter-spacing: .16em;
}

.gallery-modal h2 {
  margin: .5rem 0 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.gallery-modal header button {
  padding: .5rem 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.gallery-modal__filters {
  margin: 3rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.gallery-modal__filters button {
  padding: .55rem .9rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: .65rem;
}

.gallery-modal__filters button.is-active {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.gallery-modal__grid {
  columns: 4 250px;
  column-gap: 1rem;
}

.gallery-modal__grid button {
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  break-inside: avoid;
  background: #111;
  border: 0;
  overflow: hidden;
}

.gallery-modal__grid img {
  width: 100%;
  transition: transform .7s var(--ease);
}

.gallery-modal__grid button:hover img {
  transform: scale(1.035);
}

@media (max-width: 1000px) {
  .nav,
  .header__action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero__copy {
    width: min(820px, calc(100vw - var(--pad) * 2));
  }

  .intro__headline,
  .programs__head,
  .founder,
  .location,
  .register__inner {
    grid-template-columns: 1fr;
  }

  .intro__headline {
    gap: 2rem;
  }

  .intro__media {
    min-height: 820px;
  }

  .intro__image--large {
    width: 78%;
    height: 610px;
  }

  .intro__image--small {
    width: 38%;
    height: 420px;
  }

  .intro__note {
    right: 81%;
    width: 18%;
  }

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

  .proof > *:nth-child(2) {
    border-left: 0;
  }

  .proof > *:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .journey__scene {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .programs__head {
    gap: 3rem;
  }

  .founder {
    gap: 5rem;
  }

  .founder__media {
    height: 75vh;
  }

  .location {
    gap: 5rem;
  }

  .location__copy {
    max-width: 650px;
  }

  .map {
    height: 65vh;
  }

  .register__inner {
    gap: 4rem;
  }
}

@media (max-width: 680px) {
  :root {
    --pad: 1.1rem;
  }

  body {
    padding-bottom: 57px;
  }

  .scroll-meter {
    display: none;
  }

  .header,
  .header.is-scrolled {
    height: 66px;
  }

  .logo small {
    display: none;
  }

  .hero {
    height: 130vh;
  }

  .hero__stage {
    min-height: 560px;
  }

  .hero__video {
    object-position: 62% center;
  }

  .hero__video-hint {
    display: none;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(5, 7, 5, .25) 0%, rgba(5, 7, 5, .18) 35%, rgba(5, 7, 5, .9) 100%),
      linear-gradient(90deg, rgba(5, 7, 5, .55), transparent 80%);
  }

  .hero__copy {
    top: auto;
    bottom: 76px;
    transform: none;
  }

  .hero__eyebrow {
    font-size: .62rem;
  }

  .hero__brand {
    font-size: 37vw;
  }

  .hero__statement {
    grid-template-columns: 1fr;
    gap: .8rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .hero__statement h1 {
    font-size: 1.75rem;
  }

  .hero__statement p {
    max-width: 330px;
    font-size: .72rem;
    line-height: 1.8;
  }

  .hero__actions {
    margin-top: 1rem;
  }

  .button {
    min-height: 44px;
    padding: .65rem .9rem;
    font-size: .66rem;
  }

  .hero__footer {
    display: none;
  }

  .intro__headline h2,
  .programs__head h2,
  .gallery__head h2,
  .location h2,
  .register__intro h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .intro__media {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: .7rem;
  }

  .intro__image {
    position: relative;
    inset: auto;
    width: auto;
    border: 0;
  }

  .intro__image--large {
    height: 480px;
  }

  .intro__image--small {
    height: 350px;
    margin-top: 130px;
  }

  .intro__note {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    grid-column: 1 / -1;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
  }

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

  .proof > * {
    min-height: 150px;
    padding: 1rem;
  }

  .proof b {
    font-size: 3.2rem;
  }

  .proof > p {
    font-size: 1.05rem;
  }

  .journey {
    height: 305vh;
  }

  .journey__stage {
    min-height: 580px;
    padding-top: 82px;
  }

  .journey__viewport {
    inset: 118px var(--pad) 40px;
  }

  .journey__scene {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 1.2rem;
  }

  .journey__visual {
    height: 42vh;
    min-height: 260px;
  }

  .journey__copy h2 {
    margin: .55rem 0 .7rem;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .journey__copy p {
    margin: 0;
    font-size: .68rem;
    line-height: 1.75;
  }

  .programs__list article {
    position: relative;
    grid-template-columns: 35px 1fr auto;
    gap: .7rem;
    min-height: 145px;
    padding: 1.2rem 0;
  }

  .programs__list h3 {
    font-size: 1.45rem;
  }

  .programs__list p {
    grid-column: 2 / -1;
    font-size: .67rem;
  }

  .programs__list article:hover {
    padding: 1.2rem .7rem;
  }

  .motion-story {
    min-height: 92svh;
  }

  .motion-story__video {
    object-position: 62% center;
  }

  .motion-story__veil {
    background:
      linear-gradient(180deg, rgba(4, 6, 4, .18) 0%, rgba(4, 6, 4, .36) 42%, rgba(4, 6, 4, .94) 82%);
  }

  .motion-story__content {
    width: 100%;
    min-height: 92svh;
    padding: 7rem var(--pad) 5rem;
    justify-content: flex-end;
  }

  .motion-story__content h2 {
    margin: 1.5rem 0 1rem;
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .motion-story__content > p {
    max-width: 330px;
    font-size: .72rem;
    line-height: 1.9;
  }

  .motion-story__mark {
    top: 5.3rem;
    bottom: auto;
    width: 72px;
  }

  .gallery__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery__head h2 {
    margin-top: 2rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
    gap: .65rem;
  }

  .gallery__item,
  .gallery__item--hero,
  .gallery__item--tall,
  .gallery__item--wide {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery__item--hero,
  .gallery__item--wide {
    grid-column: 1 / -1;
  }

  .gallery__item--hero {
    grid-row: span 2;
  }

  .gallery__item--wide {
    grid-row: span 1;
  }

  .founder__media {
    height: 60vh;
    min-height: 430px;
  }

  .founder__years {
    min-width: 170px;
  }

  .founder__years b {
    font-size: 3.5rem;
  }

  .founder__copy blockquote {
    margin: 3rem 0;
    font-size: 1.35rem;
  }

  .map {
    height: 55vh;
    min-height: 390px;
  }

  .map--real {
    height: 68vh;
    min-height: 520px;
  }

  .map--real > img {
    object-position: 50% 50%;
  }

  .register {
    padding: 6rem .75rem;
  }

  .form {
    padding: 1.25rem;
  }

  .footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer__contact {
    justify-items: start;
  }

  .footer__logo {
    font-size: 38vw;
  }

  .footer__line {
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
  }

  .footer__line nav {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    height: 57px;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    background: var(--acid);
    font-size: .74rem;
    font-weight: 600;
    transition: transform .4s var(--ease);
  }

  .mobile-cta.is-hidden {
    transform: translateY(100%);
  }

  .lightbox {
    padding: .6rem;
  }

  .lightbox figure {
    width: 96vw;
    height: 76vh;
  }

  .lightbox__nav {
    top: auto;
    bottom: 1rem;
  }

  .lightbox__nav--prev {
    right: 28%;
  }

  .lightbox__nav--next {
    left: 28%;
  }

  .gallery-modal__grid {
    columns: 2 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .hero__video {
    transform: scale(1.02) !important;
  }
}
