:root {
  --ink: #19171a;
  --paper: #f7f1eb;
  --paper-2: #fffaf5;
  --pink: #fa5f79;
  --pink-dark: #d94360;
  --lime: #d8f24b;
  --violet: #5d4cf4;
  --soft: #f4dce1;
  --line: rgba(25, 23, 26, .14);
  --muted: #6f686d;
  --white: #fff;
  --radius: 26px;
  --shadow: 0 28px 80px rgba(48, 26, 34, .16);
  --container: min(1220px, calc(100vw - 56px));
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--lime); color: var(--ink); }

.container { width: var(--container); margin: 0 auto; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  transition: visibility 0s linear 1.25s;
}
.preloader.is-done { visibility: hidden; }
.preloader__brand { display: grid; justify-items: center; gap: 22px; z-index: 2; }
.preloader__monogram {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 29px;
  font-style: italic;
  opacity: 0;
  transform: scale(.5) rotate(-20deg);
  animation: preloaderMark .9s .12s var(--ease) forwards;
}
.preloader__count { display: flex; gap: 19px; font-size: 15px; letter-spacing: .16em; }
.preloader__count i { font-style: normal; opacity: 0; transform: translateY(14px); animation: countUp .35s var(--ease) forwards; }
.preloader__count i:nth-child(1) { animation-delay: .3s; }
.preloader__count i:nth-child(2) { animation-delay: .45s; }
.preloader__count i:nth-child(3) { animation-delay: .6s; }
.preloader__count i:nth-child(4) { animation-delay: .75s; color: var(--pink); }
.preloader__pulse {
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  border: 1px solid rgba(250,95,121,.55);
  animation: pulseRing 1.1s .15s var(--ease) forwards;
}
.preloader__curtain {
  position: absolute;
  inset: 0;
  background: var(--pink);
  transform: translateY(100%);
  animation: curtainPass .9s .95s var(--ease) forwards;
}
.preloader.is-done .preloader__brand { animation: brandExit .45s .85s var(--ease) forwards; }
@keyframes preloaderMark { to { opacity: 1; transform: none; } }
@keyframes countUp { to { opacity: 1; transform: none; } }
@keyframes pulseRing { to { width: 330px; height: 330px; opacity: 0; } }
@keyframes curtainPass { 0% { transform: translateY(100%); } 48% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
@keyframes brandExit { to { opacity: 0; transform: scale(.9); } }

.cursor-glow {
  position: fixed;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,242,75,.18), rgba(216,242,75,0) 70%);
  pointer-events: none;
  z-index: 8;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
  mix-blend-mode: multiply;
}
body:hover .cursor-glow { opacity: 1; }
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 220; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--lime); }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 120;
  width: min(1280px, calc(100vw - 36px));
  min-height: 70px;
  padding: 10px 12px 10px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  transform: translate(-50%, -120px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(25,23,26,.74);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(24,15,20,.16);
  transition: background .3s, color .3s, transform .8s var(--ease), border-color .3s;
}
.site-header.is-ready { transform: translate(-50%, 0); }
.site-header.is-light { background: rgba(255,250,245,.88); color: var(--ink); border-color: rgba(25,23,26,.12); }
.brand { display: flex; align-items: center; width: fit-content; }
.brand img { width: 184px; height: auto; }
.site-header.is-light .brand img { filter: invert(1); }
.desktop-nav { display: flex; align-items: center; gap: 25px; font-size: 13px; }
.desktop-nav a { position: relative; opacity: .8; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header > .button { justify-self: end; }
.menu-toggle { display: none; width: 45px; height: 45px; border: 0; border-radius: 50%; background: var(--pink); padding: 0; position: relative; }
.menu-toggle span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: white; transition: transform .3s, top .3s; }
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 25px; }
.menu-open .menu-toggle span:first-child { top: 22px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 22px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; background: var(--ink); color: white; clip-path: circle(0 at calc(100% - 45px) 45px); transition: clip-path .65s var(--ease); pointer-events: none; }
.mobile-menu[aria-hidden="false"] { clip-path: circle(150% at calc(100% - 45px) 45px); pointer-events: auto; }
.mobile-menu nav { display: grid; gap: 18px; text-align: center; font-family: Georgia, serif; font-size: clamp(34px, 11vw, 56px); font-style: italic; }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 24px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s var(--ease), box-shadow .25s;
}
.button::before { content: ""; position: absolute; inset: 0; background: var(--lime); border-radius: inherit; transform: translateY(104%); transition: transform .42s var(--ease); }
.button:hover::before { transform: none; }
.button span, .button b { position: relative; z-index: 1; }
.button b { font-size: 19px; }
.button--small { min-height: 48px; padding: 0 20px; background: var(--pink); color: white; font-size: 13px; }
.button--small:hover { color: var(--ink); }
.button--primary { background: var(--pink); color: white; box-shadow: 0 15px 40px rgba(250,95,121,.32); }
.button--primary:hover { color: var(--ink); box-shadow: 0 20px 52px rgba(216,242,75,.22); }
.button--dark { width: 100%; background: var(--ink); color: white; }
.button--dark:hover { color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(4px,-4px); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 155px 0 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(25,23,26,.2), transparent 55%); pointer-events: none; }
.hero__noise { position: absolute; inset: 0; opacity: .08; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }
.hero__orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.hero__orbit--one { width: 570px; height: 570px; right: -130px; top: -180px; animation: orbitSlow 18s linear infinite; }
.hero__orbit--two { width: 240px; height: 240px; left: 39%; bottom: -120px; border-color: rgba(216,242,75,.28); animation: orbitSlow 11s linear infinite reverse; }
@keyframes orbitSlow { to { transform: rotate(360deg); } }
.hero__content { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0, .93fr) minmax(420px, .78fr); gap: clamp(42px,7vw,110px); align-items: center; }
.eyebrow { margin: 0 0 25px; color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: 0; transform: translateY(14px); }
.hero.is-ready .eyebrow { animation: heroSmall .7s .12s var(--ease) forwards; }
.hero__title { margin: 0; max-width: 800px; font-size: clamp(48px, 6.4vw, 99px); line-height: .94; letter-spacing: -.055em; font-weight: 650; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(112%) rotate(2deg); }
.hero.is-ready .hero__title .line:nth-child(1) > span { animation: titleUp 1.05s .2s var(--ease) forwards; }
.hero.is-ready .hero__title .line:nth-child(2) > span { animation: titleUp 1.05s .36s var(--ease) forwards; }
.hero__title .line--accent { padding: .05em 0 .12em; font-family: Georgia, serif; font-weight: 400; font-style: italic; color: var(--pink); letter-spacing: -.06em; }
.hero__lead { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px,1.45vw,21px); opacity: 0; transform: translateY(24px); }
.hero.is-ready .hero__lead { animation: heroSmall .8s .64s var(--ease) forwards; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 35px; opacity: 0; transform: translateY(24px); }
.hero.is-ready .hero__actions { animation: heroSmall .8s .78s var(--ease) forwards; }
.hero__trust { display: flex; align-items: center; gap: 17px; margin-top: 37px; opacity: 0; transform: translateY(20px); }
.hero.is-ready .hero__trust { animation: heroSmall .8s .92s var(--ease) forwards; }
.hero__trust p { margin: 0; font-size: 12px; color: rgba(255,255,255,.63); line-height: 1.45; }
.hero__trust strong { color: white; }
.mini-stack { display: flex; padding-left: 11px; }
.mini-stack img { width: 41px; height: 41px; object-fit: cover; border: 3px solid var(--ink); border-radius: 50%; margin-left: -11px; }
.hero__visual { position: relative; min-height: 600px; opacity: 0; transform: translateX(70px) rotate(2deg); }
.hero.is-ready .hero__visual { animation: visualIn 1.2s .22s var(--ease) forwards; }
.hero__image-mask { position: absolute; inset: 0 20px 25px 0; overflow: hidden; border-radius: 50% 50% 24px 24px / 24% 24% 24px 24px; clip-path: inset(0 0 100% 0 round 50% 50% 24px 24px); box-shadow: var(--shadow); }
.hero.is-ready .hero__image-mask { animation: maskDrop 1.2s .35s var(--ease) forwards; }
.hero__image-mask::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(25,23,26,.72)); }
.hero__image-mask img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; transform: scale(1.14); }
.hero.is-ready .hero__image-mask img { animation: photoScale 1.8s .25s var(--ease) forwards; }
.hero__caption { position: absolute; left: -42px; bottom: 56px; z-index: 4; display: grid; gap: 2px; padding: 14px 19px; background: var(--paper-2); color: var(--ink); transform: rotate(-4deg) translateY(40px); opacity: 0; box-shadow: 0 15px 40px rgba(0,0,0,.16); }
.hero.is-ready .hero__caption { animation: cardPop .75s 1s var(--ease) forwards; }
.hero__caption span { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--pink-dark); }
.hero__caption strong { font-family: Georgia, serif; font-size: 19px; font-style: italic; font-weight: 400; }
.count-badge { position: absolute; top: 48px; right: -30px; z-index: 5; display: grid; grid-template-columns: repeat(2, 1fr); width: 108px; height: 108px; padding: 18px; border-radius: 50%; background: var(--lime); color: var(--ink); font-weight: 900; font-size: 18px; transform: scale(0) rotate(-25deg); }
.hero.is-ready .count-badge { animation: badgePop .7s 1.08s var(--ease) forwards; }
.count-badge span { display: grid; place-items: center; }
.hero__scribble { position: absolute; width: 260px; left: -65px; top: 18px; overflow: visible; }
.hero__scribble path { fill: none; stroke: var(--pink); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 430; stroke-dashoffset: 430; }
.hero.is-ready .hero__scribble path { animation: drawLine 1.4s 1.05s var(--ease) forwards; }
.hero__scroll { position: absolute; z-index: 5; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.hero__scroll i { width: 34px; height: 1px; background: currentColor; position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--lime); transform: translateX(-100%); animation: scrollPulse 2s infinite; }
@keyframes heroSmall { to { opacity: 1; transform: none; } }
@keyframes titleUp { to { transform: none; } }
@keyframes visualIn { to { opacity: 1; transform: none; } }
@keyframes maskDrop { to { clip-path: inset(0 0 0 0 round 50% 50% 24px 24px); } }
@keyframes photoScale { to { transform: scale(1); } }
@keyframes cardPop { to { opacity: 1; transform: rotate(-4deg); } }
@keyframes badgePop { 75% { transform: scale(1.08) rotate(8deg); } 100% { transform: scale(1) rotate(6deg); } }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes scrollPulse { 0%,100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }

.section-index { margin: 0 0 22px; color: var(--pink-dark); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.display-title { margin: 0; font-size: clamp(43px,5.15vw,78px); line-height: .98; letter-spacing: -.055em; font-weight: 650; }
.display-title em { font-family: Georgia, serif; font-weight: 400; color: var(--pink-dark); }
.reveal-lines { overflow: hidden; }
.scene-wipe { position: relative; }
.scene-wipe::before { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--pink); transform: scaleX(0); transform-origin: left; pointer-events: none; }
.scene-wipe.is-visible::before { animation: sceneWipe 1.2s var(--ease); }
@keyframes sceneWipe { 0% { transform: scaleX(0); transform-origin: left; } 48% { transform: scaleX(1); transform-origin: left; } 52% { transform: scaleX(1); transform-origin: right; } 100% { transform: scaleX(0); transform-origin: right; } }

.statement { padding: 145px 0 0; background: var(--paper-2); overflow: hidden; }
.statement__grid { display: grid; grid-template-columns: .3fr 1fr; gap: 70px; align-items: start; }
.statement__text { max-width: 740px; margin: 36px 0 0 auto; color: var(--muted); font-size: clamp(18px,1.6vw,23px); }
.ticker { margin-top: 110px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transform: rotate(-1.3deg) scale(1.03); background: var(--lime); }
.ticker__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 24s linear infinite; }
.ticker span { font-family: Georgia, serif; font-size: clamp(33px,4vw,62px); font-style: italic; white-space: nowrap; }
.ticker i { font-style: normal; font-size: 22px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.story { padding: 150px 0; background: var(--paper-2); }
.story__layout { display: grid; grid-template-columns: minmax(380px,.84fr) 1fr; gap: clamp(60px,8vw,130px); align-items: start; }
.story__visual { position: sticky; top: 125px; height: min(700px, calc(100vh - 160px)); min-height: 530px; border-radius: 38px; overflow: hidden; background: var(--ink); box-shadow: var(--shadow); }
.story__photo { position: absolute; inset: 0; opacity: 0; clip-path: circle(0 at 50% 50%); transform: scale(1.08); transition: opacity .65s, clip-path 1s var(--ease), transform 1.2s var(--ease); }
.story__photo.is-active { opacity: 1; clip-path: circle(75% at 50% 50%); transform: none; }
.story__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(25,23,26,.5)); }
.story__photo img { width: 100%; height: 100%; object-fit: cover; }
.story__pulse { position: absolute; left: 28px; bottom: 28px; width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,.7); z-index: 5; }
.story__pulse::before, .story__pulse::after, .story__pulse span { content: ""; position: absolute; border-radius: 50%; inset: 10px; border: 1px solid rgba(216,242,75,.8); animation: storyPulse 2.2s infinite; }
.story__pulse::after { animation-delay: .7s; }
.story__pulse span { animation-delay: 1.4s; }
@keyframes storyPulse { from { transform: scale(.4); opacity: 1; } to { transform: scale(1.9); opacity: 0; } }
.story__content { padding-top: 20px; }
.story__content > .display-title { margin-bottom: 85px; }
.story-card { min-height: 58vh; padding: 38px 0 110px; border-top: 1px solid var(--line); opacity: .35; transition: opacity .35s, transform .35s; }
.story-card.is-active { opacity: 1; }
.story-card > span { color: var(--pink-dark); font-size: 12px; font-weight: 900; }
.story-card h3 { max-width: 590px; margin: 25px 0 20px; font-size: clamp(31px,3.5vw,54px); line-height: 1; letter-spacing: -.045em; }
.story-card p { max-width: 590px; margin: 0; color: var(--muted); font-size: 19px; }

.program { padding: 150px 0; background: var(--soft); overflow: hidden; }
.scene-aperture { clip-path: inset(0 0 0 0 round 0); }
.scene-aperture.is-visible { animation: apertureIn 1.1s var(--ease); }
@keyframes apertureIn { 0% { clip-path: inset(12% 8% 12% 8% round 80px); } 100% { clip-path: inset(0 0 0 0 round 0); } }
.section-heading { display: grid; grid-template-columns: 1fr .42fr; gap: 70px; align-items: end; margin-bottom: 80px; }
.section-heading > p { margin: 0 0 9px; color: var(--muted); font-size: 18px; }
.program-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.program-card { grid-column: span 4; min-height: 450px; padding: 30px; border: 1px solid rgba(25,23,26,.12); border-radius: var(--radius); background: rgba(255,250,245,.65); transform-style: preserve-3d; transition: box-shadow .3s; }
.program-card:hover { box-shadow: var(--shadow); }
.program-card__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.program-card__top span { font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--pink-dark); }
.program-card__top b { font-size: 12px; }
.program-card h3 { margin: 42px 0 19px; font-size: clamp(29px,2.7vw,42px); line-height: 1.02; letter-spacing: -.045em; }
.program-card p { color: var(--muted); }
.program-card ul { margin: 32px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.program-card li { padding: 9px 0; border-top: 1px solid var(--line); font-weight: 700; font-size: 14px; }
.program-card li::before { content: "↗"; margin-right: 9px; color: var(--pink-dark); }
.program-card--photo { position: relative; padding: 0; overflow: hidden; background: var(--ink); }
.program-card--photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(25,23,26,.82)); }
.program-card--photo img { width: 100%; height: 100%; object-fit: cover; }
.program-card__overlay { position: absolute; z-index: 2; left: 27px; right: 27px; bottom: 26px; color: white; }
.program-card__overlay span { display: block; color: var(--lime); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; font-weight: 900; }
.program-card__overlay strong { display: block; margin-top: 10px; font-family: Georgia, serif; font-size: 31px; font-weight: 400; font-style: italic; line-height: 1; }
.program-card--wide { grid-column: span 8; display: grid; grid-template-columns: 1fr .76fr; gap: 35px; background: var(--ink); color: white; overflow: hidden; padding-right: 0; }
.program-card--wide p { color: rgba(255,255,255,.63); max-width: 510px; }
.program-card--wide img { width: 100%; height: 100%; object-fit: cover; min-height: 390px; border-radius: 60% 0 0 60%; }
.program-card--wide .program-card__top { border-color: rgba(255,255,255,.15); }

.about-victoria { position: relative; padding: 150px 0; overflow: hidden; background: var(--ink); color: white; }
.about-victoria__backdrop { position: absolute; left: -2vw; bottom: -3vw; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.1); font-size: 23vw; font-weight: 900; line-height: .7; letter-spacing: -.08em; }
.about-victoria__grid { position: relative; display: grid; grid-template-columns: .8fr 1fr; gap: clamp(55px,8vw,130px); align-items: center; }
.about-victoria__portrait-wrap { position: relative; }
.about-victoria__portrait { position: relative; overflow: hidden; aspect-ratio: .82; border-radius: 240px 240px 26px 26px; box-shadow: 0 30px 100px rgba(0,0,0,.4); }
.about-victoria__portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(25,23,26,.24)); }
.about-victoria__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.portrait-note { position: absolute; right: -28px; bottom: 42px; max-width: 175px; padding: 10px 12px; background: var(--lime); color: var(--ink); font-size: 9px; line-height: 1.4; letter-spacing: .04em; transform: rotate(-5deg); }
.about-victoria .section-index { color: var(--lime); }
.about-victoria .display-title em { color: var(--pink); }
.lead-copy { margin: 34px 0 50px; color: rgba(255,255,255,.65); font-size: 20px; }
.principles { display: grid; gap: 22px; margin-bottom: 40px; }
.principles > div { display: grid; grid-template-columns: 36px 1fr; gap: 17px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); }
.principles span { color: var(--lime); font-size: 11px; font-weight: 900; }
.principles p { margin: 0; color: rgba(255,255,255,.65); }
.principles strong { color: white; }

.gallery { padding: 150px 0 110px; overflow: hidden; background: var(--paper-2); }
.gallery__head { display: grid; grid-template-columns: 1fr .42fr; gap: 70px; align-items: end; margin-bottom: 70px; }
.gallery__head > p { margin: 0; color: var(--muted); font-size: 18px; }
.gallery-rail { display: flex; gap: 24px; width: max-content; padding: 0 max(28px, calc((100vw - 1220px)/2)); will-change: transform; }
.gallery-card { position: relative; width: min(41vw,540px); height: 470px; margin: 0; overflow: hidden; border-radius: 28px; flex: none; box-shadow: 0 20px 60px rgba(49,28,35,.12); }
.gallery-card--tall { width: min(31vw,390px); height: 570px; }
.gallery-card--wide { width: min(52vw,690px); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(25,23,26,.74)); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-card:hover img { transform: scale(1.055); }
.gallery-card figcaption { position: absolute; z-index: 2; left: 25px; bottom: 24px; color: white; display: grid; }
.gallery-card figcaption span { color: var(--lime); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.gallery-card figcaption b { font-family: Georgia,serif; font-size: 26px; font-weight: 400; font-style: italic; }
.gallery-progress { width: min(650px, calc(100vw - 56px)); height: 2px; margin: 60px auto 0; background: var(--line); }
.gallery-progress span { display: block; width: 0; height: 100%; background: var(--pink); }

.first-lesson { position: relative; padding: 150px 0; background: var(--violet); color: white; overflow: hidden; }
.first-lesson::before { content: ""; position: absolute; inset: 0; opacity: .18; background: repeating-linear-gradient(90deg, transparent 0 7.9%, rgba(255,255,255,.12) 8%); }
.scene-stack::after { content: ""; position: absolute; top: 0; left: 8%; right: 8%; height: 24px; border-radius: 0 0 20px 20px; background: var(--paper-2); transform: translateY(-100%); }
.scene-stack.is-visible::after { animation: stackDrop .8s var(--ease); }
@keyframes stackDrop { 50% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
.section-heading--light { position: relative; }
.section-heading--light .section-index { color: var(--lime); }
.section-heading--light .display-title em { color: var(--lime); }
.section-heading--light > p { color: rgba(255,255,255,.7); }
.lesson-steps { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 75px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; overflow: hidden; background: rgba(255,255,255,.18); }
.lesson-steps article { min-height: 360px; padding: 35px; background: var(--violet); transition: background .35s, color .35s; }
.lesson-steps article:hover { background: var(--lime); color: var(--ink); }
.lesson-steps span { font-size: 11px; font-weight: 900; color: var(--lime); }
.lesson-steps article:hover span { color: var(--pink-dark); }
.lesson-steps h3 { margin: 120px 0 20px; font-size: 31px; letter-spacing: -.04em; }
.lesson-steps p { margin: 0; color: rgba(255,255,255,.65); }
.lesson-steps article:hover p { color: rgba(25,23,26,.72); }
.lesson-note { position: relative; display: flex; align-items: center; gap: 30px; margin-top: 28px; padding: 24px 28px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; }
.lesson-note span { display: inline-grid; place-items: center; min-width: 64px; height: 34px; border-radius: 999px; background: var(--pink); font-weight: 900; font-size: 11px; text-transform: uppercase; }
.lesson-note p { margin: 0; color: rgba(255,255,255,.78); }

.mom-proof { padding: 150px 0; background: var(--paper-2); }
.mom-proof__grid { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(70px,9vw,140px); align-items: start; }
.mom-proof__grid > div:first-child { position: sticky; top: 140px; }
.mom-proof__list { display: grid; }
.mom-proof__list article { min-height: 330px; padding: 30px 0 70px; border-top: 1px solid var(--line); }
.mom-proof__list span { color: var(--pink-dark); font-size: 11px; font-weight: 900; }
.mom-proof__list h3 { margin: 44px 0 17px; font-size: clamp(32px,3.6vw,52px); line-height: 1; letter-spacing: -.045em; }
.mom-proof__list p { max-width: 590px; margin: 0; color: var(--muted); font-size: 18px; }

.faq { padding: 150px 0; background: #eee4dc; }
.faq__grid { display: grid; grid-template-columns: .72fr 1fr; gap: clamp(70px,8vw,130px); align-items: start; }
.faq__intro { position: sticky; top: 140px; }
.faq__intro > p:last-child { max-width: 480px; margin-top: 32px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 27px 2px; list-style: none; cursor: pointer; font-size: 19px; font-weight: 750; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--paper-2); }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 10px; right: 10px; top: 16px; height: 1.5px; background: var(--ink); transition: transform .3s; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span { background: var(--lime); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { margin: -4px 55px 28px 2px; color: var(--muted); }

.signup { position: relative; padding: 160px 0; overflow: hidden; background: var(--pink); }
.signup__ribbon { position: absolute; top: 50%; left: 50%; width: 150vw; display: flex; gap: 40px; transform: translate(-50%,-50%) rotate(-8deg); color: rgba(255,255,255,.13); font-size: 16vw; line-height: .75; font-weight: 900; white-space: nowrap; animation: ribbonMove 22s linear infinite; }
@keyframes ribbonMove { to { transform: translate(-55%,-50%) rotate(-8deg); } }
.signup__grid { position: relative; display: grid; grid-template-columns: .8fr .7fr; gap: clamp(70px,10vw,150px); align-items: center; }
.signup .section-index { color: var(--ink); }
.signup .display-title em { color: white; }
.signup__copy > p:not(.section-index) { max-width: 580px; margin: 30px 0; color: rgba(25,23,26,.7); font-size: 19px; }
.instagram-card { display: flex; align-items: center; gap: 16px; width: fit-content; min-width: 310px; padding: 16px 19px; border-radius: 17px; background: var(--ink); color: white; box-shadow: 0 20px 50px rgba(25,23,26,.21); }
.instagram-card__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--pink); font-size: 24px; }
.instagram-card small { display: block; color: rgba(255,255,255,.55); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.instagram-card strong { display: block; }
.instagram-card b { margin-left: auto; }
.signup-form { padding: 33px; border-radius: 30px; background: var(--paper-2); box-shadow: 0 35px 90px rgba(85,24,39,.27); transform: rotate(1.4deg); }
.form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.form-head span { font-weight: 900; }
.form-head b { padding: 6px 9px; border-radius: 999px; background: var(--lime); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.signup-form > label:not(.checkbox) { display: grid; gap: 7px; margin-top: 17px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.signup-form input, .signup-form select { width: 100%; height: 52px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: none; background: transparent; color: var(--ink); font-size: 16px; font-weight: 600; text-transform: none; letter-spacing: normal; }
.signup-form input:focus, .signup-form select:focus { border-bottom-color: var(--pink); }
.signup-form input::placeholder { color: #ada4a9; font-weight: 500; }
.checkbox { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 23px 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.checkbox input { width: 17px; height: 17px; margin: 0; accent-color: var(--pink); }
.checkbox a { text-decoration: underline; }
.form-status { min-height: 22px; margin: 14px 0 0; text-align: center; font-size: 12px; font-weight: 700; }
.form-status.is-success { color: #26723b; }
.form-status.is-error { color: var(--pink-dark); }

.site-footer { padding: 72px 0 25px; background: var(--ink); color: white; }
.site-footer__top { display: grid; grid-template-columns: 1fr auto auto; gap: 60px; align-items: center; padding-bottom: 50px; }
.site-footer__top img { width: 210px; }
.site-footer__top p { margin: 0; color: rgba(255,255,255,.5); font-size: 13px; }
.site-footer__top > a { font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.45); }
.site-footer__bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.44); font-size: 10px; }
.site-footer__bottom span:last-child { text-align: right; }
.site-footer__bottom a { text-decoration: underline; }

.reveal-on-scroll { opacity: 0; transform: translateY(35px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --container: min(100% - 40px, 960px); }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .site-header > .button { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .hero { padding-top: 128px; }
  .hero__content { grid-template-columns: 1fr .76fr; gap: 42px; }
  .hero__title { font-size: clamp(49px,7vw,78px); }
  .hero__visual { min-height: 530px; }
  .story__layout { grid-template-columns: .8fr 1fr; gap: 55px; }
  .program-card { grid-column: span 6; }
  .program-card--wide { grid-column: span 12; }
  .about-victoria__grid { grid-template-columns: .78fr 1fr; gap: 60px; }
  .gallery-card { width: 54vw; }
  .gallery-card--tall { width: 40vw; }
  .gallery-card--wide { width: 66vw; }
  .signup__grid { grid-template-columns: .9fr .8fr; gap: 55px; }
}

@media (max-width: 820px) {
  :root { --container: calc(100vw - 32px); --radius: 22px; }
  .site-header { top: 10px; width: calc(100vw - 20px); min-height: 62px; border-radius: 15px; }
  .brand img { width: 155px; }
  .hero { padding: 115px 0 85px; min-height: auto; }
  .hero__content { grid-template-columns: 1fr; }
  .hero__copy { order: 1; }
  .hero__visual { min-height: 610px; order: 2; margin-top: 18px; }
  .hero__image-mask { right: 0; }
  .hero__caption { left: 12px; }
  .count-badge { right: -4px; }
  .hero__scroll { display: none; }
  .statement, .story, .program, .about-victoria, .gallery, .first-lesson, .mom-proof, .faq, .signup { padding-top: 105px; padding-bottom: 105px; }
  .statement__grid, .section-heading, .gallery__head, .about-victoria__grid, .mom-proof__grid, .faq__grid, .signup__grid { grid-template-columns: 1fr; gap: 38px; }
  .statement__text { margin-left: 0; }
  .ticker { margin-top: 70px; }
  .story__layout { grid-template-columns: 1fr; }
  .story__visual { position: relative; top: 0; height: 560px; min-height: 0; }
  .story__content > .display-title { margin-bottom: 55px; }
  .story-card { min-height: 0; padding: 34px 0 70px; }
  .program-grid { gap: 14px; }
  .program-card { grid-column: span 6; min-height: 420px; }
  .program-card--wide { grid-column: span 12; }
  .about-victoria__portrait-wrap { max-width: 560px; margin: 0 auto; }
  .portrait-note { right: 5px; }
  .gallery-rail { padding-left: 16px; padding-right: 16px; }
  .gallery-card { width: 72vw; }
  .gallery-card--tall { width: 54vw; }
  .gallery-card--wide { width: 86vw; }
  .lesson-steps { grid-template-columns: 1fr; }
  .lesson-steps article { min-height: 260px; }
  .lesson-steps h3 { margin-top: 70px; }
  .mom-proof__grid > div:first-child, .faq__intro { position: static; }
  .signup-form { max-width: 620px; transform: none; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__top > a { justify-self: end; }
  .site-footer__top p { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --container: calc(100vw - 24px); }
  body { font-size: 15px; }
  .display-title { font-size: clamp(38px,12vw,58px); }
  .hero { padding-bottom: 75px; }
  .hero__title { font-size: clamp(44px,14vw,66px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero__actions .button { width: 100%; }
  .hero__visual { min-height: 480px; }
  .hero__image-mask { bottom: 0; }
  .hero__caption { bottom: 22px; right: 8px; left: auto; }
  .hero__scribble { width: 180px; left: -10px; }
  .count-badge { width: 88px; height: 88px; top: 30px; font-size: 14px; }
  .hero__trust { align-items: flex-start; }
  .statement, .story, .program, .about-victoria, .gallery, .first-lesson, .mom-proof, .faq, .signup { padding-top: 82px; padding-bottom: 82px; }
  .story__visual { height: 440px; border-radius: 25px; }
  .story-card h3 { font-size: 36px; }
  .program-card, .program-card--wide { grid-column: span 12; }
  .program-card { min-height: auto; }
  .program-card--photo { min-height: 430px; }
  .program-card--wide { grid-template-columns: 1fr; padding-right: 28px; }
  .program-card--wide img { min-height: 290px; border-radius: 180px 180px 18px 18px; }
  .lead-copy { font-size: 17px; }
  .gallery-card, .gallery-card--tall, .gallery-card--wide { width: 82vw; height: 490px; }
  .gallery-card--wide { width: 89vw; }
  .lesson-steps article { min-height: 245px; padding: 27px; }
  .lesson-note { align-items: flex-start; flex-direction: column; gap: 14px; }
  .mom-proof__list article { min-height: 270px; }
  .signup-form { padding: 26px 21px; }
  .instagram-card { width: 100%; min-width: 0; }
  .site-footer__top { grid-template-columns: 1fr; gap: 25px; }
  .site-footer__top > a { justify-self: start; }
  .site-footer__top p { grid-column: auto; }
  .site-footer__bottom { grid-template-columns: 1fr; }
  .site-footer__bottom span:last-child { text-align: left; }
}

@media (hover: none) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .preloader { display: none; }
  .site-header { transform: translate(-50%,0); }
  .eyebrow, .hero__lead, .hero__actions, .hero__trust, .hero__visual { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
  .hero__image-mask { clip-path: none; }
  .hero__image-mask img { transform: none; }
  .hero__caption { opacity: 1; transform: rotate(-4deg); }
  .count-badge { transform: rotate(6deg) scale(1); }
  .story__photo { transition: none; }
  .ticker__track, .signup__ribbon { animation: none; }
}

/* Motion architecture refinements */
.hero__visual { translate: 0 var(--parallax-y, 0); }
.gallery { min-height: 190vh; }
.gallery-rail { position: sticky; top: 190px; }
.gallery-progress { position: sticky; top: calc(190px + 600px); }
@media (max-width: 820px) {
  .gallery { min-height: 165vh; }
  .gallery-rail { top: 160px; }
  .gallery-progress { top: calc(160px + 510px); }
}
@media (max-width: 560px) {
  .gallery { min-height: 150vh; }
  .gallery-rail { top: 135px; }
  .gallery-progress { top: calc(135px + 505px); }
}

@media (max-width: 560px) {
  .hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 385px;
    right: -78px;
    width: 235px;
    height: 315px;
    border-radius: 140px 0 0 140px;
    background:
      linear-gradient(90deg, rgba(25,23,26,.96) 0%, rgba(25,23,26,.52) 42%, rgba(25,23,26,.08) 100%),
      url('../assets/photos/hero-class.webp') 58% center / cover no-repeat;
    opacity: .72;
    filter: saturate(.85) contrast(1.05);
  }
  .hero__content { position: relative; z-index: 2; }
}

@media (max-width: 560px) {
  .hero::before { display: none; }
  .hero__content { position: relative; }
  .hero__visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 126px;
    height: 172px;
    min-height: 0;
    margin: 0;
    z-index: 4;
    translate: none;
  }
  .hero__image-mask {
    inset: 0;
    border-radius: 72px 72px 17px 17px;
    clip-path: inset(0 0 0 0 round 72px 72px 17px 17px);
  }
  .hero__image-mask img { object-position: 64% center; }
  .hero__caption, .count-badge, .hero__scribble { display: none; }
  .hero__trust { padding-right: 136px; min-height: 172px; align-items: flex-end; }
  .hero__trust p { font-size: 10px; max-width: 120px; }
  .mini-stack img { width: 35px; height: 35px; }
}

@media (max-width: 560px) {
  .hero__trust { display: none; }
  .hero__visual { bottom: 4px; }
  .hero { padding-bottom: 205px; }
}
@media (max-width: 560px) { .hero { padding-bottom: 120px; } }
@media (max-width: 560px) {
  .hero__visual { width: 94px; height: 132px; right: 8px; bottom: 8px; }
  .hero__image-mask { border-radius: 55px 55px 14px 14px; clip-path: inset(0 0 0 0 round 55px 55px 14px 14px); }
}
@media (max-width: 560px) { .hero__visual { top: 590px; bottom: auto; } }
