@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;700;800;900&display=swap");

:root {
  --page: #e4e4e4;
  --ink: #000;
  --paper: #f5f5f5;
  --white: #fff;
  --muted: #626262;
  --line: rgba(0, 0, 0, .18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Work Sans", Arial, sans-serif;
  font-weight: 500;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.video-modal-open {
  overflow: hidden;
}

body.delete-confirm-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--white);
  padding: 8px 10px;
}

.skip:focus {
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 0 52px;
  background: transparent;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 122px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.96) 0%,
    rgba(232,232,232,.74) 42%,
    rgba(120,120,120,.30) 67%,
    rgba(0,0,0,0) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mask-image: linear-gradient(180deg, #000 0%, #000 48%, rgba(0,0,0,.7) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 48%, rgba(0,0,0,.7) 70%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.brand {
  font-weight: 800;
  font-size: 19px;
  justify-self: start;
  margin-left: -6px;
}

.mobile-menu-toggle,
.mobile-menu-shell {
  display: none;
}

.mobile-menu-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: opacity .22s ease, transform .22s ease;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform .22s ease, opacity .22s ease;
}

.mobile-menu-toggle span + span {
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.header-icons,
.follow-icons,
.reach-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-icons a,
.follow-icons a,
.reach-icons a {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-icons svg,
.follow-icons svg,
.reach-icons svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cart-link {
  width: auto !important;
  min-width: max-content;
  flex: 0 0 auto;
  gap: 6px;
  font-size: 13px;
}

.cart-link svg,
.cart-link span {
  flex: 0 0 auto;
}

.cart-page-shell {
  background: #000;
  color: var(--white);
}

.cart-page {
  min-height: 100vh;
  padding: 138px 52px 88px;
  position: relative;
  overflow: hidden;
}

.cart-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 16%),
    radial-gradient(circle at top center, rgba(191,144,75,.18) 0%, rgba(191,144,75,0) 36%),
    linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 32%);
  pointer-events: none;
}

.cart-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: .18;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 45%, transparent 100%);
  pointer-events: none;
}

.cart-hero {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 38px 34px 42px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.cart-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .96;
  font-weight: 900;
}

.cart-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.65;
}

.cart-subline {
  margin: 0 0 18px !important;
  color: rgba(255,255,255,.92) !important;
  font-size: 16px !important;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cart-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cart-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.28);
  font-size: 13px;
  font-weight: 900;
}


.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #000;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.56) 42%, rgba(0,0,0,.18) 100%),
    linear-gradient(0deg, rgba(0,0,0,.46), rgba(0,0,0,0) 45%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(.48) contrast(1.08) blur(5px);
  opacity: .98;
  transform: scale(1.04);
}

.hero-copy {
  position: absolute;
  left: 9%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 490px;
  max-width: calc(100vw - 620px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.hero .eyebrow {
  color: rgba(255,255,255,.78);
}

.hero h1 {
  margin: 0;
  max-width: 490px;
  font-size: 68px;
  line-height: .94;
  font-weight: 900;
}

.hero h1 span {
  display: block;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  max-width: 380px;
}

.hero-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.78);
  padding: 0 20px;
  font-size: 13px;
  font-weight: 900;
}

@media (min-width: 1281px) {
  .hero-copy {
    width: 520px;
    max-width: 520px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 72px;
  }
}

@media (max-width: 1180px) {
  .hero-copy {
    width: min(500px, 44vw);
    max-width: min(500px, 44vw);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(44px, 5vw, 68px);
  }

  .hero h1 span {
    display: inline;
  }
}

.hero-actions a:first-child {
  background: #fff;
  color: #000;
}

.hero-portrait-frame {
  position: absolute;
  top: 122px;
  right: 8%;
  z-index: 1;
  width: min(38vw, 535px);
  height: 548px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  overflow: hidden;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
}

.reach {
  position: absolute;
  right: 18%;
  bottom: 18px;
  z-index: 2;
  text-align: center;
}

.reach-icons {
  justify-content: center;
  gap: 16px;
}

.reach-icons a {
  width: 48px;
  height: 48px;
  padding: 12px;
  color: #000;
  background: var(--white);
  border-radius: 50%;
}

.reach p {
  margin: 2px 0 0;
  font-size: 19px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 70px;
  padding: 84px 6% 96px;
  border-bottom: 1px solid var(--line);
}

.intro h2,
.section-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
  font-weight: 900;
}

.intro p,
.section-copy p,
.class-card p {
  max-width: 980px;
  font-size: 18px;
  line-height: 1.62;
  margin: 0 0 14px;
}

.intro-stats {
  align-self: end;
  display: grid;
  border-top: 1px solid var(--line);
}

.intro-stats span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 92px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.05;
  font-weight: 900;
}

.showreel {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(460px, 1.28fr);
  gap: 54px;
  align-items: center;
  padding: 102px 6%;
  background: #0b0b0b;
  color: #fff;
}

.section-copy {
  padding: 0 0 34px;
  max-width: 980px;
}

.showreel .section-copy {
  padding: 0;
}

.showreel .eyebrow,
.projects .eyebrow {
  color: #9d9d9d;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 900;
}

.video-slot,
.video-launch {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border: 0;
}

.showreel .video-slot,
.showreel .video-launch {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 900px;
  justify-self: end;
}

.video-slot img,
.video-launch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
  filter: brightness(.94) contrast(1.04);
  transition: transform .4s ease, filter .28s ease, opacity .28s ease;
}

.video-launch {
  display: block;
  padding: 0;
  cursor: pointer;
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease;
}

.video-launch:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(0,0,0,.28);
}

.video-launch:hover img {
  opacity: .86;
  filter: brightness(1.14) contrast(1.07);
  transform: scale(1.03);
}

.video-launch:focus-visible {
  outline: 2px solid rgba(255,255,255,.88);
  outline-offset: 4px;
}

.video-launch-media {
  position: absolute;
  inset: 0;
}

.video-launch-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.28) 50%, rgba(0,0,0,.54) 100%),
    linear-gradient(90deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.05) 42%, rgba(0,0,0,.26) 100%);
}

.video-launch-sheen {
  position: absolute;
  inset: -20%;
  background: linear-gradient(120deg, transparent 32%, rgba(255,255,255,.13) 48%, transparent 64%);
  transform: translateX(-38%);
  transition: transform .45s ease;
  pointer-events: none;
}

.video-launch:hover .video-launch-sheen {
  transform: translateX(38%);
}

.video-launch-play {
  position: absolute;
  left: 24px;
  bottom: 22px;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(10,10,10,.58);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
}

.video-launch:hover .video-launch-play {
  transform: scale(1.05);
  background: rgba(12,12,12,.72);
  border-color: rgba(255,255,255,.32);
}

.video-launch-play-icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  color: #fff;
  text-align: center;
}

.video-placeholder p {
  margin: 0;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 900;
}

.video-placeholder span {
  max-width: 420px;
  color: #ddd;
  font-size: 14px;
  line-height: 1.45;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.video-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.86);
  cursor: pointer;
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
}

.video-modal-close {
  position: absolute;
  top: -52px;
  right: 0;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(10,10,10,.68);
  color: #fff;
  cursor: pointer;
}

.video-modal-close:focus-visible {
  outline: 2px solid rgba(255,255,255,.9);
  outline-offset: 3px;
}

.video-modal-frame {
  width: 100%;
}

.video-modal-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 26px 80px rgba(0,0,0,.45);
}

.video-modal-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.delete-confirm {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.delete-confirm.visible {
  opacity: 1;
  pointer-events: auto;
}

.delete-confirm-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.delete-confirm-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  display: grid;
  gap: 16px;
  padding: 32px 28px 28px;
  background: #101010;
  border: 1px solid #2a2a2a;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
  animation: commentsFadeUp .28s ease both;
}

.delete-confirm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid #3a3a3a;
  background: transparent;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.delete-confirm-eyebrow {
  margin: 0;
  color: #b9b9b9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.delete-confirm h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.delete-confirm p:not(.delete-confirm-eyebrow):not(.delete-confirm-status) {
  margin: 0;
  color: #d7d7d7;
  line-height: 1.6;
}

.delete-confirm-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.delete-confirm-actions button {
  min-height: 48px;
  border: 0;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease;
}

.delete-confirm-cancel {
  background: #fff;
  color: #000;
}

.delete-confirm-approve {
  background: #1c1c1c;
  color: #ffd2d2;
  border: 1px solid #4b2b2b !important;
}

.delete-confirm-status {
  min-height: 22px;
  margin: 0;
  color: #cfcfcf;
  line-height: 1.55;
}

.projects {
  padding: 96px 6% 100px;
  background: #101010;
  color: #fff;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.project-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.project-list h3 {
  margin: 0 0 7px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.15;
  font-weight: 900;
}

.project-list p {
  margin: 0;
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .project-item {
    gap: 10px;
  }

  .project-item h3,
  .project-list h3 {
    margin-bottom: 7px;
    font-size: 16px;
  }

  .project-item p,
  .project-list p {
    font-size: 12px;
    line-height: 1.45;
  }

  .project-list .video-launch,
  .project-list .video-slot {
    aspect-ratio: 16 / 9;
  }
}

.assets-shop {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(420px, 1.15fr);
  gap: 70px;
  align-items: start;
  padding: 108px 6%;
  border-top: 1px solid rgba(255,255,255,.06);
  background: #e9e9e9;
  overflow: hidden;
}

.assets-shop .section-copy {
  padding: 0;
  position: sticky;
  top: 108px;
}

.asset-card {
  position: relative;
  display: block;
  color: var(--white);
  overflow: hidden;
  background: #000;
}

.asset-card img {
  width: 100%;
  filter: contrast(1.04) brightness(.92) saturate(1.04);
  transition: transform .4s ease;
}

.asset-card:hover img {
  transform: scale(1.025);
}

.asset-card span {
  position: absolute;
  left: 28px;
  bottom: 26px;
  border: 1px solid rgba(255,255,255,.7);
  padding: 12px 16px;
  font-weight: 800;
  font-size: 18px;
}

.coming-soon-panel {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.coming-soon-panel span {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .96;
  font-weight: 900;
}

.coming-soon-panel p {
  margin: 0;
  max-width: 460px;
  color: #3b3b3b;
  font-size: 16px;
  line-height: 1.55;
}

.assets-copy-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.assets-store-page {
  background: #080808;
  color: #fff;
}

.assets-page-hero {
  min-height: 480px;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 82px 6% 72px;
  position: relative;
  overflow: hidden;
  background: #050505;
}

.assets-page-hero::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: url("/assets/buy-my.png") center / cover no-repeat;
  filter: blur(10px) brightness(.66) contrast(1.05);
  transform: scale(1.04);
}

.assets-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.72) 76%, #080808 100%),
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.34) 64%, rgba(0,0,0,.84) 100%);
  pointer-events: none;
}

.assets-page-hero > div {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  text-align: center;
  display: grid;
  justify-items: center;
}

.assets-page-hero .eyebrow {
  color: #bdbdbd;
}

.assets-page-hero h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 108px);
  line-height: .9;
  font-weight: 900;
  white-space: nowrap;
}

.assets-page-hero p:last-child {
  max-width: 760px;
  margin: 26px auto 0;
  color: #e6e6e6;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.assets-page {
  padding: 34px 6% 112px;
}

.asset-detail-preview h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 66px);
  line-height: .98;
  font-weight: 900;
}

.asset-detail-grid p {
  margin: 0;
  color: #d4d4d4;
  font-size: 18px;
  line-height: 1.62;
}

.asset-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.asset-product-card {
  display: grid;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.asset-product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #111;
  overflow: hidden;
}

.asset-product-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(8,8,8,0) 0%, rgba(18,18,18,.9) 100%);
  pointer-events: none;
}

.asset-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(.62) contrast(1.08);
  transform: scale(1);
  transition: transform .42s ease, filter .32s ease;
}

.asset-product-media span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.58);
  padding: 9px 11px;
  font-size: 12px;
  font-weight: 900;
}

.asset-product-copy {
  display: grid;
  gap: 10px;
  padding: 20px 18px 22px;
}

.asset-product-copy p {
  margin: 0;
  color: #aaa;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.asset-product-copy h3 {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.05;
  font-weight: 900;
}

.asset-product-copy span {
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.5;
}

.asset-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.075);
}

.asset-product-card:hover .asset-product-media img {
  transform: scale(1.045);
  filter: grayscale(.75) brightness(.72) contrast(1.08);
}

.asset-detail-preview {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(360px, 1.2fr);
  gap: 60px;
  margin-top: 92px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: 54px 0;
}

.asset-detail-preview .eyebrow {
  color: #aaa;
}

.asset-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.asset-detail-grid h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

@media (min-width: 821px) and (max-width: 1180px) {
  .nav-links {
    gap: 18px;
    font-size: 12px;
  }

  .site-header {
    padding-left: 36px;
    padding-right: 36px;
  }

  .class-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .class-page-title {
    margin-bottom: 42px;
  }

  .class-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
  }
}

.footer {
  background: var(--paper);
  padding: 94px 9% 54px;
  display: grid;
  grid-template-columns: minmax(280px, 560px) minmax(160px, 240px);
  justify-content: center;
  gap: 96px;
  align-items: start;
}

.newsletter h2 {
  margin: 0 0 32px;
  font-size: 25px;
  font-weight: 800;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
}

.newsletter input,
.class-form input {
  height: 48px;
  border: 1px solid #bbb;
  background: #f7f7f7;
  padding: 12px 16px;
}

.newsletter input {
  flex: 1;
}

.newsletter button,
.class-form button,
.locked-post button {
  min-height: 48px;
  border: 0;
  background: #111;
  color: var(--white);
  padding: 0 26px;
  font-weight: 800;
  cursor: pointer;
}

.thanks {
  margin: 16px 0 0;
  opacity: 0;
}

.thanks.visible {
  opacity: 1;
}

.follow h4 {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.footer .follow-icons {
  gap: 22px;
}

.footer .follow-icons a {
  width: 56px;
  height: 56px;
  border: 1px solid #111;
  padding: 15px;
  border-radius: 50%;
}

.class-page {
  background: #000;
  color: var(--white);
  min-width: 0;
}

.class-shell {
  width: 100%;
  padding: 124px 6.5% 96px;
}

.class-page-title {
  margin-bottom: 64px;
}

.class-page-title h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(46px, 4.8vw, 72px);
  line-height: 1;
  font-weight: 900;
}

.class-layout {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .82fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.class-left {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.class-poster {
  overflow: hidden;
  border-radius: 34px;
}

.class-poster img {
  width: 100%;
}

.class-card {
  background: #d9d9d9;
  color: #000;
  border-radius: 36px 36px 0 0;
  padding: 48px 34px 54px;
}

.class-card h2 {
  margin: 0 0 26px;
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1;
  font-weight: 900;
}

.class-form {
  display: grid;
  align-content: start;
  gap: 18px;
  color: var(--white);
  padding-top: 8px;
  min-width: 0;
}

.class-form button {
  width: 100%;
}

.class-form label,
.class-form legend {
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: .01em;
  font-weight: 500;
}

.class-form span,
.captions {
  color: #bbb;
  font-size: 13px;
}

.field-wrap {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field-label {
  font-size: 15px;
  font-weight: 500;
}

.field-label em {
  color: #a8a8a8;
  font-style: normal;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.class-form input,
.split > * {
  width: 100%;
  min-width: 0;
}

.captions {
  margin-top: -10px;
}

fieldset {
  display: grid;
  gap: 14px;
  border: 0;
  padding: 0;
  margin: 8px 0;
}

.check {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-inline {
  margin-top: -4px;
}

.check input {
  width: 18px;
  height: 18px;
  padding: 0;
}

.field-error {
  margin: 4px 0 0;
  color: #ffb8b8;
  font-size: 13px;
  line-height: 1.45;
}

.class-payment-status {
  margin: 2px 0 0;
  color: #d7d7d7;
  font-size: 13px;
  line-height: 1.45;
}

.payment-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  padding: 20px 18px;
}

.payment-panel > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.payment-panel-label {
  display: inline-block;
  color: #a8a8a8;
  font-size: 12px !important;
  letter-spacing: .08em;
}

.payment-panel strong {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.payment-panel p {
  margin: 0;
  color: #d2d2d2;
  font-size: 14px;
  line-height: 1.55;
}

.class-meta {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.class-meta li {
  line-height: 1.5;
}

.form-submit-frame {
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.class-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .52);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 40;
}

.class-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.class-modal-card {
  position: relative;
  width: min(100%, 540px);
  padding: 34px 30px 30px;
  background: #f0f0f0;
  color: #000;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.class-modal-card h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  font-weight: 900;
}

.class-modal-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.class-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.notes-page,
.note-detail-page,
.media-page,
.not-found-page {
  min-height: 720px;
  background: #000;
  color: var(--white);
  padding-top: 74px;
}

.notes-hero {
  position: relative;
  min-height: 250px;
  display: grid;
  align-items: end;
  padding: 34px 12% 46px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.45) 50%, #000 100%),
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.32) 58%, rgba(0,0,0,.78) 100%),
    url("/assets/showreel.jpg") center / cover no-repeat;
  overflow: hidden;
}

.notes-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000 76%);
  pointer-events: none;
}

.notes-hero > div {
  position: relative;
  z-index: 1;
}

.notes-hero h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 92px);
  line-height: .94;
  font-weight: 900;
}

.notes-shell {
  min-height: 860px;
  padding: 34px 12% 110px;
}

.notes-search {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 72px;
}

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

.notes-search > div {
  position: relative;
  display: grid;
}

.notes-search input {
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  color: #fff;
  padding: 0 58px 0 18px;
}

.notes-search input::placeholder {
  color: #aaa;
}

.notes-search button {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 34px;
  height: 34px;
  min-height: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  padding: 0;
  font-weight: 900;
  cursor: pointer;
}

.notes-search p,
.notes-empty {
  margin: 0;
  color: #bbb;
  font-size: 15px;
  line-height: 1.5;
}

.notes-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 235px;
  gap: 54px 110px;
}

.note-row {
  display: block;
}

.note-row.is-hidden {
  display: none;
}

.note-row time {
  display: block;
  margin-bottom: 12px;
  color: #ddd;
  font-size: 14px;
}

.note-row h1 {
  margin: 0 0 22px;
  max-width: 430px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
}

.note-row p {
  max-width: 420px;
  margin: -10px 0 18px;
  color: #ddd;
  line-height: 1.5;
}

.read-more {
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 16px;
}

.note-detail {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 28px;
}

.note-detail h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 900;
}

.note-detail time {
  display: block;
  margin-bottom: 22px;
}

.post-image-lead,
.post-video-lead {
  margin: 0 0 34px;
}

.post-body {
  display: grid;
  gap: 22px;
  padding-bottom: 58px;
}

.post-body p {
  margin: 0;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 400;
}

.post-image,
.post-video {
  margin: 10px 0 4px;
}

.post-image img {
  width: 100%;
  display: block;
}

.post-image {
  position: relative;
  overflow: hidden;
}

.post-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.18) 24%, rgba(0,0,0,.72) 62%, #000 100%);
  pointer-events: none;
}

.post-image figcaption,
.post-media-caption {
  margin: 12px 0 0;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.5;
}

.comments-panel {
  display: grid;
  gap: 20px;
  padding: 34px 0 44px;
  border-top: 1px solid #333;
}

.comments-panel-head {
  display: grid;
  gap: 8px;
}

.comments-panel h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
}

.comments-panel-head p,
.comments-auth-card p {
  margin: 0;
  color: #ddd;
  line-height: 1.55;
}

.comments-auth-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 20px;
  background: #101010;
  border: 1px solid #262626;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  animation: commentsFadeUp .45s ease both;
}

.comments-auth-actions,
.comment-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.comments-auth-card a,
.comments-auth-card button,
.comment-form button,
.primary-link {
  min-height: 48px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: #fff;
  color: #000;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}

.comments-user {
  display: grid;
  gap: 4px;
}

.comments-user strong {
  font-size: 16px;
}

.comments-user span {
  color: #a7a7a7;
  font-size: 13px;
}

.comments-auth-side {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.comments-admin-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #3d3d3d;
  color: #d6d6d6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.comment-signout {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid #4b4b4b !important;
}

.comment-form {
  display: grid;
  gap: 14px;
  animation: commentsFadeUp .42s ease both;
}

.comment-form[hidden] {
  display: none !important;
}

.comment-form label {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.comment-form textarea {
  width: 100%;
  min-height: 170px;
  border: 1px solid #323232;
  background: #0d0d0d;
  color: #fff;
  padding: 16px 18px;
  resize: vertical;
  font: inherit;
  line-height: 1.6;
  transition: border-color .24s ease, background-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.comment-form textarea::placeholder {
  color: #838383;
}

.comment-form textarea:hover,
.comment-form textarea:focus-visible {
  border-color: #595959;
  background: #111;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .05);
}

.comment-form textarea:focus-visible,
.comment-form button:focus-visible,
.comments-auth-card a:focus-visible,
.comments-auth-card button:focus-visible,
.delete-confirm-actions button:focus-visible,
.delete-confirm-close:focus-visible,
.auth-form input:focus-visible,
.auth-form button:focus-visible,
.auth-secondary-actions a:focus-visible,
.auth-secondary-actions button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.comment-form-status,
.comments-error,
.comments-empty-state,
.auth-status {
  margin: 0;
  color: #cfcfcf;
  line-height: 1.55;
}

.comments-list {
  display: grid;
  gap: 16px;
}

.comments-list > .comment-card + .comment-card {
  margin-top: 2px;
}

.comment-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #0f0f0f;
  border: 1px solid #222;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
  transition: transform .24s ease, border-color .24s ease, background-color .24s ease, box-shadow .24s ease;
  animation: commentsFadeUp .5s ease both;
}

.comment-card.is-reply {
  background: #0b0b0b;
  border-color: #1b1b1b;
}

.comment-card:hover {
  transform: translateY(-2px);
  border-color: #303030;
  background: #121212;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .18);
}

.comment-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.comment-card-head strong {
  font-size: 16px;
}

.comment-card-head time {
  margin: 0;
  color: #9a9a9a;
  font-size: 13px;
}

.comment-card p {
  margin: 0;
  color: #e2e2e2;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
}

.comment-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.comment-action {
  min-height: 36px;
  border: 0;
  background: transparent;
  color: #d6d6d6;
  padding: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
}

.comment-delete {
  color: #f0bcbc;
}

.comment-action:hover {
  color: #fff;
  transform: translateX(2px);
}

.reply-form {
  margin-top: 8px;
  padding-top: 8px;
  transform-origin: top;
}

.reply-form.is-open {
  animation: commentsReplyReveal .34s cubic-bezier(.2, .8, .2, 1) both;
}

.reply-form textarea {
  min-height: 130px;
}

.comment-replies {
  display: grid;
  gap: 14px;
  margin-top: 8px;
  padding-left: 18px;
  border-left: 1px solid #222;
}

.comments-error:not([hidden]),
.comments-empty-state:not([hidden]),
.auth-status:not(:empty),
.comment-form-status:not(:empty) {
  animation: commentsFadeUp .34s ease both;
}

.comments-auth-card a:hover,
.comments-auth-card button:hover,
.comment-form button:hover,
.delete-confirm-actions button:hover,
.delete-confirm-close:hover,
.primary-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 255, 255, .08);
}

@keyframes commentsFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes commentsReplyReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scaleY(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .comments-auth-card,
  .comment-form,
  .comment-card,
  .delete-confirm-dialog,
  .reply-form.is-open,
  .comments-error:not([hidden]),
  .comments-empty-state:not([hidden]),
  .auth-status:not(:empty),
  .comment-form-status:not(:empty) {
    animation: none !important;
  }

  .comments-auth-card a,
  .comments-auth-card button,
  .comment-form button,
  .delete-confirm-actions button,
  .delete-confirm-close,
  .primary-link,
  .comment-form textarea,
  .comment-card,
  .comment-action {
    transition: none !important;
  }

  .comment-card:hover,
  .comments-auth-card a:hover,
  .comments-auth-card button:hover,
  .comment-form button:hover,
  .delete-confirm-actions button:hover,
  .delete-confirm-close:hover,
  .primary-link:hover,
  .comment-action:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-top: 1px solid #333;
  padding-top: 34px;
}

.post-nav a {
  display: grid;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
}

.post-nav span {
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
}

.media-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 150px 28px 100px;
}

.media-detail .eyebrow {
  margin: 0 0 18px;
  color: #aaa;
  font-size: 14px;
  font-weight: 800;
}

.media-detail h1 {
  margin: 0 0 20px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1.02;
  font-weight: 900;
}

.media-detail p {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.58;
}

.media-detail .role {
  font-weight: 800;
}

.media-detail img {
  width: 100%;
  margin-top: 44px;
}

.pending-link {
  margin: 34px 0;
  padding: 24px;
  background: #151515;
  border: 1px solid #333;
}

.pending-link p {
  margin: 0 0 8px;
  color: #ddd;
}

.back-link {
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid currentColor;
}

.auth-placeholder {
  max-width: 680px;
  margin: 0 auto;
  padding: 150px 28px 100px;
}

.auth-placeholder h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  font-weight: 900;
}

.auth-placeholder p:not(.eyebrow) {
  color: #ddd;
  line-height: 1.55;
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.auth-form input {
  min-height: 52px;
  border: 1px solid #bbb;
  background: #f7f7f7;
  padding: 12px 16px;
}

.auth-form button {
  min-height: 52px;
  border: 0;
  width: fit-content;
  background: #fff;
  color: #000;
  padding: 0 24px;
  font-weight: 900;
  cursor: pointer;
}

.auth-status {
  min-height: 24px;
  margin-top: 18px;
}

.auth-secondary-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.auth-secondary-actions a {
  color: #ddd;
  text-decoration: underline;
}

.auth-signout {
  min-height: 48px;
  border: 1px solid #4b4b4b;
  background: transparent;
  color: #fff;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
}

.not-found {
  max-width: 760px;
  margin: 0 auto;
  padding: 160px 28px;
  line-height: 1.55;
}

.not-found a {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .site-header {
    height: auto;
    min-height: 74px;
    grid-template-columns: auto 1fr auto;
    padding: 18px 22px;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    z-index: 12;
  }

  .brand {
    justify-self: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: max-content;
    margin-left: 0;
  }

  .mobile-menu-shell {
    position: fixed;
    inset: 0;
    display: block;
    pointer-events: none;
    z-index: 11;
  }

  .mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, .26);
    opacity: 0;
    transition: opacity .2s ease;
  }

  .mobile-menu-drawer {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(82vw, 300px);
    padding: 24px 22px 28px;
    background: rgba(244, 244, 244, .96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 18px 0 40px rgba(0, 0, 0, .18);
    transform: translateX(-100%);
    transition: transform .24s ease;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-menu-close {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }

  .mobile-menu-links {
    display: grid;
    gap: 16px;
  }

  .mobile-menu-links a {
    padding: 14px 0;
    border-top: 1px solid rgba(0, 0, 0, .12);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
  }

  .mobile-menu-links a:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, .12);
  }

  body.mobile-menu-open .mobile-menu-shell {
    pointer-events: auto;
  }

  body.mobile-menu-open .mobile-menu-backdrop {
    opacity: 1;
  }

  body.mobile-menu-open .mobile-menu-drawer {
    transform: translateX(0);
  }

  body.mobile-menu-open .mobile-menu-toggle {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-18px);
  }

  body.mobile-menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(6px) scaleX(.35);
  }

  body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.2);
  }

  body.mobile-menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-6px) scaleX(.35);
  }

  .header-icons {
    position: absolute;
    right: 22px;
    top: 50%;
    gap: 0;
    justify-self: end;
    margin-left: auto;
    transform: translateY(-50%);
  }

  .hero {
    min-height: auto;
    display: grid;
    gap: 26px;
    padding: 116px 22px 34px;
    justify-items: center;
  }

  .hero-copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: auto;
    max-width: none;
    order: 1;
    text-align: center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 12.8vw, 62px);
    line-height: .98;
  }

  .hero h1 span {
    display: block;
  }

  .hero-actions {
    max-width: none;
    margin-top: 24px;
    justify-content: center;
  }

  .hero-portrait {
    width: 100%;
    height: 100%;
  }

  .hero-portrait-frame {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 360px);
    height: 250px;
    aspect-ratio: auto;
    margin: 0 auto;
    order: 2;
  }

  .reach {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    justify-self: center;
    order: 3;
    text-align: center;
  }

  .reach p {
    font-size: 16px;
  }

  .intro,
  .section-copy,
  .projects {
    padding-left: 22px;
    padding-right: 22px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 60px;
    padding-bottom: 66px;
  }

  .intro-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .intro-stats span {
    min-height: auto;
    padding: 0;
    border-bottom: 0;
    font-size: 18px;
    line-height: 1.2;
  }

  .intro-stats span + span::before {
    content: "\2022";
    display: inline-block;
    margin-right: 10px;
  }

  .showreel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 66px 22px 76px;
  }

  .showreel .section-copy {
    padding-bottom: 0;
    text-align: center;
  }

  .showreel .video-launch,
  .showreel .video-slot {
    justify-self: stretch;
    max-width: none;
  }

  .projects {
    padding-top: 72px;
    padding-bottom: 74px;
  }

  .projects .section-copy {
    text-align: center;
  }

  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .project-item {
    gap: 10px;
  }

  .video-launch-play {
    left: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .video-launch-play-icon {
    margin-left: 4px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .video-modal {
    padding: 18px;
  }

  .video-modal-close {
    top: -46px;
  }

  .assets-shop,
  .class-hero,
  .class-content,
  .footer,
  .notes-index {
    grid-template-columns: 1fr;
  }

  .assets-shop {
    grid-template-columns: 1fr;
    padding: 52px 22px 70px;
    gap: 28px;
  }

  .assets-shop .section-copy {
    position: static;
  }

  .asset-card span {
    left: 18px;
    bottom: 18px;
    font-size: 16px;
  }

  .assets-page-hero {
    min-height: 360px;
    padding: 88px 22px 52px;
  }

  .assets-page-hero h1 {
    font-size: clamp(38px, 9vw, 64px);
    white-space: normal;
  }

  .assets-page {
    padding: 18px 22px 78px;
  }

  .asset-detail-preview {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .asset-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .asset-product-copy {
    padding: 16px 14px 18px;
  }

  .asset-product-copy h3 {
    font-size: 18px;
  }

  .asset-product-copy span {
    font-size: 12px;
  }

  .asset-detail-preview {
    margin-top: 58px;
    padding: 38px 0;
  }

  .asset-detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .class-shell {
    padding: 132px 22px 74px;
  }

  .class-page-title {
    margin-bottom: 34px;
  }

  .class-page-title h1 {
    font-size: clamp(38px, 11vw, 56px);
    line-height: .98;
  }

  .class-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .class-poster {
    border-radius: 22px;
  }

  .class-card {
    border-radius: 26px;
    padding: 34px 22px 38px;
  }

  .class-card h2 {
    font-size: 26px;
    line-height: 1.02;
  }

  .footer {
    padding: 64px 22px 44px;
    gap: 44px;
    justify-items: center;
    text-align: center;
  }

  .newsletter-form,
  .split {
    grid-template-columns: 1fr;
    display: grid;
  }

  .newsletter,
  .follow {
    width: 100%;
  }

  .newsletter {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .newsletter-form {
    width: min(100%, 360px);
    justify-self: center;
  }

  .footer .follow-icons {
    justify-content: center;
  }

  .captions {
    display: none;
  }

  .notes-hero {
    min-height: 210px;
    padding: 32px 22px 34px;
  }

  .notes-hero h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .notes-shell {
    padding: 34px 22px 76px;
  }

  .notes-search {
    margin-bottom: 44px;
  }

  .notes-index {
    gap: 0;
    grid-auto-rows: auto;
  }

  .note-row {
    padding: 0 0 34px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .note-row + .note-row {
    padding-top: 34px;
  }

  .comments-auth-card,
  .comment-card-head,
  .comment-form-actions,
  .auth-secondary-actions,
  .comments-auth-side {
    align-items: flex-start;
    flex-direction: column;
  }

  .comments-auth-card a,
  .comments-auth-card button,
  .comment-form button,
  .auth-signout {
    width: 100%;
  }

  .cart-page {
    padding: 112px 22px 72px;
  }

  .cart-hero {
    padding: 30px 22px 34px;
  }

  .cart-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .cart-subline {
    font-size: 13px !important;
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
