@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,300..800&family=DM+Sans:opsz,wght@9..40,300..700&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --ink: #181510;
  --ink-soft: #4d4840;
  --paper: #fbf7ee;
  --paper-2: #fffdf8;
  --white: #ffffff;
  --orange: #ff7747;
  --orange-deep: #e44f22;
  --yellow: #ffd96b;
  --mint: #9edbc7;
  --violet: #7567e8;
  --blue: #a9d5f3;
  --rose: #f6b1bd;
  --line: rgba(24, 21, 16, .14);
  --line-strong: rgba(24, 21, 16, .28);
  --shadow-sm: 0 12px 32px rgba(48, 31, 14, .08);
  --shadow-lg: 0 36px 90px rgba(55, 31, 10, .16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 40px;
  --container: min(1380px, calc(100vw - 64px));
  --header-h: 86px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-snappy: cubic-bezier(.2, .8, .2, 1);
  --display: "Bricolage Grotesque", "Arial Narrow", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --text-scale: 1;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: auto;
  background: var(--paper);
  color-scheme: light;
  font-size: calc(16px * var(--text-scale));
}
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% -5%, rgba(255, 217, 107, .35), transparent 32rem),
    radial-gradient(circle at 98% 12%, rgba(117, 103, 232, .12), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.no-scroll { overflow: hidden; }
body.high-contrast {
  --ink: #000;
  --ink-soft: #181818;
  --paper: #fff;
  --paper-2: #fff;
  --line: rgba(0,0,0,.28);
}
::selection { background: var(--yellow); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); line-height: .98; letter-spacing: -.045em; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 10000;
  transform: translateY(-150%);
  padding: 11px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: none; }

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: clamp(90px, 11vw, 170px) 0; }
.section--compact { padding: clamp(64px, 8vw, 115px) 0; }
.section--ink { background: var(--ink); color: var(--paper-2); }
.section--white { background: var(--paper-2); }
.section--orange { background: var(--orange); color: var(--ink); }
.section--yellow { background: var(--yellow); color: var(--ink); }
.section--violet { background: var(--violet); color: #fff; }
.section--clip { overflow: clip; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .45fr);
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(44px, 6vw, 84px);
}
.section-title {
  font-size: clamp(3.2rem, 7.2vw, 7.8rem);
  max-width: 12ch;
  text-wrap: balance;
}
.section-title em { font-family: var(--serif); font-weight: 400; }
.section-intro { max-width: 53ch; color: var(--ink-soft); font-size: clamp(1rem, 1.35vw, 1.25rem); }
.section--ink .section-intro { color: rgba(255,255,255,.68); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.kicker { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.lead { font-size: clamp(1.13rem, 1.9vw, 1.55rem); line-height: 1.45; color: var(--ink-soft); }
.rich-text { max-width: 72ch; }
.rich-text p + p { margin-top: 1.1em; }
.serif { font-family: var(--serif); font-weight: 400; }
.muted { color: var(--ink-soft); }

/* Buttons */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-border: var(--ink);
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--display);
  font-size: .96rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--orange);
  transform: translateY(105%);
  transition: transform .55s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:hover, .btn:focus-visible { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(24,21,16,.16); }
.btn:active { transform: translateY(-1px) scale(.985); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-border: #fff; }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-border: rgba(24,21,16,.34); }
.btn--outline::before { background: var(--ink); }
.btn--outline:hover, .btn--outline:focus-visible { color: #fff; }
.btn--ghost { --btn-bg: rgba(255,255,255,.08); --btn-fg: #fff; --btn-border: rgba(255,255,255,.26); }
.btn--ghost::before { background: #fff; }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--ink); }
.btn--orange { --btn-bg: var(--orange); --btn-fg: var(--ink); --btn-border: var(--orange); }
.btn--orange::before { background: var(--yellow); }
.btn--small { min-height: 44px; padding-inline: 17px; font-size: .87rem; }
.btn svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.text-link {
  display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid currentColor;
  padding-bottom: 4px; font-weight: 700; transition: gap .3s var(--ease), color .3s ease;
}
.text-link:hover { gap: 16px; color: var(--orange-deep); }

/* Loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  transition: opacity .75s var(--ease), visibility .75s;
}
.site-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { width: min(540px, calc(100vw - 48px)); text-align: center; }
.loader-mark { width: 90px; margin: 0 auto 26px; animation: loader-float 2s ease-in-out infinite; }
.loader-word { font-family: var(--display); font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 700; letter-spacing: -.06em; }
.loader-line { height: 2px; margin-top: 25px; overflow: hidden; background: rgba(255,255,255,.15); }
.loader-line span { display: block; width: 100%; height: 100%; background: var(--orange); transform-origin: left; animation: loader-line 1.2s var(--ease) forwards; }
@keyframes loader-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes loader-float { 50% { transform: translateY(-8px) rotate(3deg); } }

/* Header */
.site-announcement {
  position: relative;
  z-index: 100;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  padding: 7px 48px;
}
.site-header {
  position: relative;
  top: auto;
  z-index: 300;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s var(--ease), box-shadow .35s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(251, 247, 238, .86);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(48,31,14,.05);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.header-inner { width: var(--container); margin-inline: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; z-index: 2; }
.brand-mark { width: 42px; height: 42px; transition: transform .5s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-7deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--display); font-size: 1.18rem; letter-spacing: -.04em; }
.brand-text small { margin-top: 5px; color: var(--ink-soft); font-size: .63rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.primary-nav { justify-self: center; }
.primary-nav ul { display: flex; align-items: center; gap: 5px; }
.nav-link {
  position: relative; display: inline-flex; align-items: center; min-height: 42px; padding: 0 14px;
  border-radius: 999px; font-family: var(--display); font-size: .89rem; font-weight: 650;
  transition: background .25s ease, transform .25s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 8px; height: 2px; border-radius: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.nav-link:hover, .nav-link.is-active { background: rgba(24,21,16,.055); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); background: rgba(255,255,255,.45); border-radius: 50%; cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; background: var(--ink); transition: transform .35s var(--ease), opacity .25s; }
.menu-toggle span { margin: 4px auto; }
.menu-toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span { opacity: 0; }
.menu-toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }

/* Accessibility panel */
.access-toggle {
  position: fixed; left: 18px; bottom: 20px; z-index: 500; width: 48px; height: 48px; border: 1px solid var(--line);
  border-radius: 50%; background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); display: grid; place-items: center; cursor: pointer;
}
.access-toggle svg { width: 21px; }
.access-panel {
  position: fixed; left: 18px; bottom: 78px; z-index: 499; width: min(310px, calc(100vw - 36px));
  padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px); transform: translateY(18px) scale(.96); opacity: 0; visibility: hidden; transition: .35s var(--ease);
}
.access-panel.is-open { transform: none; opacity: 1; visibility: visible; }
.access-panel h2 { font-size: 1.35rem; margin-bottom: 15px; }
.access-option { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 12px 0; border-top: 1px solid var(--line); font-size: .9rem; }
.switch { width: 46px; height: 26px; padding: 3px; border: 0; border-radius: 999px; background: #d8d4cc; cursor: pointer; transition: background .3s; }
.switch span { display: block; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.18); transition: transform .3s var(--ease); }
.switch[aria-pressed="true"] { background: var(--orange); }
.switch[aria-pressed="true"] span { transform: translateX(20px); }

/* Custom cursor */
.cursor-dot, .cursor-ring { position: fixed; left: 0; top: 0; z-index: 10000; pointer-events: none; opacity: 0; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-dot { width: 7px; height: 7px; background: var(--ink); }
.cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(24,21,16,.55); transition: width .25s var(--ease), height .25s var(--ease), background .25s, border-color .25s; }
.cursor-ring.is-hover { width: 62px; height: 62px; background: rgba(255,119,71,.16); border-color: var(--orange); mix-blend-mode: multiply; }
.cursor-ring.is-view { width: 82px; height: 82px; background: var(--orange); border-color: var(--orange); }
.cursor-ring.is-view::after { content: "Voir"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-size: .72rem; font-weight: 750; }
.cursor-ready .cursor-dot, .cursor-ready .cursor-ring { opacity: 1; }
@media (pointer: coarse), (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* Home hero */
.hero-scroll { position: relative; min-height: 0; background: var(--paper); }
.hero-sticky { position: relative; top: auto; height: clamp(680px, calc(100svh - 36px), 880px); min-height: 680px; overflow: hidden; }
.hero-stage { position: absolute; inset: 0; }
.hero-media {
  position: absolute; inset: 0; overflow: hidden; background: var(--ink);
  clip-path: inset(calc(6% + var(--hero-progress, 0) * 0%) calc(5% - var(--hero-progress, 0) * 5%) calc(6% - var(--hero-progress, 0) * 6%) calc(5% - var(--hero-progress, 0) * 5%) round calc(38px - var(--hero-progress, 0) * 38px));
}
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,8,5,.78) 0%, rgba(12,8,5,.25) 54%, rgba(12,8,5,.4) 100%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 32%; transform: scale(calc(1.12 - var(--hero-progress, 0) * .10)); filter: saturate(.88) contrast(1.05); }
.hero-grain { position: absolute; inset: 0; z-index: 2; opacity: .18; 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='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero-content { position: relative; z-index: 5; width: var(--container); height: 100%; margin: auto; display: flex; flex-direction: column; justify-content: flex-end; padding: calc(var(--header-h) + 60px) 0 7vh; color: #fff; }
.hero-eyebrow { max-width: 650px; margin-bottom: 24px; opacity: calc(1 - var(--hero-progress, 0) * .7); }
.hero-title { max-width: 10.5ch; font-size: clamp(4.4rem, 10.2vw, 11rem); line-height: .82; letter-spacing: -.075em; text-wrap: balance; transform: translateY(calc(var(--hero-progress, 0) * -35px)); }
.hero-title .line { display: block; overflow: hidden; padding-bottom: .07em; }
.hero-title .line > span { display: block; animation: title-in .72s var(--ease) both; }
.hero-title .line:nth-child(2) > span { animation-delay: .1s; }
.hero-title em { font-family: var(--serif); font-weight: 400; color: var(--yellow); }
@keyframes title-in { from { transform: translateY(105%); } to { transform: none; } }
.hero-bottom { display: grid; grid-template-columns: minmax(280px, 600px) auto; align-items: end; justify-content: space-between; gap: 40px; margin-top: 34px; }
.hero-lead { max-width: 53ch; color: rgba(255,255,255,.82); font-size: clamp(1.03rem, 1.45vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-scroll-note { display: flex; align-items: center; gap: 12px; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll-note span { width: 1px; height: 60px; background: rgba(255,255,255,.5); overflow: hidden; }
.hero-scroll-note span::after { content: ""; display: block; width: 100%; height: 40%; background: #fff; animation: scroll-line 1.8s ease-in-out infinite; }
@keyframes scroll-line { from { transform: translateY(-120%); } to { transform: translateY(300%); } }
.hero-mask { position: absolute; z-index: 4; right: 4vw; top: 13vh; width: clamp(190px, 23vw, 390px); transform: translate3d(calc(var(--hero-progress, 0) * -50px), calc(var(--hero-progress, 0) * 140px), 0) rotate(calc(-8deg + var(--hero-progress, 0) * 13deg)); filter: drop-shadow(0 30px 45px rgba(0,0,0,.27)); opacity: calc(.94 - var(--hero-progress, 0) * .5); }
.hero-orbit { position: absolute; z-index: 3; right: 17%; top: 24%; width: clamp(140px, 24vw, 360px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; animation: orbit-spin 20s linear infinite; }
.hero-orbit::before { content: ""; position: absolute; left: 50%; top: -7px; width: 14px; height: 14px; background: var(--yellow); border-radius: 50%; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.curtain { position: absolute; z-index: 3; top: 0; bottom: 0; width: 14%; background: linear-gradient(90deg, #7e0f11, #b51f25 45%, #661010); box-shadow: inset -20px 0 36px rgba(0,0,0,.25); }
.curtain--left { left: 0; transform: translateX(calc(var(--hero-progress, 0) * -105%)); transform-origin: left; }
.curtain--right { right: 0; transform: translateX(calc(var(--hero-progress, 0) * 105%)); transform-origin: right; scale: -1 1; }

/* Marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper-2); }
.marquee-track { display: flex; width: max-content; animation: marquee 25s linear infinite; }
.marquee-group { display: flex; align-items: center; }
.marquee-item { display: flex; align-items: center; gap: 22px; padding: 19px 22px; font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.85rem); font-weight: 650; white-space: nowrap; }
.marquee-item::after { content: "✦"; color: var(--orange); font-size: .8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Intro story */
.story-grid { display: grid; grid-template-columns: minmax(280px, .74fr) minmax(320px, 1fr); gap: clamp(50px, 9vw, 150px); align-items: center; }
.story-media { position: relative; min-height: 650px; }
.story-frame { position: absolute; inset: 5% 8% 5% 0; overflow: hidden; border-radius: 42% 42% 28px 28px; box-shadow: var(--shadow-lg); }
.story-frame img { width: 100%; height: 100%; object-fit: cover; }
.story-illustration { position: absolute; width: 54%; right: -8%; bottom: -8%; filter: drop-shadow(0 20px 26px rgba(0,0,0,.14)); transform: rotate(4deg); }
.story-stamp { position: absolute; left: -4%; top: 12%; width: 135px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); box-shadow: var(--shadow-sm); animation: orbit-spin 18s linear infinite; }
.story-stamp svg { width: 58px; animation: orbit-spin 18s linear infinite reverse; }
.story-copy h2 { font-size: clamp(3.5rem, 7vw, 7rem); max-width: 10ch; }
.story-copy .lead { margin-top: 32px; }
.quote-block { margin-top: 46px; padding: 30px 0 0 30px; border-left: 2px solid var(--orange); }
.quote-block blockquote { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 3.6rem); line-height: 1.05; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.stat { min-height: 230px; padding: 42px 28px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-value { font-family: var(--display); font-size: clamp(3rem, 5vw, 5.7rem); font-weight: 700; letter-spacing: -.07em; }
.stat-label { max-width: 16ch; color: var(--ink-soft); font-size: .94rem; }

/* Programs horizontal experience */
.program-experience { position: relative; height: auto; background: var(--ink); color: #fff; }
.program-pin { position: relative; top: auto; height: auto; min-height: 0; overflow: visible; display: block; }
.program-top { width: var(--container); margin: 0 auto; padding-top: clamp(90px, 10vh, 130px); display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.program-top h2 { max-width: 10ch; font-size: clamp(3.5rem, 7vw, 7.2rem); }
.program-progress { width: min(320px, 30vw); }
.program-progress-labels { display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.program-progress-bar { height: 2px; margin-top: 12px; background: rgba(255,255,255,.18); }
.program-progress-bar span { display: block; width: calc(var(--program-progress, 0) * 100%); height: 100%; background: var(--orange); }
.program-track-wrap { flex: 1; display: flex; align-items: center; }
.program-track { display: flex; width: max-content; gap: 28px; padding: 20px max(32px, calc((100vw - min(1380px, calc(100vw - 64px))) / 2)); transform: translate3d(calc(var(--program-shift, 0px) * -1), 0, 0); will-change: transform; }
.program-card { position: relative; width: min(66vw, 820px); height: min(54vh, 500px); min-height: 390px; display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; border-radius: 34px; background: var(--card-accent, var(--orange)); color: var(--ink); box-shadow: 0 34px 90px rgba(0,0,0,.25); }
.program-card-media { overflow: hidden; }
.program-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease), filter .35s ease; }
.program-card:hover .program-card-media img { transform: scale(1.06); filter: saturate(1.08); }
.program-card-copy { padding: clamp(28px, 4vw, 55px); display: flex; flex-direction: column; justify-content: space-between; }
.program-card-index { font-family: var(--display); font-size: .8rem; font-weight: 750; letter-spacing: .1em; }
.program-card h3 { max-width: 9ch; font-size: clamp(2.5rem, 4.4vw, 5rem); }
.program-card p { margin-top: 18px; max-width: 34ch; font-size: .96rem; }
.program-card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill { display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border: 1px solid rgba(24,21,16,.25); border-radius: 999px; font-size: .74rem; font-weight: 700; }
.program-card-arrow { position: absolute; right: 24px; bottom: 22px; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.8); transition: transform .4s var(--ease), background .3s; }
.program-card:hover .program-card-arrow { transform: rotate(-35deg) scale(1.08); background: #fff; }

/* Recommender */
.recommender { border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.recommender-head { padding: clamp(34px, 6vw, 76px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; background: var(--yellow); }
.recommender-head h2 { font-size: clamp(3rem, 6vw, 6.5rem); max-width: 8ch; }
.recommender-head p { align-self: end; max-width: 52ch; font-size: 1.15rem; }
.recommender-body { display: grid; grid-template-columns: 1fr .9fr; min-height: 490px; }
.recommender-form { padding: clamp(34px, 5vw, 68px); }
.choice-group + .choice-group { margin-top: 33px; }
.choice-group legend { margin-bottom: 13px; font-family: var(--display); font-size: 1.05rem; font-weight: 700; }
.choice-list { display: flex; flex-wrap: wrap; gap: 9px; }
.choice-chip input { position: absolute; opacity: 0; pointer-events: none; }
.choice-chip span { display: inline-flex; min-height: 44px; align-items: center; padding: 0 15px; border: 1px solid var(--line-strong); border-radius: 999px; cursor: pointer; font-size: .88rem; font-weight: 650; transition: .25s ease; }
.choice-chip span:hover { transform: translateY(-2px); border-color: var(--ink); }
.choice-chip input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.recommender-result { position: relative; padding: clamp(34px, 5vw, 68px); display: flex; flex-direction: column; justify-content: center; background: var(--ink); color: #fff; overflow: hidden; }
.recommender-result::before { content: ""; position: absolute; width: 360px; aspect-ratio: 1; right: -120px; top: -120px; border: 70px solid rgba(255,255,255,.05); border-radius: 50%; }
.recommender-result small { color: rgba(255,255,255,.58); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.recommender-result h3 { margin-top: 18px; font-size: clamp(2.6rem, 5vw, 5rem); }
.recommender-result p { margin: 22px 0 32px; max-width: 40ch; color: rgba(255,255,255,.72); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { position: relative; min-height: 440px; padding: clamp(28px, 4vw, 54px); border: 1px solid var(--line); border-radius: 30px; background: rgba(255,255,255,.48); overflow: hidden; transition: transform .5s var(--ease), background .4s, box-shadow .5s; }
.value-card:hover { transform: translateY(-10px); background: #fff; box-shadow: var(--shadow-lg); }
.value-icon { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); transition: transform .5s var(--ease); }
.value-card:nth-child(2) .value-icon { background: var(--mint); }
.value-card:nth-child(3) .value-icon { background: var(--blue); }
.value-card:hover .value-icon { transform: rotate(-10deg) scale(1.08); }
.value-icon svg { width: 33px; height: 33px; }
.value-card h3 { margin-top: 74px; max-width: 11ch; font-size: clamp(2.1rem, 3.2vw, 3.6rem); }
.value-card p { margin-top: 22px; max-width: 40ch; color: var(--ink-soft); }
.value-number { position: absolute; right: 26px; top: 25px; color: rgba(24,21,16,.25); font-family: var(--display); font-size: .82rem; }

/* Event feature */
.event-feature { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 680px; border-radius: var(--radius-lg); overflow: hidden; background: var(--orange); color: var(--ink); }
.event-feature-media { position: relative; min-height: 580px; overflow: hidden; }
.event-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.event-feature:hover img { transform: scale(1.04); }
.event-feature-badge { position: absolute; top: 28px; left: 28px; padding: 10px 14px; border-radius: 999px; background: #fff; font-size: .75rem; font-weight: 750; text-transform: uppercase; letter-spacing: .07em; }
.event-feature-copy { padding: clamp(38px, 6vw, 88px); display: flex; flex-direction: column; justify-content: space-between; }
.event-feature h2 { max-width: 8ch; font-size: clamp(3.5rem, 7vw, 7.5rem); }
.event-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.event-meta span { padding: 9px 12px; border: 1px solid rgba(24,21,16,.28); border-radius: 999px; font-size: .78rem; font-weight: 700; }
.event-feature p { max-width: 44ch; font-size: 1.05rem; }

/* Team preview */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { position: relative; min-height: 580px; overflow: hidden; border-radius: 30px; background: #ddd; }
.team-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78); transition: transform .9s var(--ease), filter .6s; }
.team-card:hover img { transform: scale(1.055); filter: saturate(1); }
.team-card-overlay { position: absolute; inset: auto 0 0; padding: 80px 28px 30px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.86)); }
.team-card h3 { font-size: clamp(2rem, 3.1vw, 3.3rem); }
.team-card p { margin-top: 8px; color: rgba(255,255,255,.72); font-size: .86rem; }
.team-card-plus { position: absolute; right: 24px; top: 24px; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--ink); transition: transform .4s var(--ease); }
.team-card:hover .team-card-plus { transform: rotate(90deg); }

/* Testimonials/callout */
.callout { position: relative; min-height: 560px; display: grid; place-items: center; overflow: hidden; text-align: center; border-radius: var(--radius-lg); background: var(--violet); color: #fff; }
.callout::before, .callout::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.callout::before { width: 40vw; aspect-ratio: 1; left: -18vw; top: -12vw; }
.callout::after { width: 32vw; aspect-ratio: 1; right: -13vw; bottom: -14vw; }
.callout-inner { position: relative; z-index: 2; max-width: 940px; padding: 70px 30px; }
.callout h2 { font-size: clamp(3.6rem, 8vw, 8.4rem); }
.callout h2 em { font-family: var(--serif); font-weight: 400; color: var(--yellow); }
.callout p { max-width: 58ch; margin: 30px auto 36px; color: rgba(255,255,255,.75); font-size: 1.12rem; }
.callout .btn { margin: 5px; }

/* Inner page hero */
.page-hero { position: relative; padding: clamp(110px, 14vw, 200px) 0 clamp(80px, 10vw, 140px); overflow: hidden; }
.page-hero--media { min-height: 80vh; display: flex; align-items: flex-end; color: #fff; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(16,12,9,.86), rgba(16,12,9,.22)); }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 11ch; font-size: clamp(4.2rem, 10vw, 10.5rem); }
.page-hero h1 em { font-family: var(--serif); font-weight: 400; color: var(--orange); }
.page-hero .lead { max-width: 58ch; margin-top: 32px; font-size: clamp(1.15rem, 1.8vw, 1.5rem); }
.page-hero--media .lead { color: rgba(255,255,255,.76); }
.page-hero-art { position: absolute; z-index: 1; width: clamp(300px, 41vw, 640px); right: -5vw; bottom: -12%; opacity: .93; transform: rotate(-7deg); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; font-size: .82rem; font-weight: 650; }
.breadcrumbs a { opacity: .62; }
.breadcrumbs span::before { content: "/"; margin-right: 8px; opacity: .35; }

/* Course catalog */
.catalog-tools { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { min-height: 42px; padding: 0 15px; border: 1px solid var(--line-strong); border-radius: 999px; background: transparent; cursor: pointer; font-size: .84rem; font-weight: 700; transition: .25s; }
.filter-btn:hover, .filter-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.catalog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.catalog-card { position: relative; min-height: 600px; overflow: hidden; border-radius: 32px; background: var(--paper-2); border: 1px solid var(--line); }
.catalog-media { height: 54%; min-height: 320px; overflow: hidden; }
.catalog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.catalog-card:hover .catalog-media img { transform: scale(1.05); }
.catalog-content { padding: 32px; }
.catalog-content h2 { max-width: 10ch; font-size: clamp(2.5rem, 4vw, 4.6rem); }
.catalog-content p { margin-top: 16px; max-width: 48ch; color: var(--ink-soft); }
.catalog-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.catalog-card .status { position: absolute; right: 20px; top: 20px; z-index: 2; padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); font-size: .74rem; font-weight: 750; }

/* Timetable */
.schedule-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 26px; background: var(--paper-2); }
.schedule { width: 100%; border-collapse: collapse; min-width: 820px; }
.schedule th { padding: 20px 22px; text-align: left; background: var(--ink); color: #fff; font-family: var(--display); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.schedule td { padding: 24px 22px; border-top: 1px solid var(--line); vertical-align: top; }
.schedule tr { transition: background .25s; }
.schedule tbody tr:hover { background: rgba(255,217,107,.18); }
.schedule strong { font-family: var(--display); font-size: 1.06rem; }
.schedule small { display: block; margin-top: 4px; color: var(--ink-soft); }

/* Locations */
.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.location-card { position: relative; min-height: 580px; overflow: hidden; border-radius: 32px; color: #fff; }
.location-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.location-card:hover img { transform: scale(1.05); }
.location-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 25%, rgba(0,0,0,.88)); }
.location-content { position: absolute; z-index: 2; inset: auto 0 0; padding: 36px; }
.location-content h3 { font-size: clamp(2.4rem, 4.5vw, 5rem); }
.location-content address { margin: 13px 0; color: rgba(255,255,255,.78); }

/* Formation detail */
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(50px, 8vw, 120px); align-items: start; }
.detail-copy h2 { margin-top: 65px; font-size: clamp(2.5rem, 5vw, 5.4rem); }
.detail-copy h2:first-child { margin-top: 0; }
.detail-copy .lead { margin-top: 24px; }
.detail-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.detail-list li { padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.4); font-weight: 650; }
.detail-list li::before { content: "✦"; margin-right: 10px; color: var(--orange); }
.detail-sidebar { position: static; top: auto; padding: 30px; border-radius: 28px; background: var(--ink); color: #fff; }
.detail-sidebar h3 { font-size: 2rem; }
.detail-sidebar p { margin-top: 16px; color: rgba(255,255,255,.66); }
.detail-sidebar .btn { width: 100%; margin-top: 20px; }
.detail-sidebar dl { margin: 28px 0 0; }
.detail-sidebar dl div { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.14); }
.detail-sidebar dt { color: rgba(255,255,255,.5); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.detail-sidebar dd { margin: 6px 0 0; }

/* Team detail page */
.team-list { display: grid; gap: 90px; }
.team-person { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(320px, 1fr); gap: clamp(44px, 8vw, 110px); align-items: center; }
.team-person:nth-child(even) .team-person-media { order: 2; }
.team-person-media { min-height: 650px; overflow: hidden; border-radius: 44% 44% 28px 28px; background: #ddd; }
.team-person-media img { width: 100%; height: 100%; object-fit: cover; }
.team-person h2 { max-width: 9ch; font-size: clamp(3.6rem, 7vw, 7.4rem); }
.team-role { display: block; margin: 18px 0 28px; color: var(--orange-deep); font-weight: 750; }
.specialties { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.specialties span { padding: 9px 13px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: .78rem; font-weight: 700; }

/* Agenda */
.agenda-list { border-top: 1px solid var(--line); }
.agenda-item { display: grid; grid-template-columns: 160px minmax(260px, 1fr) 240px 54px; gap: 30px; align-items: center; padding: 32px 0; border-bottom: 1px solid var(--line); transition: padding .35s var(--ease), background .3s; }
.agenda-item:hover { padding-inline: 22px; background: rgba(255,255,255,.55); }
.agenda-date { font-family: var(--display); font-size: .95rem; font-weight: 750; }
.agenda-main h2 { font-size: clamp(2rem, 3vw, 3.2rem); }
.agenda-main p { margin-top: 9px; color: var(--ink-soft); max-width: 62ch; }
.agenda-place { color: var(--ink-soft); font-size: .88rem; }
.agenda-arrow { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; transition: .3s var(--ease); }
.agenda-item:hover .agenda-arrow { background: var(--ink); color: #fff; transform: rotate(-35deg); }

/* Gallery */
.gallery-grid { columns: 3 300px; column-gap: 18px; }
.gallery-item { position: relative; display: block; margin: 0 0 18px; overflow: hidden; border-radius: 24px; break-inside: avoid; cursor: pointer; background: #ddd; }
.gallery-item img { width: 100%; transition: transform .8s var(--ease), filter .5s; }
.gallery-item:hover img { transform: scale(1.045); filter: brightness(.86); }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 48px 22px 20px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.8)); transform: translateY(20%); opacity: 0; transition: .45s var(--ease); }
.gallery-item:hover .gallery-caption { transform: none; opacity: 1; }
.gallery-caption strong { font-family: var(--display); }
.lightbox { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 30px; background: rgba(10,8,6,.93); opacity: 0; visibility: hidden; transition: .4s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: min(1180px, 92vw); max-height: 90vh; margin: 0; }
.lightbox img { max-height: 78vh; width: auto; margin: auto; border-radius: 16px; }
.lightbox figcaption { margin-top: 15px; color: rgba(255,255,255,.7); text-align: center; }
.lightbox-close { position: absolute; right: 26px; top: 26px; width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; font-size: 1.6rem; }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--paper-2); transition: transform .45s var(--ease), box-shadow .45s; }
.news-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); }
.news-card-media { aspect-ratio: 1.4; overflow: hidden; }
.news-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.news-card:hover img { transform: scale(1.05); }
.news-card-body { padding: 28px; }
.news-card-meta { display: flex; gap: 10px; color: var(--ink-soft); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.news-card h2 { margin-top: 18px; font-size: clamp(2rem, 3vw, 3rem); }
.news-card p { margin-top: 16px; color: var(--ink-soft); }
.news-article { width: min(840px, calc(100vw - 40px)); margin: auto; }
.news-article h1 { font-size: clamp(3.7rem, 8vw, 8rem); }
.news-article .article-meta { margin: 25px 0; color: var(--ink-soft); }
.news-article-image { width: var(--container); max-height: 75vh; margin: 55px 50%; transform: translateX(-50%); overflow: hidden; border-radius: 32px; }
.news-article-image img { width: 100%; height: 100%; object-fit: cover; }
.news-article-body { font-size: clamp(1.1rem, 1.5vw, 1.25rem); line-height: 1.75; }

/* Forms */
.form-shell { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .6fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-2); box-shadow: var(--shadow-lg); }
.form-main { padding: clamp(34px, 6vw, 78px); }
.form-aside { position: relative; padding: clamp(34px, 5vw, 62px); background: var(--ink); color: #fff; overflow: hidden; }
.form-aside::after { content: ""; position: absolute; width: 340px; aspect-ratio: 1; right: -180px; bottom: -160px; border: 65px solid rgba(255,255,255,.05); border-radius: 50%; }
.form-aside h2 { font-size: clamp(2.4rem, 4.3vw, 4.5rem); }
.form-aside p { margin-top: 22px; color: rgba(255,255,255,.67); }
.form-aside ul { margin-top: 34px; }
.form-aside li { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.14); }
.form-aside li::before { content: "✓"; margin-right: 10px; color: var(--yellow); }
.form-progress { display: flex; gap: 8px; margin-bottom: 42px; }
.form-progress span { height: 4px; flex: 1; border-radius: 4px; background: var(--line); transition: background .3s; }
.form-progress span.is-active { background: var(--orange); }
.form-step { display: none; animation: form-step-in .5s var(--ease); }
.form-step.is-active { display: block; }
@keyframes form-step-in { from { opacity: 0; transform: translateX(15px); } to { opacity: 1; transform: none; } }
.form-step h2 { font-size: clamp(2.6rem, 5vw, 5rem); }
.form-step > p { margin: 15px 0 34px; color: var(--ink-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label, .form-label { font-size: .82rem; font-weight: 750; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; min-height: 54px; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 15px; background: rgba(255,255,255,.65); color: var(--ink); outline: none; transition: border-color .25s, box-shadow .25s, background .25s;
}
.form-field textarea { min-height: 145px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,119,71,.12); background: #fff; }
.form-field [aria-invalid="true"] { border-color: #c53232; }
.field-error { min-height: 17px; color: #b22727; font-size: .75rem; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 36px; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: .82rem; color: var(--ink-soft); }
.checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--orange); }
.honeypot { position: absolute !important; left: -9999px !important; }
.success-panel { padding: 50px 30px; text-align: center; }
.success-icon { width: 84px; height: 84px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; background: var(--mint); font-size: 2rem; }
.success-panel h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.success-panel p { max-width: 50ch; margin: 18px auto 28px; color: var(--ink-soft); }

/* FAQ */
.faq-list { max-width: 1000px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; min-height: 92px; display: grid; grid-template-columns: 1fr 48px; align-items: center; gap: 20px; padding: 20px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-question span:first-child { font-family: var(--display); font-size: clamp(1.35rem, 2.3vw, 2.2rem); font-weight: 650; letter-spacing: -.035em; }
.faq-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; transition: transform .4s var(--ease), background .3s; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--orange); border-color: var(--orange); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 70ch; padding: 0 70px 30px 0; color: var(--ink-soft); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(340px, 1fr); gap: clamp(50px, 8vw, 110px); }
.contact-info h2 { font-size: clamp(3.2rem, 6vw, 6rem); }
.contact-info > p { margin: 28px 0 38px; color: var(--ink-soft); }
.contact-line { display: block; padding: 21px 0; border-top: 1px solid var(--line); }
.contact-line small { display: block; margin-bottom: 5px; color: var(--ink-soft); font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.contact-line strong { font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.75rem); }
.contact-card { padding: clamp(32px, 5vw, 62px); border-radius: 32px; background: var(--paper-2); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }

/* Legal */
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); gap: 80px; align-items: start; }
.legal-nav { position: static; top: auto; }
.legal-nav a { display: block; padding: 10px 0; color: var(--ink-soft); }
.legal-content section + section { margin-top: 65px; }
.legal-content h2 { margin-bottom: 20px; font-size: clamp(2.3rem, 4vw, 4rem); }
.legal-content p + p { margin-top: 14px; }
.legal-placeholder { display: inline-block; padding: 3px 8px; border-radius: 6px; background: #fff2b6; font-weight: 700; }

/* Footer */
.site-footer { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.footer-main { width: var(--container); margin: auto; padding: clamp(80px, 10vw, 140px) 0 46px; }
.footer-top { display: grid; grid-template-columns: minmax(320px, 1.1fr) minmax(300px, .9fr); gap: 70px; align-items: end; }
.footer-claim h2 { max-width: 10ch; font-size: clamp(4rem, 8.5vw, 9rem); }
.footer-claim h2 em { color: var(--orange); font-family: var(--serif); font-weight: 400; }
.footer-newsletter { max-width: 500px; justify-self: end; }
.footer-newsletter h3 { font-size: 1.7rem; }
.footer-newsletter p { margin: 14px 0 22px; color: rgba(255,255,255,.6); }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid rgba(255,255,255,.35); }
.newsletter-form input { min-width: 0; padding: 15px 0; border: 0; background: transparent; color: #fff; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form button { width: 50px; border: 0; background: transparent; color: #fff; cursor: pointer; font-size: 1.3rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 40px; margin-top: 90px; padding-top: 44px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-brand img { width: 60px; filter: invert(1); }
.footer-brand p { margin-top: 22px; max-width: 32ch; color: rgba(255,255,255,.57); }
.footer-col h3 { margin-bottom: 18px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a, .footer-col address { display: block; padding: 5px 0; color: rgba(255,255,255,.64); transition: color .25s, transform .25s; }
.footer-col a:hover { color: #fff; transform: translateX(4px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.45); font-size: .75rem; }
.footer-shape { position: absolute; width: 430px; right: -90px; top: 24px; opacity: .08; transform: rotate(-12deg); filter: invert(1); }

/* Floating action */
.floating-book { position: fixed; right: 18px; bottom: 20px; z-index: 450; display: inline-flex; align-items: center; gap: 11px; min-height: 50px; padding: 0 18px; border-radius: 999px; background: var(--orange); box-shadow: 0 16px 35px rgba(70,32,15,.24); font-family: var(--display); font-weight: 750; transition: transform .35s var(--ease); }
.floating-book:hover { transform: translateY(-5px); }

/* Toast */
.toast { position: fixed; z-index: 2000; right: 24px; top: 24px; max-width: 390px; padding: 16px 18px; border-radius: 16px; background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); transform: translateY(-20px); opacity: 0; visibility: hidden; transition: .35s var(--ease); }
.toast.is-visible { transform: none; opacity: 1; visibility: visible; }
.toast.is-error { background: #9f2525; }

/* Reveal / motion */
.reveal { opacity: 0; transform: translateY(42px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal[data-reveal="left"] { transform: translateX(-50px); }
.reveal[data-reveal="right"] { transform: translateX(50px); }
.reveal.is-visible { opacity: 1; transform: none; }
.word-reveal .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word-reveal .word span { display: inline-block; transform: translateY(110%); transition: transform .85s var(--ease); }
.word-reveal.is-visible .word span { transform: none; transition-delay: calc(var(--word-index) * 45ms); }
[data-parallax] { will-change: auto; }

/* Responsive */
@media (max-width: 1160px) {
  :root { --container: min(100% - 40px, 1080px); }
  .primary-nav { display: none; position: fixed; inset: calc(36px + 72px) 12px 12px; z-index: 301; padding: 26px; border: 1px solid var(--line); border-radius: 28px; background: rgba(251,247,238,.97); box-shadow: var(--shadow-lg); backdrop-filter: blur(18px); }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link { min-height: 57px; border-radius: 14px; font-size: 1.15rem; }
  .nav-link::after { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: grid; }
  .header-actions .btn { display: none; }
  .program-card { width: min(78vw, 760px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --container: calc(100vw - 32px); --header-h: 72px; }
  .section-head, .story-grid, .recommender-head, .recommender-body, .event-feature, .form-shell, .contact-grid, .footer-top, .detail-layout, .legal-layout { grid-template-columns: 1fr; }
  .section-head { align-items: start; gap: 22px; }
  .section-title { font-size: clamp(3.1rem, 12vw, 6rem); }
  .site-announcement { min-height: 34px; padding-inline: 20px; }
  .brand-text small { display: none; }
  .hero-sticky { min-height: 660px; }
  .hero-content { padding-bottom: 8vh; }
  .hero-title { font-size: clamp(4.3rem, 15vw, 8rem); }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-scroll-note { display: none; }
  .hero-mask { right: -4vw; top: 18vh; width: 38vw; }
  .story-media { min-height: 550px; }
  .story-frame { inset: 3% 4% 3% 0; }
  .program-experience { height: auto; padding: 100px 0; }
  .program-pin { position: static; height: auto; min-height: auto; overflow: visible; }
  .program-top { padding-top: 0; }
  .program-progress { display: none; }
  .program-track-wrap { display: block; }
  .program-track { display: grid; width: var(--container); margin: 55px auto 0; padding: 0; transform: none !important; }
  .program-card { width: 100%; height: auto; min-height: 540px; }
  .recommender-body { min-height: auto; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 360px; }
  .team-card { min-height: 690px; }
  .event-feature-media { min-height: 500px; }
  .catalog-grid, .locations-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .team-person, .team-person:nth-child(even) { grid-template-columns: 1fr; }
  .team-person:nth-child(even) .team-person-media { order: 0; }
  .team-person-media { min-height: 570px; }
  .agenda-item { grid-template-columns: 130px 1fr 48px; }
  .agenda-place { grid-column: 2; }
  .agenda-arrow { grid-column: 3; grid-row: 1 / 3; }
  .footer-newsletter { justify-self: stretch; max-width: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px 18px; }
}

@media (max-width: 620px) {
  :root { --container: calc(100vw - 24px); }
  body { font-size: .97rem; }
  .section { padding: 78px 0; }
  .site-announcement { font-size: .69rem; }
  .site-header, .site-header.is-scrolled { height: 66px; }
  .brand-mark { width: 36px; height: 36px; }
  .menu-toggle { width: 43px; height: 43px; }
  .primary-nav { inset: 104px 8px 8px; }
  .hero-scroll { min-height: 118vh; }
  .hero-sticky { min-height: 630px; }
  .hero-media { clip-path: none; }
  .hero-media::after { background: linear-gradient(0deg, rgba(12,8,5,.92), rgba(12,8,5,.2) 70%); }
  .hero-content { padding: 120px 0 40px; }
  .hero-title { font-size: clamp(3.8rem, 17vw, 6rem); }
  .hero-mask, .hero-orbit { display: none; }
  .hero-actions .btn { width: 100%; }
  .hero-lead { font-size: .98rem; }
  .story-media { min-height: 440px; }
  .story-stamp { width: 90px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { min-height: 165px; border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .program-top { display: block; }
  .program-card { grid-template-columns: 1fr; min-height: auto; }
  .program-card-media { min-height: 270px; }
  .program-card-copy { min-height: 340px; }
  .recommender-head, .recommender-form, .recommender-result { padding: 28px; }
  .event-feature-media { min-height: 380px; }
  .event-feature-copy { padding: 32px 26px; min-height: 500px; }
  .team-card { min-height: 540px; }
  .page-hero { padding: 90px 0 70px; }
  .page-hero h1 { font-size: clamp(3.8rem, 15.5vw, 6.7rem); }
  .catalog-tools { align-items: flex-start; flex-direction: column; }
  .catalog-card { min-height: 540px; }
  .catalog-media { min-height: 270px; }
  .location-card { min-height: 480px; }
  .detail-list, .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .team-person-media { min-height: 470px; }
  .agenda-item { grid-template-columns: 1fr 48px; gap: 12px; padding: 24px 0; }
  .agenda-date, .agenda-main, .agenda-place { grid-column: 1; }
  .agenda-arrow { grid-column: 2; grid-row: 1 / 4; }
  .gallery-grid { columns: 1; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card:last-child { grid-column: auto; }
  .form-main, .form-aside, .contact-card { padding: 28px 22px; }
  .form-actions { align-items: stretch; flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-book { right: 12px; bottom: 12px; width: 50px; padding: 0; justify-content: center; }
  .floating-book span { display: none; }
  .access-toggle { left: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
body.reduce-motion *, body.reduce-motion *::before, body.reduce-motion *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
body.reduce-motion .reveal { opacity: 1; transform: none; }

@media print {
  .site-announcement, .site-header, .site-footer, .floating-book, .access-toggle, .access-panel, .cursor-dot, .cursor-ring, .site-loader { display: none !important; }
  body { background: #fff; }
  .section { padding: 30px 0; }
}
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

/* =========================================================
   NATIVE WHEEL SCROLL MODE
   The browser owns vertical scrolling completely.
   No inertia layer, no scroll snapping, no pinned scenes,
   no parallax, no scroll-triggered reveal and no JS cursor loop.
   ========================================================= */
html {
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
  overscroll-behavior-y: auto !important;
}

body {
  overflow-y: visible !important;
  overscroll-behavior-y: auto !important;
  scroll-snap-type: none !important;
}

/* Keep overflow locking only for an explicitly opened menu/lightbox. */
body.no-scroll { overflow: hidden !important; }

/* No loader and no continuously animated replacement cursor. */
.site-loader,
.cursor-dot,
.cursor-ring { display: none !important; }

/* The header is part of the document flow; it never pins or repaints a blur while scrolling. */
.site-header,
.site-header.is-scrolled {
  position: relative !important;
  top: auto !important;
  height: var(--header-h) !important;
  background: var(--paper) !important;
  border-bottom-color: var(--line) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: none !important;
}

/* Hero remains visually large but occupies one normal block in the page. */
.hero-scroll {
  min-height: 0 !important;
  height: auto !important;
  --hero-progress: 0 !important;
}
.hero-sticky {
  position: relative !important;
  top: auto !important;
  height: clamp(680px, calc(100svh - 36px), 880px) !important;
  min-height: 680px !important;
  overflow: hidden !important;
}
.hero-scroll-note { display: none !important; }

/* Programs are a normal grid, never a horizontal sequence controlled by vertical wheel input. */
.program-experience {
  height: auto !important;
  padding: clamp(90px, 10vw, 150px) 0 !important;
}
.program-pin {
  position: relative !important;
  top: auto !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  display: block !important;
}
.program-top {
  padding-top: 0 !important;
  align-items: end;
}
.program-progress { display: none !important; }
.program-track-wrap {
  display: block !important;
  margin-top: clamp(48px, 6vw, 82px);
}
.program-track {
  width: var(--container) !important;
  margin-inline: auto !important;
  padding: 0 !important;
  transform: none !important;
  translate: none !important;
  will-change: auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
}
.program-card {
  width: 100% !important;
  height: auto !important;
  min-height: 430px !important;
}

/* Other formerly sticky blocks now move with the page like normal content. */
.detail-sidebar,
.legal-nav {
  position: static !important;
  top: auto !important;
}

/* No animation is started merely because an element enters the viewport. */
.reveal,
.reveal[data-reveal="left"],
.reveal[data-reveal="right"],
.word-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.word-reveal .word span {
  transform: none !important;
  transition: none !important;
}
[data-parallax] {
  translate: none !important;
  will-change: auto !important;
}
.magnetic { translate: none !important; }

@media (max-width: 900px) {
  .hero-sticky {
    height: auto !important;
    min-height: 700px !important;
  }
  .program-track { grid-template-columns: 1fr !important; }
}

@media (max-width: 620px) {
  .hero-sticky { min-height: 650px !important; }
  .program-card { min-height: 0 !important; }
}

/* Keep decorative continuous motion from consuming frames while the wheel moves. */
.marquee-track,
.hero-orbit,
.hero-scroll-note span::after,
.story-stamp,
.story-stamp svg,
.hero-title .line > span {
  animation: none !important;
}
.marquee-track {
  width: 100% !important;
  transform: none !important;
}
.marquee-group {
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.marquee-group + .marquee-group { display: none !important; }

/* Explicitly keep the root viewport as a plain native scroller. */
html {
  overflow-x: hidden;
  overflow-y: auto !important;
}
