:root {
  --white: #ffffff;
  --black: #000000;
  --ink: #12100f;
  --muted: #77706a;
  --line: #e9e0d2;
  --gold: #d8bd72;
  --gold-deep: #cfad63;
  --wine: #6f1d2f;
  --paper: #fbfaf6;
  --radius: 8px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --title-font: "Fraunces", Georgia, serif;
  --body-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body-font);
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open,
body.is-loading {
  overflow: hidden;
}

a,
button {
  font: inherit;
}

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

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--gold-deep);
  color: var(--white);
  animation: loaderExit 1.1s var(--ease) 2.55s forwards;
}

.loader::after {
  position: absolute;
  top: -16vw;
  right: -12vw;
  width: 34vw;
  height: 34vw;
  content: "";
  background: var(--white);
  border-bottom-left-radius: 100%;
  animation: cornerSweep 1.3s var(--ease) 0.2s both;
}

.loader-brand {
  position: absolute;
  top: 34px;
  left: 50%;
  z-index: 2;
  font-size: 0.9rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.marquee {
  position: absolute;
  left: -12vw;
  display: flex;
  width: 140vw;
  gap: 22px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(1rem, 2.7vw, 2.35rem);
  font-weight: 700;
  white-space: nowrap;
  transform: rotate(-18deg);
}

.marquee span {
  animation: marqueeMove 8s linear infinite;
}

.marquee-one {
  top: 45%;
}

.marquee-two {
  top: 58%;
  opacity: 0.72;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(92vw, 1260px);
  min-height: 68px;
  padding: 10px 12px 10px 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: grid;
  gap: 2px;
  min-width: 210px;
  color: var(--black);
  line-height: 1;
}

.wordmark span {
  color: var(--gold);
  font-family: var(--title-font);
  font-size: 1.35rem;
  font-weight: 700;
}

.wordmark small {
  color: rgba(18, 16, 15, 0.56);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 30px);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(18, 16, 15, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  transition: color 220ms var(--ease);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover {
  color: var(--black);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.top-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 42px;
  padding: 0 17px;
  color: var(--black);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.08);
}

.header-cta.gold {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: var(--black);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  grid-area: 1 / 1;
  background: var(--white);
  border-radius: 999px;
  transition: transform 260ms var(--ease), opacity 220ms var(--ease);
}

.menu-button span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-button span:nth-child(3) {
  transform: translateY(6px);
}

.menu-open .menu-button span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-button span:nth-child(3) {
  transform: rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 96px;
  right: 4vw;
  z-index: 39;
  display: grid;
  width: min(340px, calc(100vw - 32px));
  padding: 16px;
  background: rgba(0, 0, 0, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  backdrop-filter: blur(14px);
}

.drawer a {
  padding: 13px 8px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.stage,
.panel,
.finale {
  width: min(92vw, 1260px);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 118px 0 44px;
  overflow: hidden;
}

.hero-kicker,
.section-label {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-title {
  position: relative;
  z-index: 5;
  width: min(1040px, 96vw);
  margin: 1vh auto 0;
  color: var(--black);
  font-family: var(--title-font);
  font-size: clamp(2.75rem, 6.8vw, 6.85rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
}

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.photo,
.seal-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.15);
}

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

.photo:hover img {
  transform: scale(1.05);
}

.photo-one {
  top: 42%;
  left: 42%;
  width: clamp(124px, 14vw, 198px);
  aspect-ratio: 0.78;
  transform: translateX(-50%);
}

.photo-two {
  top: 43%;
  left: 56%;
  width: clamp(124px, 13.5vw, 190px);
  aspect-ratio: 0.78;
}

.photo-three {
  top: 58%;
  left: 49%;
  width: clamp(142px, 16vw, 230px);
  aspect-ratio: 0.78;
  transform: translateX(-50%);
}

.seal-card {
  right: 5%;
  bottom: 14%;
  display: grid;
  gap: 8px;
  width: 154px;
  padding: 14px;
  background: var(--gold-deep);
  color: var(--white);
  text-align: center;
}

.seal-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.seal-card strong {
  font-size: 0.72rem;
}

.hero-subtitle {
  position: absolute;
  left: 0;
  bottom: 23%;
  z-index: 4;
  width: min(270px, 72vw);
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero-footer {
  position: absolute;
  left: 0;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(300px, 68vw);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
}

.progress-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.floating-social {
  position: absolute;
  right: 0;
  bottom: 32px;
  z-index: 5;
  display: flex;
  gap: 6px;
  padding: 9px;
  background: var(--gold-deep);
  border-radius: var(--radius);
}

.floating-social span {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 34px;
  padding: 0 9px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-size: 0.64rem;
  font-weight: 900;
}

.panel {
  min-height: 100vh;
  padding: 120px 0;
}

.concept,
.ecosystem {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 64px;
}

.ecosystem .panel-copy {
  grid-column: 1 / -1;
  max-width: 1080px;
}

.ecosystem .panel-copy h2 {
  max-width: 1020px;
}

.panel-copy h2,
.panel-heading h2,
.future-card h2,
.closing {
  margin: 12px 0 18px;
  color: var(--black);
  font-family: var(--title-font);
  font-size: clamp(2rem, 4.3vw, 4.45rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

.panel-copy p,
.future-card p {
  max-width: 500px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  color: var(--white);
  background: var(--gold-deep);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.stacked-gallery {
  position: relative;
  min-height: 620px;
}

.stacked-gallery img {
  position: absolute;
  width: clamp(190px, 24vw, 330px);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.gallery-a {
  top: 8%;
  left: 7%;
}

.gallery-b {
  right: 0;
  bottom: 4%;
}

.micro-card {
  position: absolute;
  left: 36%;
  top: 47%;
  width: 220px;
  padding: 18px;
  color: var(--white);
  background: var(--wine);
  border-radius: var(--radius);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.1;
}

.school-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 98px max(4vw, calc((100vw - 1260px) / 2));
  background: var(--white);
  color: var(--black);
}

.school-nav {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 28px;
  align-items: center;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.78rem;
  font-weight: 800;
}

.school-nav strong {
  color: var(--gold);
  font-size: 0.9rem;
}

.school-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 520px;
  margin-top: 12vh;
}

.school-hero-copy h2,
.school-track-heading h2,
.school-dashboard h2 {
  margin: 12px 0 18px;
  font-family: var(--title-font);
  font-size: clamp(2.1rem, 4.5vw, 4.7rem);
  font-weight: 500;
  line-height: 1.02;
}

.school-hero-copy p,
.school-dashboard p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.72;
}

.school-scene {
  position: absolute;
  right: max(4vw, calc((100vw - 1260px) / 2));
  bottom: 0;
  z-index: 2;
  width: min(56vw, 760px);
  height: 68vh;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.16);
}

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

.school-scene::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.58), transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 34%);
}

.school-step-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 8px;
  width: 170px;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.school-step-card span {
  color: var(--gold);
  font-weight: 900;
}

.school-step-card strong {
  font-family: var(--title-font);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.05;
}

.card-a {
  left: 8%;
  bottom: 28%;
}

.card-b {
  right: 7%;
  bottom: 12%;
}

.school-track {
  background: var(--black);
  color: var(--white);
}

.school-track::before {
  position: absolute;
  inset: auto -8% -18% auto;
  width: 54vw;
  height: 54vw;
  content: "";
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 50%;
}

.school-track-heading {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin-bottom: 52px;
}

.school-track-heading h2,
.school-dashboard h2 {
  color: inherit;
}

.school-track-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: start;
}

.school-category {
  display: grid;
  gap: 10px;
  padding-top: 10px;
}

.school-category button {
  position: relative;
  overflow: hidden;
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.54);
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 360ms var(--ease), color 360ms var(--ease), transform 360ms var(--ease), box-shadow 360ms var(--ease);
}

.school-category button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  opacity: 0;
  transform: translateX(-115%);
  transition: opacity 280ms var(--ease);
  pointer-events: none;
}

.school-category button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.school-category button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.school-category .active {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 12px 32px rgba(216, 189, 114, 0.26);
  transform: translateX(6px);
}

.school-category .active::after {
  opacity: 1;
  animation: courseTabShine 1150ms var(--ease) both;
}

.school-course-rail {
  display: flex;
  gap: 18px;
  overflow: visible;
  transition: opacity 320ms var(--ease), filter 320ms var(--ease), transform 320ms var(--ease);
}

.school-course-rail.is-switching {
  opacity: 0;
  filter: blur(8px);
  transform: translateX(-18px) translateY(10px);
}

.school-course-card {
  flex: 0 0 min(24vw, 245px);
  overflow: hidden;
  min-height: 390px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.32);
  animation: courseCardIn 680ms var(--ease) both;
  animation-delay: calc(var(--card-index, 0) * 80ms);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.school-course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.36);
}

.school-course-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  filter: saturate(0.82);
}

.school-course-card strong {
  display: block;
  padding: 16px;
  font-family: var(--title-font);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.1;
}

@keyframes courseTabShine {
  0% {
    transform: translateX(-115%);
  }

  100% {
    transform: translateX(115%);
  }
}

@keyframes courseCardIn {
  0% {
    opacity: 0;
    transform: translateX(26px) translateY(16px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

.school-dashboard {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  gap: 44px;
  align-items: center;
  margin-top: 92px;
  padding: 42px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
}

.school-dashboard img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.flow {
  color: var(--white);
  background: var(--black);
  width: 100%;
  padding-right: max(4vw, calc((100vw - 1260px) / 2));
  padding-left: max(4vw, calc((100vw - 1260px) / 2));
}

.card-showcase {
  position: relative;
  min-height: 980px;
  padding: 82px max(4vw, calc((100vw - 1260px) / 2)) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.card-showcase::before,
.card-showcase::after {
  position: absolute;
  top: 0;
  z-index: 4;
  width: 15vw;
  height: 100%;
  content: "";
  pointer-events: none;
}

.card-showcase::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), rgba(0, 0, 0, 0));
}

.card-showcase::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), rgba(0, 0, 0, 0));
}

.showcase-heading {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  min-height: 240px;
  padding-bottom: 42px;
}

.showcase-heading h2 {
  max-width: 590px;
  margin: 8px 0 0;
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(1.85rem, 3.2vw, 3.35rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.showcase-heading .section-label {
  color: var(--gold);
}

.showcase-mark {
  display: flex;
  gap: 6px;
  padding-top: 8px;
}

.showcase-mark span {
  width: 16px;
  height: 42px;
  background: var(--white);
  border-radius: 999px 999px 2px 2px;
}

.showcase-mark span:last-child {
  transform: rotate(180deg);
}

.arc-carousel {
  position: relative;
  z-index: 2;
  width: calc(100% + max(8vw, calc(100vw - 1260px)));
  height: 570px;
  margin-right: min(-4vw, calc((1260px - 100vw) / 2));
  margin-left: min(-4vw, calc((1260px - 100vw) / 2));
  perspective: 1200px;
}

.arc-carousel::before {
  position: absolute;
  right: -10vw;
  bottom: -34vh;
  left: -10vw;
  height: 52vh;
  content: "";
  background: var(--black);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 50% 50% 0 0;
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.92);
}

.arc-track {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: min(1540px, 122vw);
  height: clamp(360px, 38vw, 510px);
  margin-left: calc(min(1540px, 122vw) / -2);
  transform-style: preserve-3d;
  --card-w: clamp(210px, 20vw, 310px);
  --card-h: clamp(318px, 30vw, 445px);
}

.arc-card {
  position: absolute;
  bottom: var(--lift);
  left: calc(50% - (var(--card-w) / 2));
  z-index: var(--z);
  width: var(--card-w);
  height: var(--card-h);
  overflow: hidden;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translate3d(calc(var(--x) - 120px), 18px, 0) rotate(calc(var(--tilt) - 5deg));
  transform-origin: 50% 100%;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 780ms cubic-bezier(0.16, 1, 0.3, 1), border-color 520ms var(--ease),
    filter 520ms var(--ease), box-shadow 780ms cubic-bezier(0.16, 1, 0.3, 1), opacity 450ms var(--ease);
  cursor: zoom-in;
}

.arc-carousel.is-visible .arc-card {
  animation: cardFanEnter 1s var(--ease) forwards;
}

.arc-card:nth-child(1) {
  animation-delay: 0.04s;
}

.arc-card:nth-child(2) {
  animation-delay: 0.13s;
}

.arc-card:nth-child(3) {
  animation-delay: 0.22s;
}

.arc-card:nth-child(4) {
  animation-delay: 0.31s;
}

.arc-card:nth-child(5) {
  animation-delay: 0.4s;
}

.arc-card:nth-child(6) {
  animation-delay: 0.49s;
}

.arc-card:nth-child(7) {
  animation-delay: 0.58s;
}

.arc-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.78));
}

.arc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.arc-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
}

.arc-card.featured {
  border-color: rgba(197, 160, 89, 0.65);
}

.arc-card:hover {
  border-color: var(--gold);
  filter: brightness(1.06);
  box-shadow: 0 36px 86px rgba(0, 0, 0, 0.58);
  transform: translateX(var(--x)) translateY(-22px) rotate(var(--tilt)) scale(1.022) !important;
}

.arc-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  padding: clamp(18px, 4vw, 46px);
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
  backdrop-filter: blur(16px);
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.lightbox-frame {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-width: 0;
  margin: 0;
}

.lightbox-frame img {
  max-width: min(78vw, 1120px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.72);
}

.lightbox-frame figcaption {
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.1;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(216, 189, 114, 0.32);
  transform: scale(1.06);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  width: clamp(44px, 5vw, 62px);
  height: clamp(44px, 5vw, 62px);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1;
}

.skincare-section {
  position: relative;
  min-height: 100vh;
  padding: 104px max(4vw, calc((100vw - 1260px) / 2));
  overflow: hidden;
  background: #ede3cf;
  color: var(--black);
}

.skin-browser-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: 54px;
}

.skin-bg-word {
  position: absolute;
  inset: auto auto 6% -4%;
  color: rgba(0, 0, 0, 0.09);
  font-family: var(--title-font);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 700;
  line-height: 0.75;
  pointer-events: none;
}

.skin-bg-word-right {
  right: -3%;
  left: auto;
}

.skin-shadow {
  position: absolute;
  width: 32vw;
  height: 24vw;
  background:
    linear-gradient(112deg, transparent 0 22%, rgba(0, 0, 0, 0.2) 23% 28%, transparent 29% 42%, rgba(0, 0, 0, 0.12) 43% 48%, transparent 49%),
    linear-gradient(38deg, transparent 0 38%, rgba(0, 0, 0, 0.16) 39% 44%, transparent 45%);
  filter: blur(16px);
  opacity: 0.52;
  pointer-events: none;
  animation: skinShadowDrift 9s ease-in-out infinite alternate;
}

.skin-shadow-one {
  top: 2%;
  right: 8%;
}

.skin-shadow-two {
  bottom: 8%;
  left: 2%;
  transform: rotate(180deg);
  animation-delay: -3s;
}

.skin-copy {
  position: relative;
  z-index: 3;
  max-width: 520px;
}

.skin-copy h2 {
  margin: 12px 0 18px;
  font-family: var(--title-font);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 1.04;
}

.skin-copy p {
  margin: 0;
  color: rgba(18, 16, 15, 0.68);
  line-height: 1.75;
}

.skin-browser {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 520px;
  background: rgba(120, 79, 68, 0.42);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.skin-browser-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.skin-browser-bar nav {
  display: flex;
  gap: 8px;
}

.skin-browser-bar i {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 50%;
}

.skin-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.skin-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px) saturate(0.84);
  transform: scale(1.08);
  animation: skinHeroFocus 10s var(--ease) infinite;
}

.skin-hero-text {
  position: absolute;
  top: 32%;
  right: 7%;
  z-index: 4;
  max-width: 320px;
  color: var(--black);
  animation: skinTextSwap 10s var(--ease) infinite;
}

.skin-hero-text span,
.skin-panel span,
.skin-proof-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
}

.skin-hero-text strong {
  display: block;
  font-family: var(--title-font);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.skin-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  min-height: 52%;
  padding: clamp(26px, 4vw, 56px);
  padding-right: min(48vw, 390px);
  color: var(--white);
  background: rgba(67, 42, 36, 0.92);
  transform-origin: 50% 100%;
  animation: skinPanelRise 10s var(--ease) infinite;
}

.skin-panel strong,
.skin-proof-panel strong {
  display: block;
  max-width: 480px;
  font-family: var(--title-font);
  font-size: clamp(1.55rem, 3vw, 2.85rem);
  font-weight: 500;
  line-height: 1.03;
}

.skin-panel strong {
  max-width: 300px;
}

.skin-tile {
  position: absolute;
  z-index: 7;
  width: min(30vw, 250px);
  height: min(38vw, 330px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.skin-tile-one {
  right: 8%;
  bottom: 5%;
  animation: skinTileOne 10s var(--ease) infinite;
}

.skin-tile-two {
  right: -4%;
  bottom: 7%;
  width: min(32vw, 280px);
  animation: skinTileTwo 10s var(--ease) infinite;
}

.skin-proof-section {
  background: #eee7df;
}

.skin-proof-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(520px, 1.18fr) minmax(280px, 0.82fr);
  align-items: center;
  gap: 60px;
}

.skin-proof-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: rgba(75, 49, 42, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.skin-proof-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(75, 49, 42, 0.9), rgba(75, 49, 42, 0.36), rgba(75, 49, 42, 0.92)),
    linear-gradient(0deg, rgba(75, 49, 42, 0.9), transparent 44%);
}

.skin-proof-media img {
  position: absolute;
  z-index: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
}

.skin-proof-media img:nth-child(1) {
  top: 24%;
  right: -12%;
  width: 58%;
  height: 50%;
  transform: translateX(18%) scale(1.035);
}

.skin-proof-media img:nth-child(2) {
  top: 30%;
  left: 43%;
  width: 26%;
  height: 46%;
  opacity: 0;
  transform: translateX(34px);
}

.skin-proof-media img:nth-child(3) {
  top: -7%;
  right: 8%;
  width: 34%;
  height: 36%;
  opacity: 0;
  transform: translateY(-24px);
}

.skin-proof-panel {
  position: absolute;
  top: 38%;
  left: 8%;
  z-index: 4;
  max-width: 360px;
  color: var(--white);
  opacity: 0;
  transform: translateY(18px);
}

.skin-proof-card.is-visible .skin-proof-media img:nth-child(1) {
  animation: proofWideDrift 1.15s var(--ease) forwards;
}

.skin-proof-card.is-visible .skin-proof-media img:nth-child(2) {
  animation: proofCenterDrift 1.15s var(--ease) 0.08s forwards;
}

.skin-proof-card.is-visible .skin-proof-media img:nth-child(3) {
  animation: proofTopDrift 1.15s var(--ease) 0.16s forwards;
}

.skin-proof-card.is-visible .skin-proof-panel {
  animation: proofPanelPulse 1.15s var(--ease) 0.22s forwards;
}

@keyframes skinShadowDrift {
  from {
    transform: translate3d(-12px, -8px, 0) rotate(-4deg);
  }

  to {
    transform: translate3d(18px, 14px, 0) rotate(5deg);
  }
}

@keyframes skinHeroFocus {
  0%,
  12% {
    filter: blur(7px) saturate(0.84);
    transform: scale(1.08) translateY(0);
  }

  22%,
  38% {
    filter: blur(0) saturate(1);
    transform: scale(1) translateY(0);
  }

  48%,
  76% {
    filter: blur(2px) saturate(0.9) brightness(0.78);
    transform: scale(1.04) translateY(-4%);
  }

  88%,
  100% {
    filter: blur(6px) saturate(0.84);
    transform: scale(1.08) translateY(0);
  }
}

@keyframes skinTextSwap {
  0%,
  18% {
    opacity: 0;
    transform: translateX(42px);
  }

  24%,
  42% {
    opacity: 1;
    transform: translateX(0);
  }

  50%,
  100% {
    opacity: 0;
    transform: translateX(-28px);
  }
}

@keyframes skinPanelRise {
  0%,
  34% {
    transform: translateY(102%) skewY(0deg);
  }

  48%,
  78% {
    transform: translateY(0) skewY(-4deg);
  }

  90%,
  100% {
    transform: translateY(102%) skewY(0deg);
  }
}

@keyframes skinTileOne {
  0%,
  43% {
    opacity: 0;
    transform: translate(86px, 52px) scale(0.9);
  }

  54%,
  82% {
    opacity: 1;
    transform: translate(12px, 18px) scale(0.94);
  }

  94%,
  100% {
    opacity: 0;
    transform: translate(46px, 34px) scale(0.9);
  }
}

@keyframes skinTileTwo {
  0%,
  49% {
    opacity: 0;
    transform: translate(116px, 42px) scale(0.9);
  }

  60%,
  84% {
    opacity: 1;
    transform: translate(8px, 16px) scale(0.94);
  }

  96%,
  100% {
    opacity: 0;
    transform: translate(40px, 30px) scale(0.9);
  }
}

@keyframes proofWideDrift {
  0%,
  20% {
    transform: translateX(18%) scale(1.035);
  }

  100% {
    transform: translateX(-6%) scale(1);
  }
}

@keyframes proofCenterDrift {
  0%,
  20% {
    opacity: 0;
    transform: translateX(34px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes proofTopDrift {
  0%,
  20% {
    opacity: 0;
    transform: translateY(-24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes proofPanelPulse {
  0%,
  20% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.makeup-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 104px max(4vw, calc((100vw - 1260px) / 2));
  background: #d1b06a;
  color: var(--white);
}

.makeup-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.14) 0 16%, transparent 16% 50%, rgba(255, 255, 255, 0.16) 50% 66%, transparent 66%),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(0, 0, 0, 0.16) 23px 30px, transparent 31px 54px);
  background-size: 320px 100%, 170px 170px;
  animation: makeupPatternDrift 14s linear infinite;
}

.makeup-browser {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(1120px, 100%);
  min-height: 560px;
  margin: 0 auto;
  background: #060404;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.34);
}

.makeup-browser-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 7;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 900;
}

.makeup-browser-bar nav {
  display: flex;
  gap: 28px;
}

.makeup-browser-bar a {
  color: rgba(255, 255, 255, 0.62);
}

.makeup-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.makeup-main-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 68%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(18%) scale(1.08);
}

.makeup-browser.is-visible .makeup-main-image {
  animation: makeupImageReveal 1.5s var(--ease) 0.08s forwards;
}

.makeup-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #050404 0 34%, rgba(5, 4, 4, 0.74) 48%, transparent 70%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 44%);
}

.makeup-giant-title {
  position: absolute;
  top: 19%;
  left: 5%;
  z-index: 6;
  max-width: 620px;
  margin: 0;
  color: transparent;
  background: linear-gradient(
    105deg,
    var(--white) 0%,
    var(--white) 42%,
    #ffffff 48%,
    rgba(255, 255, 255, 0.72) 51%,
    var(--white) 56%,
    var(--white) 100%
  );
  background-size: 240% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--title-font);
  font-size: clamp(3.1rem, 8vw, 7.2rem);
  font-weight: 600;
  line-height: 0.84;
  opacity: 0;
  transform: translateX(-76px);
}

.makeup-browser.is-visible .makeup-giant-title {
  animation: makeupTextReveal 1.5s var(--ease) 0.08s forwards, makeupTitleGlow 4.8s ease-in-out 1.7s infinite;
}

.makeup-wipe {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #060404;
  transform-origin: 0 50%;
  opacity: 0;
  transform: scaleX(0);
  pointer-events: none;
}

.makeup-browser.is-visible .makeup-wipe {
  animation: makeupWipe 1.1s var(--ease) forwards;
}

.makeup-intro-copy {
  position: absolute;
  left: 6%;
  bottom: 11%;
  z-index: 6;
  max-width: 390px;
  opacity: 0;
  transform: translateX(-76px);
}

.makeup-browser.is-visible .makeup-intro-copy {
  animation: makeupTextReveal 1.5s var(--ease) 0.08s forwards;
}

.makeup-intro-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.makeup-intro-copy strong {
  display: block;
  font-family: var(--title-font);
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: 1.08;
}

.makeup-triptych-section {
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 58px;
  background: #171211;
}

.makeup-triptych {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #050404;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.32);
}

.makeup-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.makeup-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.92);
  transform: scale(1.08);
}

.makeup-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.66));
}

.makeup-panel span {
  position: absolute;
  bottom: 36px;
  left: 28px;
  z-index: 2;
  max-width: 170px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 0.98;
}

.panel-eye {
  left: 0;
  width: 34%;
  transform: translateX(-100%);
}

.panel-skin {
  left: 32%;
  width: 34%;
  transform: translateY(100%);
}

.panel-artist {
  right: 0;
  width: 38%;
  transform: translateX(100%);
}

.makeup-triptych.is-visible .panel-eye {
  animation: panelEyeSlide 1.15s var(--ease) forwards;
}

.makeup-triptych.is-visible .panel-skin {
  animation: panelSkinSlide 1.15s var(--ease) 0.12s forwards;
}

.makeup-triptych.is-visible .panel-artist {
  animation: panelArtistSlide 1.15s var(--ease) 0.24s forwards;
}

.makeup-method {
  position: relative;
  z-index: 2;
}

.makeup-method h2 {
  margin: 12px 0 28px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(2rem, 4vw, 4.05rem);
  font-weight: 500;
  line-height: 1.04;
}

.method-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.method-grid p {
  margin: 0;
  padding: 22px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  line-height: 1.6;
  animation: methodTextFloat 12s var(--ease) infinite;
}

.method-grid p:nth-child(2) {
  animation-delay: 0.18s;
}

.method-grid p:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes makeupPatternDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 320px 0, 170px 170px;
  }
}

@keyframes makeupImageReveal {
  0% {
    opacity: 0;
    transform: translateX(18%) scale(1.08);
  }

  100% {
    opacity: 0.92;
    transform: translateX(0) scale(1.04);
  }
}

@keyframes makeupTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-76px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes makeupTitleGlow {
  0%,
  58% {
    background-position: 140% 50%;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  72% {
    background-position: -40% 50%;
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.34);
  }

  100% {
    background-position: -40% 50%;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes makeupWipe {
  0% {
    transform: scaleX(0.62);
    opacity: 0.82;
  }

  100% {
    transform: scaleX(0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes panelEyeSlide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes panelSkinSlide {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes panelArtistSlide {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes methodTextFloat {
  0%,
  34% {
    opacity: 0.42;
    transform: translateY(14px);
  }

  48%,
  84% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0.42;
    transform: translateY(-10px);
  }
}

.flow .panel-heading h2,
.flow .panel-heading {
  color: var(--white);
}

.panel-heading {
  max-width: 930px;
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
}

.flow-card {
  min-height: 340px;
  padding: 28px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: transform 360ms var(--ease), background 360ms var(--ease);
}

.flow-card:hover {
  background: var(--wine);
  transform: translateY(-8px);
}

.flow-card span,
.value-card span,
.trust-map span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 900;
}

.flow-card h3 {
  margin: 0 0 14px;
  font-family: var(--title-font);
  font-size: clamp(1.35rem, 2vw, 1.82rem);
  font-weight: 500;
  line-height: 1.1;
}

.flow-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.signature-quote {
  max-width: 980px;
  margin: 64px 0 0 auto;
  color: var(--gold);
  font-family: var(--title-font);
  font-size: clamp(1.28rem, 2.45vw, 2.36rem);
  font-weight: 600;
  line-height: 1.22;
}

.registration-steps {
  padding: 112px max(4vw, calc((100vw - 1260px) / 2));
  background: var(--paper);
}

.registration-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.registration-heading h2 {
  margin: 12px 0 0;
  font-family: var(--title-font);
  font-size: clamp(2rem, 4.05vw, 4rem);
  font-weight: 500;
  line-height: 1.04;
}

.registration-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.registration-card {
  overflow: hidden;
  min-height: 590px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.06);
  transition: transform 420ms var(--ease), border-color 420ms var(--ease), box-shadow 420ms var(--ease);
}

.registration-card:hover {
  border-color: rgba(216, 189, 114, 0.62);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.registration-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.registration-card div {
  padding: 24px;
}

.registration-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.registration-card h3 {
  margin: 0 0 14px;
  font-family: var(--title-font);
  font-size: clamp(1.45rem, 2.2vw, 2.12rem);
  font-weight: 500;
  line-height: 1.06;
}

.registration-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.trust-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-map div {
  min-height: 155px;
  padding: 22px;
  background: var(--paper);
}

.trust-map strong {
  font-size: 1.35rem;
  font-weight: 500;
}

.partner-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.partner-strip article {
  padding: 28px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
}

.partner-strip article:last-child {
  background: var(--wine);
}

.partner-strip h3 {
  margin: 0 0 12px;
  font-family: var(--title-font);
  font-size: 1.38rem;
  font-weight: 500;
}

.partner-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.value {
  min-height: auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.value-card {
  min-height: 220px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 360ms var(--ease), background 360ms var(--ease), color 360ms var(--ease);
}

.value-card:hover {
  color: var(--white);
  background: var(--black);
  transform: translateY(-8px);
}

.value-card strong {
  display: block;
  font-family: var(--title-font);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.14;
}

.value-card.wide {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  align-items: center;
  min-height: 150px;
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.benefits-section {
  padding: 112px max(4vw, calc((100vw - 1260px) / 2));
  background: var(--black);
  color: var(--white);
}

.benefits-heading {
  max-width: 880px;
  margin-bottom: 46px;
}

.benefits-heading h2 {
  margin: 12px 0 0;
  font-family: var(--title-font);
  font-size: clamp(2rem, 4.2vw, 4.15rem);
  font-weight: 500;
  line-height: 1.03;
}

.benefits-heading p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 16px;
}

.benefit-card {
  overflow: hidden;
  min-height: 590px;
  background: #111111;
  border: 1px solid rgba(216, 189, 114, 0.2);
  border-radius: var(--radius);
  transition: transform 460ms var(--ease), border-color 460ms var(--ease), box-shadow 460ms var(--ease);
}

.benefit-card:hover {
  border-color: rgba(216, 189, 114, 0.58);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
  transform: translateY(-8px);
}

.benefit-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.benefit-card div {
  padding: 24px;
}

.benefit-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.benefit-card h3 {
  margin: 0 0 14px;
  font-family: var(--title-font);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.06;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
}

.choice-impact {
  padding: 0 max(4vw, calc((100vw - 1260px) / 2)) 112px;
  background: var(--white);
}

.choice-impact-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 38px;
}

.choice-impact-heading h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(1.85rem, 3.3vw, 3.25rem);
  font-weight: 500;
  line-height: 1.06;
}

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

.choice-card {
  min-height: 430px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 520ms var(--ease), border-color 520ms var(--ease), box-shadow 520ms var(--ease);
}

.choice-card:hover {
  border-color: rgba(197, 160, 89, 0.62);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.choice-card-positive {
  background: var(--paper);
}

.choice-card-negative {
  color: var(--white);
  background: var(--black);
  border-color: rgba(197, 160, 89, 0.3);
}

.choice-tag {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.choice-card h3 {
  max-width: 420px;
  margin: 0 0 28px;
  font-family: var(--title-font);
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
  font-weight: 500;
  line-height: 1.04;
}

.choice-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.choice-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  line-height: 1.55;
}

.choice-card-negative li {
  color: rgba(255, 255, 255, 0.74);
}

.choice-card li span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.choice-card-positive li span {
  background: #1f9d55;
}

.choice-card-negative li span {
  background: #d73a31;
}

.future {
  min-height: 82vh;
  display: grid;
  place-items: center;
}

.future-card {
  width: min(880px, 100%);
  padding: clamp(30px, 6vw, 72px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.future-card p {
  margin-right: auto;
  margin-left: auto;
}

.sponsors {
  padding: 108px max(4vw, calc((100vw - 1260px) / 2));
  background: var(--white);
}

.sponsors-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.sponsors-heading h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(1.85rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 1.05;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.sponsor-card {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 360ms var(--ease), border-color 360ms var(--ease), box-shadow 360ms var(--ease);
}

.sponsor-card:hover {
  border-color: rgba(197, 160, 89, 0.65);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.sponsor-card img {
  display: block;
  width: min(150px, 78%);
  max-height: 74px;
  object-fit: contain;
  transition: transform 360ms var(--ease);
}

.sponsor-card:hover img {
  transform: scale(1.04);
}

.sponsor-card-dark {
  background: var(--black);
  border-color: rgba(197, 160, 89, 0.26);
}

.sponsor-card-dark:hover {
  border-color: rgba(197, 160, 89, 0.75);
}

.finale {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 104px 0;
  text-align: center;
}

.final-logo {
  width: min(260px, 56vw);
  margin-bottom: 38px;
  border-radius: var(--radius);
}

.manifesto {
  max-width: 780px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.68;
}

.closing {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

.choice-card.reveal.is-visible:hover {
  border-color: rgba(197, 160, 89, 0.62);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.choice-card.reveal.is-visible {
  transition-delay: 0ms !important;
}

.photo-one.reveal,
.photo-three.reveal {
  transform: translate(-50%, 48px) scale(0.96);
}

.photo-one.reveal.is-visible,
.photo-three.reveal.is-visible {
  transform: translate(-50%, 0) scale(1);
}

.photo-two.reveal {
  transform: translate(28px, 44px) scale(0.96);
}

.photo-two.reveal.is-visible {
  transform: translate(0, 0) scale(1);
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes cornerSweep {
  from {
    transform: translate(40%, -40%) scale(0.5);
  }

  to {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes loaderExit {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
    visibility: hidden;
  }
}

@keyframes cardFanEnter {
  0% {
    opacity: 0;
    transform: translate3d(calc(var(--x) - 120px), 18px, 0) rotate(calc(var(--tilt) - 5deg));
  }

  72% {
    opacity: 1;
    transform: translate3d(calc(var(--x) + 14px), -5px, 0) rotate(calc(var(--tilt) + 0.9deg));
  }

  100% {
    opacity: 1;
    transform: translate3d(var(--x), 0, 0) rotate(var(--tilt));
  }
}

@keyframes mobileArcCardIn {
  0% {
    opacity: 0;
    transform: translateX(42px) translateY(18px) rotate(calc(var(--tilt) - 3deg));
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(var(--tilt));
  }
}

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

  body.is-loading {
    overflow: auto;
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 10px 10px 10px 16px;
  }

  .desktop-nav,
  .top-actions {
    display: none;
  }

  .menu-button {
    display: grid;
    justify-self: end;
    grid-column: 2;
  }

  .hero-title {
    margin-top: 6vh;
  }

  .hero-subtitle {
    bottom: 18%;
  }

  .skin-browser-section,
  .skin-proof-layout,
  .makeup-triptych-section,
  .school-dashboard {
    grid-template-columns: 1fr;
  }

  .school-hero {
    min-height: 980px;
  }

  .school-scene {
    right: max(4vw, calc((100vw - 1260px) / 2));
    left: max(4vw, calc((100vw - 1260px) / 2));
    width: auto;
    height: 46vh;
  }

  .school-track-layout {
    grid-template-columns: 1fr;
  }

  .school-category {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0;
  }

  .school-course-card {
    flex-basis: 230px;
  }

  .skin-browser-section {
    gap: 42px;
  }

  .skin-browser,
  .skin-proof-card {
    min-height: 500px;
  }

  .skin-proof-layout {
    gap: 40px;
  }

  .makeup-triptych-section {
    gap: 42px;
  }

  .makeup-browser,
  .makeup-triptych {
    min-height: 500px;
  }

  .concept,
  .ecosystem {
    grid-template-columns: 1fr;
  }

  .stacked-gallery {
    min-height: 560px;
  }

  .flow-track,
  .registration-grid,
  .value-grid,
  .trust-map,
  .partner-strip,
  .benefits-grid,
  .choice-impact-grid,
  .sponsors-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sponsors-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .sponsor-card {
    min-height: 120px;
    padding: 16px;
  }

  .sponsor-card img {
    width: min(116px, 88%);
    max-height: 54px;
  }

  .benefit-card {
    min-height: auto;
  }

  .benefit-card:first-child {
    grid-column: span 2;
  }

  .registration-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .registration-card {
    min-height: auto;
  }

  .registration-card:first-child {
    grid-column: span 2;
  }

  .value-card.wide {
    grid-column: span 2;
  }

  .card-showcase {
    min-height: auto;
    padding-bottom: 86px;
  }

  .arc-carousel {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
  }

  .arc-carousel::before {
    right: -18vw;
    bottom: -22%;
    left: -18vw;
    height: 56%;
  }

  .arc-track {
    position: relative;
    left: auto;
    bottom: auto;
    display: flex;
    gap: 16px;
    width: 100%;
    height: auto;
    margin-left: 0;
    overflow-x: auto;
    overflow-y: visible;
    padding: 58px max(4vw, 22px) 42px;
    scroll-padding-inline: max(4vw, 22px);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    transform-style: flat;
    --card-w: 205px;
    --card-h: 306px;
  }

  .arc-track::-webkit-scrollbar {
    display: none;
  }

  .arc-card {
    position: relative;
    left: auto;
    bottom: auto;
    flex: 0 0 var(--card-w);
    width: var(--card-w);
    height: var(--card-h);
    scroll-snap-align: center;
    transform: translateX(28px) translateY(18px) rotate(var(--tilt));
  }

  .arc-carousel.is-visible .arc-card {
    animation: mobileArcCardIn 820ms var(--ease) forwards;
  }

  .arc-card:hover {
    transform: translateY(-12px) rotate(var(--tilt)) scale(1.018) !important;
  }
}

@media (max-width: 680px) {
  .topbar {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 62px;
  }

  .wordmark {
    min-width: 0;
  }

  .wordmark span {
    font-size: 1.22rem;
  }

  .wordmark small {
    max-width: 156px;
    font-size: 0.58rem;
    line-height: 1.15;
  }

  .drawer {
    top: 86px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .top-actions .header-cta:first-child {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding-top: 94px;
  }

  .hero-title {
    margin-top: 4vh;
    font-size: clamp(2.45rem, 12vw, 3.55rem);
    text-align: left;
  }

  .photo-one {
    top: 42%;
    left: 32%;
    width: 118px;
  }

  .photo-two {
    top: 45%;
    left: 61%;
    width: 116px;
  }

  .photo-three {
    top: 57%;
    left: 48%;
    width: 132px;
  }

  .seal-card {
    right: 0;
    bottom: 92px;
    width: 116px;
    padding: 10px;
  }

  .hero-subtitle {
    bottom: 74px;
    width: min(245px, 68vw);
    font-size: 0.86rem;
  }

  .floating-social {
    display: none;
  }

  .panel {
    min-height: auto;
    padding: 82px 0;
  }

  .school-section {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .school-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .school-nav span {
    display: none;
  }

  .school-hero {
    min-height: 860px;
  }

  .school-hero-copy {
    margin-top: 58px;
  }

  .school-hero-copy h2,
  .school-track-heading h2,
  .school-dashboard h2 {
    font-size: clamp(1.95rem, 9.8vw, 3.15rem);
  }

  .school-scene {
    bottom: 96px;
    height: 360px;
    min-height: 360px;
  }

  .school-step-card {
    width: 138px;
    padding: 14px;
  }

  .school-course-rail {
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 2px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .school-course-rail::-webkit-scrollbar {
    display: none;
  }

  .school-course-card {
    flex-basis: min(72vw, 230px);
    min-height: 320px;
    scroll-snap-align: start;
  }

  .school-course-card img {
    height: 226px;
  }

  .school-dashboard {
    margin-top: 62px;
    padding: 24px;
    gap: 22px;
  }

  .school-dashboard img {
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: 340px;
    object-fit: cover;
    object-position: 58% 50%;
    border-radius: var(--radius);
  }

  .flow-card,
  .value-card,
  .partner-strip article,
  .choice-card {
    min-height: auto;
    padding: 22px;
  }

  .flow-card span,
  .value-card span,
  .trust-map span {
    margin-bottom: 22px;
  }

  .trust-map div {
    min-height: 118px;
    padding: 20px;
  }

  .skincare-section {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .skin-copy h2 {
    font-size: clamp(1.95rem, 9.8vw, 3.1rem);
  }

  .skin-browser,
  .skin-proof-card {
    min-height: 430px;
  }

  .skin-browser-bar {
    padding: 14px 16px;
  }

  .skin-hero-text {
    top: 20%;
    right: 18px;
    left: auto;
    max-width: 235px;
    padding: 14px;
    text-align: right;
    background: rgba(237, 227, 207, 0.74);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
  }

  .skin-panel {
    min-height: 50%;
    padding: 26px 18px;
  }

  .skin-panel strong,
  .skin-proof-panel strong {
    font-size: clamp(1.35rem, 7vw, 2.15rem);
  }

  .skin-panel strong {
    max-width: 210px;
  }

  .skin-tile {
    width: 116px;
    height: 154px;
    object-position: center;
  }

  .skin-tile-one {
    right: 88px;
    bottom: 14px;
    object-position: 50% 42%;
  }

  .skin-tile-two {
    right: 8px;
    bottom: 20px;
    width: 124px;
    object-position: 50% 38%;
  }

  .skin-proof-media img:nth-child(1) {
    top: 38%;
    right: -28%;
    width: 82%;
    height: 38%;
  }

  .skin-proof-media img:nth-child(2) {
    top: 42%;
    left: 44%;
    width: 34%;
    height: 34%;
  }

  .skin-proof-media img:nth-child(3) {
    top: 2%;
    right: 6%;
    width: 46%;
    height: 30%;
  }

  .skin-proof-panel {
    top: 22px;
    left: 20px;
    right: 20px;
  }

  .makeup-section {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .makeup-browser {
    min-height: 430px;
  }

  .makeup-browser-bar {
    padding: 14px 16px;
  }

  .makeup-browser-bar nav {
    display: none;
  }

  .makeup-main-image {
    right: -20%;
    width: 112%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 50%;
  }

  .makeup-stage::after {
    background:
      linear-gradient(90deg, rgba(5, 4, 4, 0.94), rgba(5, 4, 4, 0.44)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 42%);
  }

  .makeup-giant-title {
    top: 19%;
    left: 18px;
    right: 72px;
    font-size: clamp(2.45rem, 13vw, 4.05rem);
  }

  .makeup-intro-copy {
    left: 18px;
    right: 36px;
    bottom: 10%;
  }

  .makeup-triptych {
    min-height: 480px;
  }

  .makeup-panel {
    border-right: 0;
  }

  .panel-eye {
    width: 47%;
  }

  .panel-skin {
    left: 34%;
    width: 41%;
  }

  .panel-artist {
    width: 38%;
  }

  .makeup-panel span {
    bottom: 24px;
    left: 18px;
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .makeup-method h2 {
    font-size: clamp(1.95rem, 9.8vw, 3.1rem);
  }

  .panel-copy h2,
  .panel-heading h2,
  .future-card h2,
  .closing {
    font-size: clamp(1.95rem, 9.8vw, 3.2rem);
  }

  .stacked-gallery {
    min-height: 470px;
  }

  .stacked-gallery img {
    aspect-ratio: 0.78;
    width: min(58vw, 210px);
    object-fit: cover;
  }

  .gallery-a {
    left: 0;
  }

  .gallery-b {
    right: 0;
    bottom: 0;
  }

  .micro-card {
    left: 50%;
    top: 43%;
    width: min(54vw, 184px);
    padding: 15px;
    font-size: 1rem;
    transform: translateX(-50%);
  }

  .flow-track,
  .registration-grid,
  .value-grid,
  .trust-map,
  .partner-strip,
  .benefits-grid,
  .choice-impact-grid,
  .sponsors-grid {
    grid-template-columns: 1fr;
  }

  .benefits-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .registration-steps {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .registration-heading h2 {
    font-size: clamp(1.95rem, 9.8vw, 3.1rem);
  }

  .registration-card:first-child {
    grid-column: auto;
  }

  .registration-card img {
    height: 300px;
  }

  .benefits-heading h2 {
    font-size: clamp(1.95rem, 9.8vw, 3.1rem);
  }

  .benefit-card:first-child {
    grid-column: auto;
  }

  .benefit-card img {
    height: 300px;
  }

  .choice-impact {
    padding-bottom: 74px;
  }

  .sponsors {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .sponsors-heading {
    display: grid;
    gap: 14px;
  }

  .sponsor-card {
    min-height: 132px;
    padding: 22px;
  }

  .sponsor-card img {
    width: min(180px, 78%);
    max-height: 62px;
    object-fit: contain;
  }

  .final-logo {
    width: min(220px, 54vw);
  }

  .manifesto {
    font-size: 1.02rem;
  }

  .value-card.wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .card-showcase {
    min-height: 760px;
    padding-top: 74px;
  }

  .showcase-heading {
    grid-template-columns: 1fr;
    min-height: 245px;
    padding-bottom: 34px;
  }

  .showcase-mark {
    justify-self: end;
    margin-top: -72px;
  }

  .arc-carousel {
    height: auto;
  }

  .arc-track {
    width: 100%;
    height: auto;
    margin-left: 0;
    padding-top: 42px;
    padding-bottom: 36px;
    --card-w: 138px;
    --card-h: 210px;
  }

  .arc-card {
    width: var(--card-w);
    height: var(--card-h);
  }

  .gallery-lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    justify-items: center;
    padding: 76px 16px 26px;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-frame img {
    max-width: calc(100vw - 32px);
    max-height: 68vh;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
  }
}

@media (max-width: 430px) {
  .topbar {
    padding-left: 14px;
  }

  .wordmark small {
    max-width: 132px;
  }

  .hero {
    min-height: 740px;
  }

  .hero-title {
    margin-top: 3vh;
    font-size: clamp(2.24rem, 11.4vw, 3.1rem);
  }

  .photo-one {
    top: 41%;
    left: 30%;
    width: 108px;
  }

  .photo-two {
    top: 44%;
    left: 60%;
    width: 108px;
  }

  .photo-three {
    top: 56%;
    width: 122px;
  }

  .seal-card {
    bottom: 84px;
    width: 106px;
  }

  .hero-subtitle {
    bottom: 66px;
    width: 218px;
  }

  .school-hero {
    min-height: 790px;
  }

  .school-scene {
    bottom: 82px;
    height: 320px;
    min-height: 320px;
  }

  .school-step-card {
    width: 124px;
    padding: 12px;
  }

  .school-course-card {
    flex-basis: 76vw;
  }

  .skin-browser,
  .skin-proof-card,
  .makeup-browser,
  .makeup-triptych {
    min-height: 400px;
  }

  .skin-hero-text {
    max-width: 190px;
    padding: 12px;
  }

  .skin-panel {
    min-height: 48%;
  }

  .skin-panel strong {
    max-width: 190px;
  }

  .skin-tile {
    width: 104px;
    height: 138px;
  }

  .skin-tile-one {
    right: 70px;
    bottom: 12px;
  }

  .skin-tile-two {
    width: 112px;
    right: 8px;
    bottom: 18px;
  }

  .makeup-giant-title {
    right: 84px;
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  .makeup-intro-copy strong {
    font-size: clamp(1.22rem, 7vw, 1.68rem);
  }

  .stacked-gallery {
    min-height: 430px;
  }

  .micro-card {
    top: 40%;
  }

  .arc-carousel {
    height: auto;
  }

  .arc-track {
    width: 100%;
    height: auto;
    margin-left: 0;
    --card-w: 124px;
    --card-h: 190px;
  }
}
