@charset "UTF-8";

:root {
  --bg: #03070d;
  --ink: #f7f3e8;
  --muted: rgba(247, 243, 232, 0.75);
  --soft: rgba(247, 243, 232, 0.52);
  --gold: #e5d9a7;
  --paper: rgba(247, 246, 241, 0.90);
  --paper-ink: #161b24;
  --frame-x: 60px;
  --frame-y: 60px;
  --frame-max: 1440px;
  --serif: "Utsukushi Mincho Local", "02UtsukushiMincho", "02うつくし明朝体", "Utsukushi Mincho", "うつくし明朝体", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --line: rgba(255,255,255,.22);
  --shadow: 0 34px 80px rgba(0,0,0,.55);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img, svg, picture, canvas { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

::selection { color: #0a1018; background: #f5edc7; }
:focus-visible { outline: 2px solid #fff7ce; outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 14px;
  top: 14px;
  padding: 10px 14px;
  color: #0c1118;
  background: #fff;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

main, .site-footer { position: relative; z-index: 2; }

.page-frame {
  width: min(100%, var(--frame-max));
  margin-inline: auto;
  padding: var(--frame-y) var(--frame-x);
}

.cinematic-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--bg);
}

/* Slightly overlap adjacent section fades so transitions do not feel overlong. */
.hero + .cinematic-section,
.cinematic-section + .cinematic-section,
.gallery + .section-seven,
.campaign + .site-footer {
  margin-top: -24px;
}

/* fixed ambience -------------------------------------------------------- */
.ambient {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: #02050a;
}
.ambient__layer {
  position: absolute;
  inset: -7%;
  opacity: 0;
  background-image: var(--ambient-image);
  background-size: cover;
  background-position: center;
  filter: saturate(.9) contrast(1.04) brightness(.7) blur(6px);
  transform: scale(1.12);
  transition: opacity 1.2s ease, transform 6s ease;
  will-change: opacity, transform;
}
.ambient__layer.is-active { opacity: .9; transform: scale(1.055); }
.ambient__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(4,10,18,.08), rgba(2,5,10,.68) 78%),
    linear-gradient(180deg, rgba(2,6,12,.1), rgba(2,6,12,.68));
}
.ambient__grain, .hero__grain {
  position: absolute;
  inset: -120%;
  opacity: .08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  animation: grain .55s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate3d(0,0,0); }
  25% { transform: translate3d(1.5%,-1%,0); }
  50% { transform: translate3d(-1%,1.5%,0); }
  75% { transform: translate3d(.8%,.6%,0); }
  100% { transform: translate3d(-1.2%,-.8%,0); }
}

.scroll-progress {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: rgba(255,255,255,.06);
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fff8d3, #c6b47b);
  transform: scaleX(var(--scroll-progress,0));
  transform-origin: left;
}

/* generic layers -------------------------------------------------------- */
.section-art, .gallery__backdrop, .site-footer__art {
  position: absolute;
  z-index: -4;
  inset: 0;
  overflow: hidden;
}
.section-art img, .gallery__backdrop img, .site-footer__art img {
  width: 100%;
  height: calc(100% + 220px);
  min-height: 100%;
  object-fit: cover;
  transform: translate3d(0,var(--parallax-y,0px),0) scale(1.04);
  will-change: transform;
}
.section-overlay, .site-footer__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}
.section-overlay::after, .site-footer__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 22%, rgba(0,0,0,.32) 100%);
}

.section-en {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 20px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.76);
}
.section-title { position: relative; z-index: 3; }
.section-title--center { text-align: center; }
.section-title h2 {
  margin: 0;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: .08em;
  text-shadow: 0 2px 24px rgba(0,0,0,.8);
}

/* reveal ---------------------------------------------------------------- */
[data-reveal], [data-reveal-item] {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0,38px,0);
  transition:
    opacity 1s var(--ease) var(--reveal-delay,0ms),
    transform 1.1s var(--ease) var(--reveal-delay,0ms),
    filter 1s ease var(--reveal-delay,0ms);
  will-change: opacity, transform, filter;
}
[data-reveal].is-visible, [data-reveal-item].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0,0,0);
}
.no-js [data-reveal], .no-js [data-reveal-item] { opacity: 1; filter: none; transform: none; }

/* glowing round CTA ----------------------------------------------------- */
.glow-link {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 128px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #10151b;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .08em;
  text-align: center;
  background: transparent;
  text-shadow: 0 1px 7px rgba(255,255,255,.48);
  transition: transform .45s var(--ease);
}
.glow-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -16%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 48% 44%,
    rgba(255,255,239,.96) 0 18%,
    rgba(249,243,203,.88) 31%,
    rgba(226,216,159,.62) 46%,
    rgba(211,200,140,.28) 61%,
    rgba(225,211,149,.10) 72%,
    transparent 84%
  );
  filter: blur(5px);
  animation: breathe 3.6s ease-in-out infinite;
}
.glow-link::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -38%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,230,174,.22) 0 26%, rgba(222,207,145,.10) 48%, transparent 72%);
  filter: blur(14px);
  animation: halo-breathe 4.2s ease-in-out infinite;
}
.glow-link > span { position: relative; z-index: 2; }
.glow-link i {
  position: absolute;
  left: 50%;
  bottom: 27px;
  width: 11px;
  height: 11px;
  border-right: 1px solid #151a1f;
  border-bottom: 1px solid #151a1f;
  transform: translateX(-50%) rotate(45deg);
  z-index: 2;
}
.glow-link:hover { transform: scale(1.055); }
@keyframes breathe { 50% { transform: scale(1.055); opacity: .78; } }
@keyframes halo-breathe { 50% { transform: scale(1.08); opacity: .68; } }
.glow-link--center { margin: 80px auto 0; }

/* hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #071019;
}
.hero__layers { position: absolute; z-index: -5; inset: 0; overflow: hidden; }
.hero__image { position: absolute; inset: -7%; }
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 65%;
  filter: none;
  transform: translate3d(0,var(--parallax-y,0px),0) scale(1.045);
  will-change: transform;
}
.hero__image--echo {
  inset: -10%;
  opacity: .05;
  mix-blend-mode: screen;
  filter: blur(16px) saturate(1.3);
}
.hero__image--echo img { transform: translate3d(0,var(--parallax-y,0px),0) scale(1.13); }
.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,8,14,.04), transparent 48%, rgba(3,8,14,.03)),
    linear-gradient(180deg, transparent 0 58%, rgba(2,7,14,.24) 100%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px 20px rgba(0,0,0,.1);
  background: radial-gradient(circle at 50% 42%, transparent 48%, rgba(0,0,0,.08) 100%);
}
.hero__content {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__brand { width: min(522px,41.1vw); }
.hero__brand img {
  width: 128.6%;
  max-width: none;
  height: auto;
  margin-left: -13.56%;
  transform: translateY(-80px);
  filter: none;
}
.hero__footer-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero__dates { display: grid; gap: 3px; text-shadow: 0 3px 18px rgba(0,0,0,.92); }
.hero__dates p { margin: 0; display: flex; align-items: baseline; gap: 28px; }
.hero__dates span { width: 132px; font-family: Georgia,serif; font-size: clamp(22px,2.1vw,34px); letter-spacing: .03em; }
.hero__dates strong { font-family: Georgia,serif; font-weight: 400; font-size: clamp(25px,2.4vw,40px); letter-spacing: .01em; white-space: nowrap; }
.hero__dates small { margin-left: 5px; font-size: .42em; }
.glow-link--hero { flex: 0 0 auto; margin: 0 14px 12px 0; }

/* introduction ---------------------------------------------------------- */
.intro { min-height: 1280px; }
.section-art--intro img { object-position: 50% 50%; filter: saturate(.92) brightness(.78); }
.section-overlay--intro {
  background:
    linear-gradient(90deg, rgba(2,6,12,.56) 0 24%, rgba(2,6,12,.14) 54%, rgba(2,6,12,.54) 100%),
    linear-gradient(180deg, rgba(2,6,12,.34), transparent 24%, transparent 72%, rgba(2,6,12,.76));
}
.intro__content {
  min-height: 1040px;
  display: grid;
  align-content: center;
  justify-items: center;
}
.intro__statement {
  width: min(790px,64vw);
  margin-inline: auto;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.intro__statement h2 {
  margin: 0 0 38px;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.45;
  letter-spacing: .08em;
}
.intro__body { font-size: 24px; line-height: 2; letter-spacing: .04em; text-align: left; }
.intro__body p { margin: 0 0 18px; }
.intro__content .glow-link { margin-right: auto; margin-left: auto; }
.intro__filmstrip {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 0;
  width: 100%;
  margin-inline: 0;
}
.intro__filmstrip::before {
  content: "";
  position: absolute;
  inset: -26px 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(2,6,12,.78) 12%, rgba(2,6,12,.78) 88%, transparent);
  filter: blur(3px);
}
.intro__filmstrip-item {
  display: block;
  aspect-ratio: 1.65;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 34px rgba(0,0,0,.55);
}
.intro__filmstrip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filmstrip__sakuragaoka--a5-left {
  object-position: 13.33% 7%;
  transform: scale(2.5);
  transform-origin: 13.33% 7%;
}
.filmstrip__sakuragaoka--a6 {
  object-position: 73% 61%;
  transform: scale(2.35);
  transform-origin: 73% 61%;
}
.filmstrip__ceiling--b1 {
  object-position: 18% 0%;
  transform: scale(1.6);
  transform-origin: 18% 0%;
}
.filmstrip__ceiling--b7 {
  object-position: 48% 84%;
  transform: scale(1.55);
  transform-origin: 48% 84%;
}

/* new works ------------------------------------------------------------- */
.new-works { min-height: 3000px; }
.section-art--works img { object-position: 50% 50%; filter: brightness(.68) saturate(.9); }
.section-overlay--works {
  background:
    linear-gradient(180deg, rgba(2,6,12,.72) 0%, rgba(2,6,12,.22) 12%, rgba(2,6,12,.22) 78%, rgba(2,6,12,.7) 100%),
    radial-gradient(circle at 50% 42%, rgba(5,12,20,.03), rgba(0,0,0,.4) 75%);
}
.new-works::before, .new-works::after {
  content: none;
  display: none;
  position: absolute;
  z-index: -1;
  width: 43vw;
  height: 35%;
  opacity: .44;
  background-size: cover;
  background-position: center;
  filter: saturate(.7) contrast(1.08);
}
.new-works::before { left: -12vw; top: 14%; background-image: url("../images/featured/sakuragaoka-16-256-night.webp"); }
.new-works::after { right: -13vw; top: 45%; background-image: url("../images/featured/ceiling-stars-night-cherry.webp"); }
.new-works__inner.page-frame { padding-top: 190px; padding-bottom: 100px; }
.work-column { width: min(860px,78vw); margin: 115px auto 0; display: grid; gap: 230px; }
.work-card { display: grid; gap: 34px; }
.work-card__image { aspect-ratio: 16/9; }
.work-card--second .work-card__image { width: min(620px,72%); aspect-ratio: 4/5; justify-self: center; }
.work-card__copy {
  width: 88%;
  margin: -4px auto 0;
  padding: 24px 0 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
  text-shadow: 0 3px 18px rgba(0,0,0,.92);
}
.work-card__copy h3 { margin: 0 0 16px; font-weight: 400; font-size: 24px; letter-spacing: .06em; }
.work-card__copy p { margin: 0; color: #fff; font-size: 16px; line-height: 1.8; letter-spacing: .04em; }
.art-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(255,255,255,.18);
  background: #060a10;
  box-shadow: var(--shadow);
}
.art-button img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .8s ease; }
.art-button:hover img { transform: scale(1.035); filter: brightness(1.06); }
/* event ----------------------------------------------------------------- */
.event { min-height: 940px; }
.section-art--event img { object-position: 50% 58%; filter: brightness(.72) saturate(.88); }
.section-overlay--event {
  background:
    radial-gradient(ellipse at 50% 48%, rgba(20,22,28,.04) 0 24%, rgba(1,4,9,.56) 74%),
    linear-gradient(180deg, rgba(2,6,12,.48), rgba(2,6,12,.1) 40%, rgba(2,6,12,.65));
}
.event__inner.page-frame { position: relative; z-index: 1; isolation: isolate; min-height: 940px; display: grid; place-content: start center; padding-top: 160px; text-align: center; }
.event__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(900px,82vw);
  height: 68%;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(2,7,13,.48), rgba(2,7,13,.22) 62%, transparent 82%);
  backdrop-filter: none;
}
.signing-panel {
  position: relative;
  width: min(980px,82vw);
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.signing-panel::before {
  content: none;
  position: absolute;
  top: -1px;
  left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(199,226,255,.82),transparent);
  box-shadow: 0 0 18px rgba(126,181,232,.48);
}
.signing-panel__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 34px;
  color: rgba(218,232,247,.86);
  font-family: Georgia,serif;
  font-size: 11px;
  letter-spacing: .2em;
}
.signing-panel__eyebrow::before,
.signing-panel__eyebrow::after {
  content: "";
  width: 54px;
  height: 1px;
  background: rgba(183,211,238,.34);
}
.signing-panel__eyebrow span {
  color: rgba(255,255,255,.62);
  font-family: var(--serif);
  letter-spacing: .12em;
}
.signing-panel--intro { width: min(900px,82vw); }
.signing-panel--intro .section-title { margin-top: 0; }
.event__lead { width: 100%; margin: 48px auto 0; text-align: left; }
.event__lead p { margin: 0; font-size: 24px; line-height: 2; letter-spacing: .05em; }
.event__lead small { display: block; margin-top: 30px; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; }

/* schedule -------------------------------------------------------------- */
.schedule { min-height: 1320px; background: #080b12; }
.section-art--schedule { opacity: 1; }
.section-art--schedule img { object-position: 50% 50%; filter: brightness(.76) saturate(.92); }
.schedule::before, .schedule::after {
  content: none;
  position: absolute;
  z-index: -3;
  top: 0;
  bottom: 0;
  width: 58%;
  background-size: cover;
  background-position: center;
  filter: brightness(.62) saturate(.82);
}
.schedule::before {
  left: 0;
  background-image: linear-gradient(90deg,rgba(1,4,9,.08),rgba(1,4,9,.8)), url("../images/web/artwork-02-orbital-tower-sunset.webp");
  clip-path: polygon(0 0,100% 0,74% 100%,0 100%);
}
.schedule::after {
  right: 0;
  background-image: linear-gradient(90deg,rgba(1,4,9,.78),rgba(1,4,9,.12)), url("../images/web/artwork-04-floating-ruins-day.webp");
  clip-path: polygon(26% 0,100% 0,100% 100%,0 100%);
}
.section-overlay--schedule { background: linear-gradient(180deg,rgba(2,6,12,.38),rgba(2,6,12,.04) 46%,rgba(2,6,12,.58)); }
.schedule__inner { min-height: 1320px; display: grid; align-content: center; }
.signing-panel--details { padding-bottom: 0; }
.schedule__heading {
  margin: 0 0 44px;
  text-align: center;
  font-size: 24px;
  letter-spacing: .1em;
  text-shadow: 0 2px 18px rgba(0,0,0,.95);
}
.schedule__dates { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; text-align: center; }
.schedule__dates article { padding: 24px 20px; text-shadow: 0 2px 18px rgba(0,0,0,.95); background: transparent; border: 0; }
.schedule__dates h3 { margin: 0 0 28px; font-family: var(--sans); font-size: 36px; font-weight: 400; letter-spacing: .08em; }
.schedule__dates p { margin: 13px 0; font-size: 32px; letter-spacing: .04em; }
.schedule__date,
.schedule__time { display: block; }
.schedule__notes {
  width: 100%;
  margin: 42px auto 0;
  padding: 0;
  text-align: left;
  color: #fff;
  font-size: 18px;
  line-height: 1.9;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 2px 20px rgba(0,0,0,.98);
}
.schedule__notes h3 { margin: 0 0 22px; color: #fff; font-size: 22px; font-weight: 400; letter-spacing: .08em; text-align: center; }
.schedule__notes p { margin: 0; }
.schedule__arrival {
  margin: 28px auto 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: .04em;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0,0,0,.96);
}
.schedule__arrival span { display: block; margin-bottom: 6px; }

/* profile --------------------------------------------------------------- */
.profile { min-height: 900px; }
.section-art--profile img { object-position: 50% 58%; filter: brightness(.74) saturate(.9); }
.section-overlay--profile {
  background:
    linear-gradient(90deg,rgba(1,4,9,.56),rgba(1,4,9,.12) 45%,rgba(1,4,9,.48)),
    linear-gradient(180deg,rgba(1,4,9,.52),rgba(1,4,9,.08) 35%,rgba(1,4,9,.62));
}
.profile__inner.page-frame { min-height: 900px; display: grid; align-content: center; padding-top: 100px; padding-bottom: 100px; }
.profile__roman { margin: 5px 0 0; font-family: Georgia,serif; font-size: 14px; letter-spacing: .09em; }
.profile__history {
  width: min(920px,78vw);
  margin: 64px auto 0;
  padding: 0;
  font-size: 16px;
  line-height: 30px;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-shadow: 0 2px 14px rgba(0,0,0,.82);
  backdrop-filter: none;
}
.profile__history div { display: grid; grid-template-columns: 190px 1fr; gap: 26px; padding: 6px 0; }
.profile__history dt { color: rgba(255,255,255,.68); }
.profile__history dd { margin: 0; }

/* gallery --------------------------------------------------------------- */
.gallery { min-height: 980px; background: #010306; }
.gallery__backdrop { opacity: .22; }
.gallery__backdrop img { object-position: 50% 60%; filter: brightness(.45) saturate(.7); }
.section-overlay--gallery { background: linear-gradient(180deg,#010306 0%,rgba(1,3,6,.72) 25%,rgba(1,3,6,.76) 75%,#010306 100%); }
.gallery__inner { min-height: 980px; display: grid; align-content: center; }
.gallery-viewport {
  width: 100vw;
  margin: 34px calc(50% - 50vw) 0;
  padding-block: 46px 42px;
  overflow-x: hidden;
  overflow-y: clip;
  overscroll-behavior: none;
  touch-action: pan-y;
  user-select: none;
  scrollbar-width: none;
  cursor: ew-resize;
  perspective: 1300px;
  perspective-origin: 50% 48%;
  scroll-behavior: auto;
}
.gallery-viewport.is-dragging { cursor: grabbing; }
.gallery-viewport.is-dragging .gallery-card {
  transition-duration: .08s;
}
.gallery-viewport::-webkit-scrollbar { display: none; }
.gallery-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0 var(--gallery-edge,0px) 22px;
  transform-style: preserve-3d;
}
.gallery-card {
  --coverflow-x: 0px;
  --coverflow-y: 0px;
  --coverflow-z: 0px;
  --coverflow-rotate: 0deg;
  --coverflow-scale: .84;
  flex: 0 0 228.32px;
  margin: 0;
  z-index: var(--coverflow-layer,1);
  opacity: var(--coverflow-opacity,.58);
  text-align: center;
  filter:
    brightness(var(--coverflow-brightness,.72))
    saturate(var(--coverflow-saturation,.78))
    blur(var(--coverflow-blur,0px));
  transform:
    translate3d(var(--coverflow-x),var(--coverflow-y),var(--coverflow-z))
    rotateY(var(--coverflow-rotate))
    scale(var(--coverflow-scale));
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: transform, filter, opacity;
  transition:
    filter .28s ease,
    opacity .28s ease,
    transform .22s var(--ease);
}
.gallery-card.is-current {
  z-index: 200;
  opacity: 1;
  filter: brightness(1) saturate(1) blur(0);
}
.gallery-card .art-button {
  position: relative;
  z-index: 2;
  aspect-ratio: .72;
  border: 0;
  box-shadow: 0 24px 58px rgba(0,0,0,.72);
  -webkit-tap-highlight-color: transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.gallery-card .art-button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--coverflow-sheen-opacity,.06);
  background:
    linear-gradient(115deg,transparent 14%,rgba(214,234,255,.22) 37%,transparent 58%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent 24%,transparent 76%,rgba(95,151,207,.1));
  transform: translateX(var(--coverflow-sheen-x,-20%));
  transition: opacity .35s ease, transform .5s var(--ease);
}
.gallery-card.is-current .art-button {
  box-shadow:
    0 30px 74px rgba(0,0,0,.78),
    0 0 34px rgba(100,161,220,.2);
}
.gallery-card img { -webkit-user-drag: none; user-select: none; }
@media (hover: hover) and (pointer: fine) {
  .gallery-card .art-button:hover img {
    transform: scale(1.06);
    filter: brightness(1.07) saturate(1.04);
  }
}
.gallery-card .art-button:focus-visible img {
  transform: scale(1.045);
  filter: brightness(1.06);
}
.gallery-card figcaption { margin-top: 15px; font-size: 13px; letter-spacing: .06em; color: rgba(255,255,255,.78); }
.gallery__status {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(560px,calc(100% - 120px));
  margin: 2px auto 0;
  color: rgba(215,232,248,.66);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .16em;
}
.gallery__counter { flex: 0 0 58px; }
.gallery__progress {
  position: relative;
  display: block;
  flex: 1;
  height: 1px;
  overflow: visible;
  background: rgba(176,205,232,.18);
}
.gallery__progress i {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg,rgba(127,181,232,.48),rgba(225,240,255,.9));
  box-shadow: 0 0 10px rgba(130,190,244,.46);
  transform: scaleX(var(--gallery-progress,0));
  transform-origin: left center;
  transition: transform .32s var(--ease);
}
.gallery__controls {
  display: grid;
  grid-template-columns: 46px minmax(0,1fr) 46px;
  align-items: center;
  gap: 14px;
  width: min(560px,calc(100% - 120px));
  margin: 24px auto 0;
}
.gallery__caption { margin: 0; text-align: center; font-size: 14px; letter-spacing: .08em; color: rgba(255,255,255,.9); }
.gallery__nav {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(204,224,244,.34);
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255,255,255,.9);
  background: rgba(7,14,23,.44);
  box-shadow: 0 0 22px rgba(116,161,205,.12);
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1;
  transition: color .24s ease, border-color .24s ease, background .24s ease, opacity .24s ease;
}
.gallery__nav:hover,
.gallery__nav:focus-visible {
  color: #fff;
  border-color: rgba(221,237,251,.68);
  background: rgba(25,43,61,.66);
  outline: none;
}
.gallery__nav:disabled {
  cursor: default;
  opacity: .22;
}

.visually-hidden {
  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;
}

/* section 7 shared background ------------------------------------------- */
.section-seven {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #02050a;
}
.section-seven__art,
.section-seven__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.section-seven__art {
  z-index: 0;
  overflow: hidden;
}
.section-seven__art img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(.78) saturate(.9);
}
.section-seven__overlay {
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(3,8,15,.06), rgba(1,4,9,.54) 74%),
    linear-gradient(180deg, rgba(1,4,9,.66), rgba(2,6,12,.16) 24%, rgba(2,6,12,.08) 70%, rgba(1,4,9,.7));
}
.section-seven > .cinematic-section,
.section-seven > .site-footer {
  position: relative;
  z-index: 2;
  background: transparent;
}

/* information ----------------------------------------------------------- */
.information {
  min-height: 1320px;
  background: transparent;
}
.section-art--information,
.section-overlay--information,
.section-art--campaign,
.section-overlay--campaign,
.site-footer__art,
.site-footer__overlay { display: none; }
.information__inner {
  min-height: 1320px;
  display: grid;
  align-content: start;
  padding-top: 140px;
  padding-bottom: 100px;
}
.paper-card {
  color: var(--paper-ink);
  background:
    linear-gradient(135deg,rgba(255,255,255,.93),rgba(235,238,239,.84)),
    repeating-linear-gradient(0deg,rgba(16,24,34,.04) 0 1px,transparent 1px 4px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow:
    0 0 0 1px rgba(191,207,255,.22),
    0 0 46px rgba(86,113,199,.34),
    0 24px 72px rgba(45,69,146,.34),
    0 42px 90px rgba(0,0,0,.38);
  backdrop-filter: blur(14px);
}
.venue-sheet {
  width: min(760px,72vw);
  margin: 72px auto 0;
  padding: 62px 70px;
}
.venue-sheet__block + .venue-sheet__block { margin-top: 58px; padding-top: 50px; border-top: 1px solid rgba(25,31,39,.18); }
.venue-sheet__heading { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; }
.venue-sheet__heading p { margin: 0 0 8px; font-family: Georgia,serif; font-size: 14px; }
.venue-sheet__heading h3 { margin: 0; font-weight: 400; font-size: 24px; letter-spacing: .05em; }
.venue-sheet__address { margin: 24px 0 22px; font-size: 14px; line-height: 1.8; }
.venue-sheet dl { margin: 0; }
.venue-sheet dl div { display: grid; grid-template-columns: 65px 1fr; gap: 18px; padding: 7px 0; font-size: 14px; line-height: 1.75; }
.venue-sheet dt { font-weight: 600; }
.venue-sheet dd { margin: 0; }
.map-link { display: grid; justify-items: center; gap: 4px; min-width: 56px; font-family: var(--sans); font-size: 9px; }
.map-link svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; }

/* campaign -------------------------------------------------------------- */
.campaign { min-height: 1400px; background: transparent; }
.section-art--campaign img { object-position: 50% 65%; filter: brightness(.76) saturate(.9); }
.section-overlay--campaign { background: linear-gradient(180deg,rgba(2,6,12,.48),rgba(2,6,12,.1) 40%,rgba(2,6,12,.38) 72%,rgba(2,6,12,.68)); }
.campaign__inner { min-height: 1400px; display: grid; align-content: center; }
.campaign-card { width: min(820px,76vw); margin: 72px auto 0; padding: 62px 68px 48px; }
.campaign-card section + section { margin-top: 48px; padding-top: 42px; border-top: 1px solid rgba(25,31,39,.13); }
.campaign-card__number { margin: 0 0 16px; color: #47689a; font-family: Georgia,serif; font-size: 13px; }
.campaign-card h3 { margin: 0 0 20px; font-size: 22px; font-weight: 400; line-height: 1.65; letter-spacing: .04em; }
.campaign-card p { font-size: 14px; line-height: 1.8; }
.campaign-card small { display: block; color: rgba(22,27,36,.68); font-size: 11px; line-height: 1.7; }
.campaign-card__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(330px,80%);
  min-height: 54px;
  margin: 42px auto 0;
  border-radius: 99px;
  color: #fff;
  background: #7182ad;
  font-size: 13px;
  letter-spacing: .08em;
  transition: transform .3s var(--ease), background .3s ease;
}
.campaign-card__button:hover { transform: translateY(-2px); background: #5f729f; }
.campaign-card__button.is-pending {
  cursor: help;
  opacity: .62;
  transform: none;
}
.campaign-card__button.is-pending::after {
  content: attr(data-pending-message);
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: calc(100% + 14px);
  width: max-content;
  max-width: min(290px,calc(100vw - 80px));
  padding: 10px 15px;
  border: 1px solid rgba(164,194,230,.34);
  border-radius: 3px;
  color: #fff;
  background: rgba(20,31,49,.96);
  box-shadow: 0 12px 28px rgba(45,77,126,.35);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .06em;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%,8px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s var(--ease);
  pointer-events: none;
}
.campaign-card__button.is-pending:hover::after,
.campaign-card__button.is-pending:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%,0);
}

/* footer ---------------------------------------------------------------- */
.site-footer { position: relative; min-height: 100svh; overflow: hidden; isolation: isolate; background: transparent; }
.site-footer__art img { object-position: 50% 90%; filter: brightness(.7) saturate(.9); }
.site-footer__overlay {
  background: linear-gradient(180deg,rgba(2,6,12,.45),rgba(2,6,12,.15) 45%,rgba(2,6,12,.88));
}
.site-footer__inner {
  min-height: 100svh;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 34px;
  padding-bottom: 82px;
  text-align: center;
}
.site-footer__logo { width: min(556px,47vw); filter: none; }
.social-links { display: flex; gap: 18px; }
.social-links a { display: grid; place-items: center; width: 42px; aspect-ratio: 1; }
.social-links svg { width: 31px; fill: none; stroke: #fff; stroke-width: 1.8; }
.social-links a:nth-child(2) svg { fill: #fff; stroke: none; }
.site-footer__legal { color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.8; letter-spacing: .04em; }
.site-footer__legal p { margin: 4px 0; }

/* lightbox -------------------------------------------------------------- */
.lightbox {
  position: fixed;
  z-index: 10000;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  background: rgba(0,0,0,.91);
}
.lightbox.is-open {
  display: block;
  animation: lightbox-fade-in .34s ease both;
}
.lightbox::backdrop { background: rgba(0,0,0,.88); }
.lightbox__stage { width: 100%; height: 100%; display: grid; place-items: center; padding: 54px; }
.lightbox__stage img { max-width: min(92vw,1200px); max-height: 84vh; object-fit: contain; box-shadow: 0 25px 80px rgba(0,0,0,.8); }
.lightbox.is-open .lightbox__stage img {
  animation: lightbox-art-in .5s var(--ease) both;
}
.lightbox__title { margin: 16px 0 0; font-size: 14px; letter-spacing: .08em; }
.lightbox.is-open .lightbox__title {
  animation: lightbox-caption-in .42s .08s ease both;
}
.lightbox__close {
  position: fixed;
  z-index: 2;
  top: 24px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: rgba(0,0,0,.38);
  font-size: 0;
  line-height: 0;
}
.lightbox__close::before,
.lightbox__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}
.lightbox__close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.lightbox__close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
@keyframes lightbox-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes lightbox-art-in {
  from { opacity: 0; filter: blur(5px); transform: translateY(14px) scale(.96); }
  to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}
@keyframes lightbox-caption-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.desktop-only { display: inline; }

@media (min-width: 721px) {
  /* The close-up strip is a mobile-only interaction in the approved layout. */
  .intro__filmstrip { display: none; }
}

/* mobile ---------------------------------------------------------------- */
@media (max-width: 720px) {
  :root { --frame-x: 40px; --frame-y: 60px; --frame-max: 100%; }
  .desktop-only { display: none; }
  .page-frame { padding: var(--frame-y) var(--frame-x); }
  .section-title h2 { font-size: 32px; }
  .section-en { margin-bottom: 0; font-size: 20px; }

  .glow-link { width: 118px; font-size: 12px; }
  .glow-link i { bottom: 24px; width: 10px; height: 10px; }
  .glow-link--center { margin-top: 55px; }

  .hero { height: 700px; min-height: 700px; }
  .hero__content.page-frame { height: 700px; min-height: 700px; padding-top: 60px; padding-bottom: 60px; }
  .hero__image { inset: -2%; }
  .hero__image img { object-position: 52% 50%; transform-origin: 50% 50%; transform: translate3d(0,var(--parallax-y,0px),0) scale(1.08); }
  .hero__brand { width: min(240px,100%); margin-left: -20px; }
  .hero__brand img {
    width: 100%;
    margin-left: 0;
    transform: translateY(-30px);
  }
  .hero__footer-row { align-items: flex-end; gap: 12px; }
  .hero__dates { gap: 4px; }
  .hero__dates p { display: block; }
  .hero__dates span { display: block; width: auto; font-size: 24px; line-height: .9; }
  .hero__dates strong { display: block; font-size: 24px; line-height: 1.05; }
  .glow-link--hero { width: 108px; margin: 0 -4px 4px 0; }

  .intro { min-height: 907px; }
  .section-art--intro img { object-position: 51% 50%; }
  .section-overlay--intro { background: linear-gradient(180deg,rgba(2,6,12,.42),rgba(2,6,12,.28) 42%,rgba(2,6,12,.82) 100%); }
  .intro__content.page-frame { min-height: 907px; display: block; padding-top: 40px; padding-bottom: 230px; }
  .intro__statement {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .intro__statement h2 { margin-bottom: 28px; font-size: 32px; line-height: 1.5; letter-spacing: 0; }
  .intro__body { font-size: 16px; line-height: 2; text-align: left; letter-spacing: .03em; }
  .intro__body p { margin-bottom: 0; }
  .intro__content .glow-link { margin: 45px auto 0; }
  .intro__filmstrip {
    bottom: 0;
    display: flex;
    width: 100%;
    gap: 12px;
    padding-inline: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .intro__filmstrip::-webkit-scrollbar { display: none; }
  .intro__filmstrip::before { inset: -18px 0; }
  .intro__filmstrip-item {
    flex: 0 0 min(62vw,250px);
    aspect-ratio: 1.65;
    scroll-snap-align: center;
  }
  .filmstrip__ceiling--b1 {
    object-position: 0% 0%;
    transform-origin: 0% 0%;
    transform: translate3d(-50%,-50%,0) scale(2.56);
  }
  .filmstrip__ceiling--b7 {
    transform: scale(2.48);
  }

  .new-works { min-height: 1532px; }
  .new-works__inner.page-frame { padding-top: 60px; padding-bottom: 60px; }
  .new-works::before { width: 64vw; height: 30%; left: -24vw; top: 15%; }
  .new-works::after { width: 64vw; height: 31%; right: -25vw; top: 47%; }
  .work-column { width: 100%; margin-top: 40px; gap: 40px; }
  .work-card { gap: 20px; }
  .work-card__image { aspect-ratio: 1.415; }
  .work-card--second .work-card__image { width: 100%; aspect-ratio: .72; }
  .work-card__copy { width: calc(100% + 8px); margin-left: -4px; padding: 18px 4px 0; background: transparent; border: 0; box-shadow: none; backdrop-filter: none; }
  .work-card__copy h3 { font-size: 24px; line-height: 1.5; }
  .work-card__copy p { font-size: 16px; line-height: 1.8; }

  .event { min-height: 691px; }
  .event__inner.page-frame { min-height: 691px; padding-top: 60px; padding-bottom: 60px; }
  .signing-panel { width: 100%; padding: 0; backdrop-filter: none; }
  .signing-panel__eyebrow { gap: 8px; margin-bottom: 28px; font-size: 8px; letter-spacing: .12em; }
  .signing-panel__eyebrow::before, .signing-panel__eyebrow::after { width: 20px; }
  .signing-panel__eyebrow span { letter-spacing: .06em; }
  .event__lead { width: 100%; margin-top: 38px; }
  .event__lead p { font-size: 24px; line-height: 1.8; }
  .event__lead small { margin-top: 10px; font-size: 15px; line-height: 1.8; }

  .schedule { min-height: 1255px; }
  .schedule::before, .schedule::after { width: 100%; height: 56%; bottom: auto; clip-path: none; }
  .schedule::before { top: 0; background-position: 44% 50%; }
  .schedule::after { top: 44%; background-position: 50% 58%; }
  .section-overlay--schedule { background: linear-gradient(180deg,rgba(2,6,12,.44),rgba(2,6,12,.65) 48%,rgba(2,6,12,.52)); }
  .schedule__inner.page-frame { min-height: 1255px; padding-top: 60px; padding-bottom: 60px; }
  .signing-panel--details { padding-inline: 0; }
  .schedule__dates { grid-template-columns: 1fr; gap: 8px; }
  .schedule__heading { margin-bottom: 24px; font-size: 18px; }
  .schedule__dates article { display: grid; gap: 4px; padding: 8px 0; }
  .schedule__dates h3 { margin-bottom: 2px; font-size: 24px; }
  .schedule__dates p { margin: 0; font-size: 32px; }
  .schedule__notes { width: 100%; margin-top: 28px; padding: 0; border: 0; background: transparent; box-shadow: none; backdrop-filter: none; color: #fff; font-size: 16px; line-height: 1.9; text-align: left; text-shadow: 0 2px 20px rgba(0,0,0,.98); }
  .schedule__notes h3 { margin-bottom: 10px; font-size: 18px; line-height: 1.6; text-align: center; }
  .schedule__arrival { margin: 28px auto 14px; text-align: center; font-size: 14px; line-height: 1.85; }

  .profile { min-height: 500px; }
  .profile__inner.page-frame { min-height: 500px; padding-top: 60px; padding-bottom: 60px; }
  .profile__history { width: 100%; margin-top: 40px; padding: 0; font-size: 10px; line-height: 1.5; background: transparent; }
  .profile__history div { grid-template-columns: 85px 1fr; gap: 10px; padding: 3px 0; }

  .gallery { min-height: 502px; }
  .gallery__inner.page-frame { min-height: 502px; padding-top: 60px; padding-right: 0; padding-bottom: 60px; padding-left: 0; }
  .gallery__inner .section-title { padding-inline: 40px; }
  .gallery-viewport {
    width: 100%;
    margin: 18px 0 0;
    padding-block: 38px 28px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    cursor: grab;
    perspective: 900px;
  }
  .gallery-track {
    gap: 36px;
    min-width: 100%;
    margin: 0;
    padding: 0 var(--gallery-edge,0px) 24px;
  }
  .gallery-card { flex: 0 0 min(56.8vw,228.32px); scroll-snap-align: center; }
  .gallery-card .art-button {
    touch-action: manipulation;
    pointer-events: auto;
  }
  .gallery-card figcaption { font-size: 10px; }
  .gallery__status {
    width: calc(100% - 80px);
    margin-top: 0;
    font-size: 9px;
  }
  .gallery__counter { flex-basis: 52px; }
  .gallery__controls {
    grid-template-columns: 40px minmax(0,1fr) 40px;
    gap: 10px;
    width: calc(100% - 80px);
    margin-top: 18px;
  }
  .gallery__nav { width: 40px; font-size: 17px; }
  .gallery__caption { font-size: 10px; }

  .information { min-height: 900px; }
  .information__inner {
    min-height: 900px;
    align-content: start;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .venue-sheet { width: 100%; margin-top: 58px; padding: 42px 32px; }
  .venue-sheet__block + .venue-sheet__block { margin-top: 44px; padding-top: 38px; }
  .venue-sheet__heading h3 { font-size: 16px; }
  .venue-sheet__address, .venue-sheet dl div { font-size: 14px; }
  .venue-sheet dl div { grid-template-columns: 48px 1fr; gap: 10px; }

  .campaign { min-height: 650px; }
  .campaign__inner.page-frame { min-height: 650px; padding-top: 60px; padding-bottom: 60px; }
  .campaign-card { width: 100%; margin-top: 58px; padding: 45px 30px 36px; }
  .campaign-card section + section { margin-top: 38px; padding-top: 34px; }
  .campaign-card h3 { font-size: 24px; }
  .campaign-card p { font-size: 16px; }
  .campaign-card small { font-size: 12px; }
  .campaign-card__button { width: 100%; min-height: 48px; }

  .site-footer { min-height: 600px; }
  .site-footer__inner.page-frame { min-height: 600px; padding-top: 60px; padding-bottom: 60px; gap: 25px; }
  .site-footer__logo { width: 100%; }
  .social-links { gap: 12px; }
  .social-links a { width: 36px; }
  .social-links svg { width: 28px; }
  .site-footer__legal { font-size: 8px; }

  .lightbox__stage { padding: 34px 18px; }
  .lightbox__close { top: 16px; right: 16px; }

  .hero + .cinematic-section,
  .cinematic-section + .cinematic-section,
  .gallery + .section-seven,
  .campaign + .site-footer {
    margin-top: -14px;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .intro__statement { width: min(760px,76vw); padding: 60px 48px; }
  .intro__content .glow-link { margin-right: auto; margin-left: auto; }
  .work-column { width: 76vw; }
  .gallery-track { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal], [data-reveal-item] { opacity: 1; filter: none; transform: none; }
  [data-parallax] { --parallax-y: 0px !important; }
}


/* Final release hardening ------------------------------------------------ */
.hero__brand img,
.site-footer__logo {
  image-rendering: auto;
}

/* Keep the supplied transparent logo crisp over dark artwork. */
.hero__brand,
.site-footer__logo {
  mix-blend-mode: normal;
}

/* Use safe-area insets without changing the requested visual padding. */
@supports (padding: max(0px)) {
  .page-frame {
    padding-top: max(var(--frame-y), env(safe-area-inset-top));
    padding-right: max(var(--frame-x), env(safe-area-inset-right));
    padding-bottom: max(var(--frame-y), env(safe-area-inset-bottom));
    padding-left: max(var(--frame-x), env(safe-area-inset-left));
  }
}

/* Avoid all content remaining invisible if scripting is delayed or blocked. */
html.no-js [data-reveal],
html.no-js [data-reveal-item] {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

.noscript-note { position: fixed; z-index: 10000; inset: 0 0 auto; padding: 10px 18px; color: #111; background: #fff6cf; font-family: sans-serif; font-size: 12px; text-align: center; }
