/* Zurich Fashion Night — agency production system v20 */
@font-face {
  font-family: "ZFN Bodoni";
  src: url("bodoni-moda-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "ZFN Bodoni";
  src: url("bodoni-moda-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "ZFN Instrument";
  src: url("instrument-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --black: #030303;
  --ink: #080705;
  --lacquer: #0d0b08;
  --pearl: #f4f0e7;
  --smoke: #aaa39a;
  --gold: #bd9650;
  --gold-light: #ead18d;
  --gold-deep: #76511d;
  --rule: rgba(231, 202, 133, .22);
  --rule-soft: rgba(244, 240, 231, .13);
  --pad: clamp(24px, 4.2vw, 72px);
  --display: "ZFN Bodoni", Didot, "Bodoni 72", serif;
  --sans: "ZFN Instrument", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.2, .72, .18, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; background: var(--black); color: var(--pearl); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body, button, a { font-family: var(--sans); }
img, video { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
p, h1, h2, h3, h4, figure, address { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold-light); color: var(--black); }
:focus-visible { outline: 1px solid var(--gold-light); outline-offset: 5px; }

.zfnx-page { position: relative; overflow: clip; background: var(--black); color: var(--pearl); }
.zfnx-visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.zfnx-section-label { color: var(--gold); font-size: 12px; font-weight: 600; line-height: 1.4; letter-spacing: .14em; text-transform: uppercase; }

/* Opening title card: one orchestrated moment, then stillness. */
.zfnx-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #020202;
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.05s var(--ease) .12s, visibility 0s linear 1.3s;
}
.zfnx-intro::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(22vw, 340px);
  background: linear-gradient(90deg, transparent, rgba(205,165,87,.075), transparent);
  transform: translateX(-50%);
}
.zfnx-intro-signature {
  position: relative;
  width: clamp(290px, 35vw, 520px);
  aspect-ratio: 1;
  color: var(--gold-light);
  animation: zfnxIntroSignatureIn 1s var(--ease) both;
}
.zfnx-intro-signature::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(234,209,141,.2);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(189,150,80,.055), inset 0 0 70px rgba(189,150,80,.035);
}
.zfnx-intro-ring {
  position: absolute;
  border: 1px solid rgba(234,209,141,.28);
  border-radius: 50%;
}
.zfnx-intro-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 16px rgba(234,209,141,.78);
}
.zfnx-intro-ring-a { inset: 0; animation: zfnxIntroOrbit 24s linear infinite; }
.zfnx-intro-ring-b { inset: 10%; border-color: rgba(234,209,141,.17); animation: zfnxIntroOrbitReverse 31s linear infinite; }
.zfnx-intro-ring-c { inset: 28%; border-color: rgba(234,209,141,.38); animation: zfnxIntroOrbit 19s linear infinite; }
.zfnx-intro-ring-b::after { top: 12%; right: 12%; width: 4px; height: 4px; opacity: .7; }
.zfnx-intro-ring-c::after { top: auto; right: 22%; bottom: 4%; width: 3px; height: 3px; opacity: .78; }
.zfnx-intro-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(84px, 12vw, 188px);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.055em;
}
.zfnx-intro-meta {
  position: absolute;
  right: var(--pad);
  bottom: 36px;
  left: var(--pad);
  display: flex;
  justify-content: space-between;
  color: rgba(244,240,231,.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.zfnx-intro > i {
  position: absolute;
  left: var(--pad);
  bottom: 0;
  width: calc(100% - (var(--pad) * 2));
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: zfnxLoad 1.15s var(--ease) forwards;
}
.zfnx-intro.is-leaving { clip-path: inset(0 0 100% 0); visibility: hidden; }
@keyframes zfnxLoad { to { transform: scaleX(1); } }
@keyframes zfnxIntroSignatureIn { from { opacity: 0; transform: scale(.82); } to { opacity: 1; transform: scale(1); } }
@keyframes zfnxIntroOrbit { to { transform: rotate(360deg); } }
@keyframes zfnxIntroOrbitReverse { to { transform: rotate(-360deg); } }

.zfnx-grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .018;
  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='.9' numOctaves='2' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
}
.zfnx-progress { position: fixed; top: 0; left: 0; z-index: 110; width: 100%; height: 2px; pointer-events: none; }
.zfnx-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); transform: scaleX(var(--page-progress, 0)); transform-origin: left; }
.zfnx-section-rail {
  position: fixed;
  left: 14px;
  top: 50%;
  z-index: 78;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(244,240,231,.54);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  pointer-events: none;
}
.zfnx-section-rail i { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); }
.zfnx-section-rail span { color: var(--gold-light); }
.zfnx-section-rail small { font-size: 10px; letter-spacing: .15em; }

/* Hero — the image and title are the identity. */
.zfnx-hero { position: relative; min-height: 100svh; isolation: isolate; overflow: hidden; background: #080808; }
.zfnx-hero-media, .zfnx-hero-shade { position: absolute; inset: 0; }
.zfnx-hero-media { z-index: -2; overflow: hidden; }
.zfnx-hero-media img { height: 100%; object-fit: cover; object-position: 58% 35%; filter: saturate(.82) contrast(1.04); transform: scale(1.06) translate3d(0,var(--hero-shift,0),0); transition: transform 2.2s var(--ease), filter 1.2s ease; }
.zfnx-ready .zfnx-hero-media img { transform: scale(1.012) translate3d(0,var(--hero-shift,0),0); }
.zfnx-hero-media.is-film-ready img { filter: saturate(.54) contrast(1.04) brightness(.28); }
.zfnx-hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 57% 50%;
  opacity: 0;
  filter: saturate(.72) contrast(1.08) brightness(.76);
  transform: scale(1.035);
  transition: opacity 1.15s ease, transform 2.2s var(--ease);
}
.zfnx-hero-video.is-ready { opacity: .94; transform: scale(1.005); }
.zfnx-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.07) 49%, rgba(0,0,0,.5) 100%),
    linear-gradient(0deg, rgba(0,0,0,.92) 0%, transparent 49%, rgba(0,0,0,.47) 100%);
}
.zfnx-hero::after {
  content: "";
  position: absolute;
  top: -15%;
  bottom: -15%;
  left: -42%;
  z-index: -1;
  width: 22%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(245,213,139,.16), rgba(255,246,214,.07), transparent);
  filter: blur(18px);
  transform: skewX(-12deg);
  animation: zfnxHouseLight 2.7s var(--ease) .95s both;
}
@keyframes zfnxHouseLight { from { left: -42%; opacity: 0; } 28% { opacity: .65; } to { left: 122%; opacity: 0; } }
.zfnx-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(255,255,255,.15);
  background: linear-gradient(180deg,rgba(2,2,2,.4),transparent);
}
.zfnx-wordmark { display: inline-flex; align-items: center; gap: 14px; justify-self: start; }
.zfnx-wordmark strong { color: var(--pearl); font-family: var(--display); font-size: 21px; font-weight: 500; letter-spacing: -.04em; }
.zfnx-wordmark span { color: rgba(255,255,255,.72); font-size: 10px; font-weight: 600; line-height: 1.25; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-nav-links { display: flex; gap: clamp(20px,2.35vw,40px); }
.zfnx-nav-links a, .zfnx-nav-ticket { font-size: 11px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.zfnx-nav-links a { color: rgba(255,255,255,.76); transition: color .3s ease; }
.zfnx-nav-links a:hover { color: var(--gold-light); }
.zfnx-nav-ticket { justify-self: end; padding-bottom: 7px; border-bottom: 1px solid var(--gold); color: var(--gold-light); }
.zfnx-hero-kicker { position: absolute; top: 126px; right: var(--pad); left: var(--pad); display: flex; justify-content: space-between; color: rgba(255,255,255,.78); font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.zfnx-hero-title {
  position: absolute;
  right: var(--pad);
  bottom: clamp(126px,15vh,180px);
  left: var(--pad);
  display: flex;
  flex-direction: column;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(76px,11.4vw,184px);
  font-weight: 500;
  line-height: .76;
  letter-spacing: -.045em;
  text-shadow: 0 16px 50px rgba(0,0,0,.26);
}
.zfnx-hero-title span { display: block; overflow: visible; padding-bottom: .08em; margin-bottom: -.08em; }
.zfnx-hero-title span:last-child { align-self: center; margin-left: 8vw; }
.zfnx-hero-title em { color: var(--pearl); font-style: italic; font-weight: 430; }
.zfnx-hero-title span,
.zfnx-hero-kicker,
.zfnx-hero-date,
.zfnx-hero-scroll { opacity: 0; }
.zfnx-hero-title span { transform: translate3d(0,42px,0); }
.zfnx-ready .zfnx-hero-title span:first-child { animation: zfnxTitleIn 1.15s var(--ease) 1.18s forwards; }
.zfnx-ready .zfnx-hero-title span:last-child { animation: zfnxTitleIn 1.15s var(--ease) 1.3s forwards; }
.zfnx-ready .zfnx-hero-kicker,
.zfnx-ready .zfnx-hero-date,
.zfnx-ready .zfnx-hero-scroll { animation: zfnxFadeIn .9s ease 1.52s forwards; }
@keyframes zfnxTitleIn { to { opacity: 1; transform: translate3d(0,0,0); } }
@keyframes zfnxFadeIn { to { opacity: 1; } }
.zfnx-hero-date { position: absolute; right: var(--pad); bottom: 36px; display: flex; align-items: flex-end; gap: 16px; }
.zfnx-date-day { color: var(--pearl); font-family: var(--display); font-size: clamp(58px,6.3vw,98px); font-weight: 500; line-height: .72; }
.zfnx-date-copy { color: rgba(255,255,255,.72); font-size: 11px; font-weight: 600; line-height: 1.45; letter-spacing: .11em; text-transform: uppercase; }
.zfnx-hero-scroll { position: absolute; left: var(--pad); bottom: 38px; display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.88); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-hero-scroll i { width: 72px; height: 1px; background: linear-gradient(90deg,var(--gold),transparent); }

/* Manifesto */
.zfnx-invitation { position: relative; padding: clamp(110px,11vw,170px) var(--pad) 0; background: radial-gradient(circle at 76% 35%,rgba(189,150,80,.08),transparent 29%),var(--black); }
.zfnx-invitation-light { display: none; }
.zfnx-invitation-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--rule); }
.zfnx-invitation-top > span { color: rgba(244,240,231,.52); font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.zfnx-invitation-core { display: grid; grid-template-columns: 72px minmax(0,1.25fr) minmax(320px,.55fr); gap: clamp(30px,5vw,90px); align-items: end; padding: clamp(100px,13vh,176px) 0; }
.zfnx-invitation-monogram { align-self: start; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(234,209,141,.42); color: var(--gold-light); font-family: var(--display); font-size: 14px; }
.zfnx-invitation-core h1 { max-width: 940px; color: var(--pearl); font-family: var(--display); font-size: clamp(66px,7.5vw,118px); font-weight: 500; line-height: .88; letter-spacing: -.04em; }
.zfnx-invitation-core h1 em { color: var(--gold-light); font-style: italic; font-weight: 430; }
.zfnx-edition-copy { max-width: 540px; padding-bottom: 6px; }
.zfnx-edition-copy p { color: rgba(244,240,231,.78); font-size: clamp(16px,1.2vw,19px); line-height: 1.65; }
.zfnx-edition-copy p + p { margin-top: 22px; color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.zfnx-facts { display: grid; grid-template-columns: repeat(4,1fr); margin: 0 calc(var(--pad) * -1); border-top: 1px solid var(--rule); }
.zfnx-facts div { min-height: 138px; padding: 30px var(--pad); border-right: 1px solid var(--rule); }
.zfnx-facts div:last-child { border-right: 0; }
.zfnx-facts span { display: block; margin-bottom: 17px; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-facts strong { color: var(--pearl); font-size: 15px; font-weight: 500; line-height: 1.45; }
.zfnx-threshold { display: flex; align-items: center; gap: 26px; min-height: 76px; padding: 0 var(--pad); background: linear-gradient(92deg,#8e6c31,#d0ad66 48%,#927039); color: rgba(3,3,3,.72); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.zfnx-threshold i { flex: 1; height: 1px; background: rgba(3,3,3,.28); }
.zfnx-threshold b { color: var(--black); font-weight: 700; }

/* Provenance */
.zfnx-heritage { position: relative; padding: clamp(116px,12vw,190px) var(--pad); background: #090806; }
.zfnx-heritage-statement { display: grid; grid-template-columns: .55fr .85fr 1.35fr; gap: clamp(34px,5vw,88px); align-items: end; padding-bottom: clamp(70px,8vw,116px); }
.zfnx-heritage-number { display: flex; align-items: flex-end; gap: 19px; }
.zfnx-heritage-number strong { color: var(--gold-light); font-family: var(--display); font-size: clamp(130px,15vw,230px); font-weight: 500; line-height: .65; letter-spacing: -.055em; }
.zfnx-heritage-number span { padding-bottom: 4px; color: rgba(244,240,231,.68); font-size: 11px; font-weight: 600; line-height: 1.45; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-heritage-copy h2 { color: var(--pearl); font-family: var(--display); font-size: clamp(60px,6.8vw,106px); font-weight: 500; line-height: .86; letter-spacing: -.04em; }
.zfnx-heritage-copy p { max-width: 620px; margin-top: 34px; color: var(--smoke); font-size: clamp(16px,1.15vw,18px); line-height: 1.68; }
.zfnx-heritage-image { position: relative; height: min(72vw,830px); max-height: 82svh; overflow: hidden; background: var(--lacquer); }
.zfnx-heritage-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(0,0,0,.55),transparent 42%); pointer-events: none; }
.zfnx-heritage-image img { height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(.78) contrast(1.04); transform: scale(1.025); transition: transform 1.8s var(--ease); }
.zfnx-heritage-image.is-visible img { transform: scale(1); }
.zfnx-heritage-image figcaption { position: absolute; right: 28px; bottom: 25px; left: 28px; z-index: 2; display: flex; justify-content: space-between; color: rgba(255,255,255,.82); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

/* Film: the branded hand-off from the campaign image into real event footage. */
.zfnx-film { --film-progress: 0; position: relative; height: 152svh; background: var(--black); }
.zfnx-film-rail { position: absolute; top: 34px; right: var(--pad); left: var(--pad); z-index: 4; display: flex; justify-content: space-between; color: rgba(244,240,231,.55); font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.zfnx-film-stage { position: sticky; top: 0; width: 100%; height: 100svh; overflow: hidden; background: #0c0b09; }
.zfnx-film-stage::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 50% 44%,transparent 0 18%,rgba(0,0,0,.12) 48%,rgba(0,0,0,.72) 100%); pointer-events: none; }
.zfnx-film-stage::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(0deg,rgba(0,0,0,.78),transparent 58%),linear-gradient(90deg,rgba(0,0,0,.38),transparent 48%); pointer-events: none; }
.zfnx-film-stage video { height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.06) brightness(.86); transform: scale(calc(1.035 - (var(--film-progress) * .035))); transition: filter .8s ease; }
.zfnx-film-signature { position: absolute; top: 46%; left: 50%; z-index: 3; width: clamp(300px,37vw,560px); aspect-ratio: 1; color: var(--gold-light); opacity: calc(1 - (var(--film-progress) * .68)); transform: translate(-50%,-50%) scale(calc(.9 + (var(--film-progress) * .1))); pointer-events: none; }
.zfnx-film-signature::before { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(234,209,141,.22); border-radius: 50%; box-shadow: 0 0 70px rgba(189,150,80,.055), inset 0 0 70px rgba(189,150,80,.035); }
.zfnx-film-ring { position: absolute; border: 1px solid rgba(234,209,141,.27); border-radius: 50%; }
.zfnx-film-ring::after { content: ""; position: absolute; top: 50%; right: -3px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 18px rgba(234,209,141,.82); }
.zfnx-film-ring-a { inset: 0; animation: zfnxFilmOrbit 24s linear infinite; }
.zfnx-film-ring-b { inset: 9%; border-color: rgba(234,209,141,.17); animation: zfnxFilmOrbitReverse 31s linear infinite; }
.zfnx-film-ring-c { inset: 27%; border-color: rgba(234,209,141,.38); animation: zfnxFilmOrbit 19s linear infinite; }
.zfnx-film-ring-b::after { top: 12%; right: 12%; width: 4px; height: 4px; opacity: .7; }
.zfnx-film-ring-c::after { top: auto; right: 22%; bottom: 4%; width: 3px; height: 3px; opacity: .78; }
.zfnx-film-signature > span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; text-shadow: 0 8px 38px rgba(0,0,0,.74); }
.zfnx-film-signature strong { font-family: var(--display); font-size: clamp(78px,9vw,138px); font-weight: 500; line-height: .78; letter-spacing: -.055em; }
.zfnx-film-signature small { margin-top: 18px; color: rgba(244,240,231,.8); font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
@keyframes zfnxFilmOrbit { to { transform: rotate(360deg); } }
@keyframes zfnxFilmOrbitReverse { to { transform: rotate(-360deg); } }
.zfnx-film-control { position: absolute; right: var(--pad); bottom: 36px; z-index: 5; width: 72px; height: 72px; border: 1px solid rgba(255,255,255,.56); border-radius: 50%; background: rgba(3,3,3,.52); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.zfnx-film-copy { position: absolute; left: var(--pad); bottom: 10svh; z-index: 4; pointer-events: none; }
.zfnx-film-copy > p { margin-bottom: 18px; color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.zfnx-film-copy h2 { color: var(--pearl); font-family: var(--display); font-size: clamp(58px,7vw,110px); font-weight: 500; line-height: .87; letter-spacing: -.04em; }

/* The evening */
.zfnx-night { position: relative; background: var(--black); }
.zfnx-night-axis { display: none; }
.zfnx-night-intro { display: grid; grid-template-columns: minmax(390px,.82fr) minmax(0,1.18fr); min-height: 760px; background: var(--black); }
.zfnx-night-heading { display: flex; flex-direction: column; justify-content: center; padding: clamp(90px,10vw,150px) clamp(40px,6vw,100px) clamp(90px,10vw,150px) var(--pad); }
.zfnx-night-heading h2 { max-width: 760px; margin-top: 34px; color: var(--pearl); font-family: var(--display); font-size: clamp(62px,6.8vw,106px); font-weight: 500; line-height: .86; letter-spacing: -.04em; }
.zfnx-night-heading h2 em { color: var(--gold-light); font-style: italic; font-weight: 430; }
.zfnx-night-heading > p:last-child { max-width: 530px; margin-top: 44px; color: var(--smoke); font-size: clamp(16px,1.1vw,18px); line-height: 1.68; }
.zfnx-night-portrait { position: relative; min-height: 760px; overflow: hidden; }
.zfnx-night-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(3,3,3,.42),transparent 30%); pointer-events: none; }
.zfnx-night-portrait img { height: 100%; object-fit: cover; object-position: center; filter: saturate(.8) contrast(1.04); transform: scale(1.025); transition: transform 1.8s var(--ease); }
.zfnx-night-portrait.is-visible img { transform: scale(1); }
.zfnx-night-portrait figcaption { position: absolute; right: 26px; bottom: 24px; z-index: 2; color: rgba(255,255,255,.78); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-moment { position: relative; min-height: 108svh; overflow: hidden; isolation: isolate; background: #090807; }
.zfnx-moment figure { position: absolute; inset: clamp(24px,3.2vw,56px); z-index: -2; overflow: hidden; }
.zfnx-moment figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(0,0,0,.78),transparent 62%),linear-gradient(90deg,rgba(0,0,0,.26),transparent 52%); }
.zfnx-moment img { height: 100%; object-fit: cover; filter: saturate(.84) contrast(1.03); transform: scale(1.045); transition: transform 1.8s var(--ease); }
.zfnx-moment.is-active img { transform: scale(1); }
.zfnx-moment-copy { position: absolute; left: calc(var(--pad) + clamp(24px,3.2vw,56px)); bottom: clamp(72px,10vh,120px); max-width: min(650px,52vw); }
.zfnx-moment:nth-of-type(even) .zfnx-moment-copy { right: calc(var(--pad) + clamp(24px,3.2vw,56px)); left: auto; }
.zfnx-moment-copy > span { display: block; margin-bottom: 17px; color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.zfnx-moment-copy h3 { color: var(--pearl); font-family: var(--display); font-size: clamp(54px,6.5vw,102px); font-weight: 500; line-height: .86; letter-spacing: -.04em; }
.zfnx-moment-copy p { max-width: 440px; margin-top: 24px; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.62; }
.zfnx-night-cta { display: flex; align-items: center; justify-content: space-between; min-height: 160px; padding: 0 var(--pad); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); color: var(--pearl); font-family: var(--display); font-size: clamp(34px,3.6vw,58px); transition: background .45s ease,color .45s ease; }
.zfnx-night-cta i { position: relative; width: 120px; height: 1px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); }
.zfnx-night-cta i::after { content: ""; position: absolute; top: -3px; right: 0; width: 7px; height: 7px; border-top: 1px solid var(--gold-light); border-right: 1px solid var(--gold-light); transform: rotate(45deg); }
.zfnx-night-cta:hover { background: var(--gold-light); color: var(--black); }

/* Reservations: a concierge ledger rather than four generic cards. */
.zfnx-tickets { background: var(--black); }
.zfnx-reservation-entrance { position: relative; min-height: 100svh; overflow: hidden; }
.zfnx-ticket-image { position: absolute; inset: 0; }
.zfnx-ticket-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,0,0,.83),rgba(0,0,0,.08) 70%),linear-gradient(0deg,rgba(0,0,0,.58),transparent 58%); }
.zfnx-ticket-image img { height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.04); }
.zfnx-ticket-image figcaption { position: absolute; right: var(--pad); bottom: 30px; z-index: 2; display: flex; gap: 18px; color: rgba(255,255,255,.64); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-ticket-intro { position: absolute; left: var(--pad); bottom: clamp(76px,11vh,140px); z-index: 3; max-width: 720px; }
.zfnx-ticket-intro h2 { margin: 22px 0 25px; color: var(--gold-light); font-family: var(--display); font-size: clamp(70px,8.5vw,132px); font-weight: 500; line-height: .82; letter-spacing: -.045em; }
.zfnx-ticket-intro p:not(.zfnx-section-label) { max-width: 480px; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.6; }
.zfnx-ticket-intro small { display: block; margin-top: 25px; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.zfnx-ticket-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); background: #070604; }
.zfnx-ticket {
  --lux-x: 50%;
  --lux-y: 50%;
  --lux-glow: 0;
  position: relative;
  display: flex;
  min-height: 560px;
  padding: clamp(34px,4vw,64px);
  flex-direction: column;
  isolation: isolate;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(circle at var(--lux-x) var(--lux-y), rgb(234 209 141 / var(--lux-glow)) 0, rgba(189,150,80,.035) 18%, transparent 47%),
    #080705;
  overflow: hidden;
  box-shadow: inset 0 0 0 0 rgba(234,209,141,0), 0 0 0 rgba(0,0,0,0);
  transform: translateZ(0);
  transition: border-color .6s ease, box-shadow .75s ease, transform .85s var(--ease);
}
.zfnx-ticket:nth-child(even) { border-right: 0; }
.zfnx-ticket > * { position: relative; z-index: 2; }
.zfnx-ticket::before {
  content: attr(data-vault-mark);
  position: absolute;
  right: -10px;
  bottom: -30px;
  z-index: 0;
  color: rgba(234,209,141,.075);
  font-family: var(--display);
  font-size: clamp(112px,14.5vw,226px);
  line-height: 1;
  letter-spacing: -.035em;
  pointer-events: none;
  transform: translate3d(0,0,0) scale(1);
  transform-origin: right bottom;
  transition: color .7s ease, transform 1.05s var(--ease), letter-spacing 1.05s var(--ease);
}
.zfnx-ticket:nth-child(3)::before,
.zfnx-ticket-signature::before { color: rgba(234,209,141,.105); }
.zfnx-ticket::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,transparent 0%,var(--gold) 24%,#fff1be 50%,var(--gold) 76%,transparent 100%);
  filter: drop-shadow(0 0 10px rgba(234,209,141,.55));
  transform: scaleX(0);
  transition: transform .9s var(--ease);
}
.zfnx-ticket:hover,
.zfnx-ticket:focus-within,
.zfnx-ticket.is-lux-active {
  --lux-glow: .17;
  border-color: rgba(234,209,141,.55);
  box-shadow: inset 0 0 0 1px rgba(234,209,141,.16), 0 26px 70px rgba(0,0,0,.32);
  transform: translateY(-6px) scale(1.003);
}
.zfnx-ticket:hover::before,
.zfnx-ticket:focus-within::before,
.zfnx-ticket.is-lux-active::before {
  color: rgba(234,209,141,.18);
  letter-spacing: -.055em;
  transform: translate3d(-12px,-7px,0) scale(1.035);
}
.zfnx-ticket:hover::after,
.zfnx-ticket:focus-within::after,
.zfnx-ticket.is-lux-active::after { transform: scaleX(1); }
.zfnx-ticket-top { display: flex; justify-content: space-between; gap: 20px; color: rgba(244,240,231,.72); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-ticket-top small { color: rgba(244,240,231,.48); font-size: 11px; }
.zfnx-ticket-copy { margin-top: auto; padding-top: 92px; transition: transform .75s var(--ease); }
.zfnx-ticket-copy > p { margin-bottom: 13px; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-ticket-copy h3 { max-width: 620px; color: var(--pearl); font-family: var(--display); font-size: clamp(48px,5.1vw,80px); font-weight: 500; line-height: .9; letter-spacing: -.035em; }
.zfnx-ticket-copy > span { display: block; max-width: 490px; margin-top: 20px; color: rgba(244,240,231,.65); font-size: 15px; line-height: 1.58; }
.zfnx-ticket > strong { margin-top: 38px; color: var(--gold-light); background: linear-gradient(105deg,#a97d31 0%,#f4dda0 34%,#fff3c7 49%,#c79a49 66%,#f0d890 100%); background-size: 220% 100%; background-position: 100% 50%; background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: var(--display); font-size: clamp(48px,5vw,76px); font-weight: 500; line-height: .9; letter-spacing: -.025em; }
.zfnx-ticket > a { position: relative; z-index: 2; display: block; margin-top: 28px; padding: 18px 22px; border: 1px solid rgba(234,209,141,.6); color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-align: center; text-transform: uppercase; transition: background-color .45s ease,color .45s ease,box-shadow .6s ease,border-color .45s ease; }
.zfnx-ticket > a:hover { background: var(--gold-light); color: var(--black); }
.zfnx-ticket-payment { margin-top: 12px; color: rgba(244,240,231,.4); font-size: 10px; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.zfnx-ticket-signature { background-color: #0c0905; }
.zfnx-ticket:hover .zfnx-ticket-copy,
.zfnx-ticket:focus-within .zfnx-ticket-copy,
.zfnx-ticket.is-lux-active .zfnx-ticket-copy { transform: translateY(-5px); }
.zfnx-ticket:hover > strong,
.zfnx-ticket:focus-within > strong,
.zfnx-ticket.is-lux-active > strong { animation: zfnxPriceSweep 1.25s var(--ease) both; }
.zfnx-ticket:hover > a,
.zfnx-ticket:focus-within > a,
.zfnx-ticket.is-lux-active > a { border-color: rgba(255,236,182,.86); background: rgba(189,150,80,.09); box-shadow: inset 0 0 24px rgba(234,209,141,.06),0 0 30px rgba(189,150,80,.07); }
@keyframes zfnxPriceSweep { from { background-position: 100% 50%; } to { background-position: 0% 50%; } }

/* Professional invitations */
.zfnx-house-intro { display: grid; grid-template-columns: .48fr 1.45fr .7fr; gap: 5vw; align-items: end; min-height: 82svh; padding: 14vh var(--pad); background: #050505; }
.zfnx-house-intro h2 { color: var(--pearl); font-family: var(--display); font-size: clamp(58px,7.2vw,112px); font-weight: 500; line-height: .98; letter-spacing: -.04em; }
.zfnx-house-intro h2 > span,
.zfnx-house-intro h2 > em { display: block; }
.zfnx-house-intro h2 em { margin-top: .2em; color: var(--gold-light); font-style: italic; font-weight: 430; line-height: .94; }
.zfnx-house-intro > div p { color: var(--smoke); font-size: 16px; line-height: 1.65; }
.zfnx-house-intro > div span { display: block; margin-top: 27px; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.zfnx-house-packages { background: var(--lacquer); }
.zfnx-house-package { display: grid; grid-template-columns: 52% 48%; grid-template-rows: auto auto auto 1fr auto; min-height: 112svh; border-top: 1px solid var(--rule); background: #0a0806; }
.zfnx-house-media { position: relative; grid-column: 1; grid-row: 1 / 7; min-height: 100%; overflow: hidden; }
.zfnx-house-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(0,0,0,.42),transparent 46%); }
.zfnx-house-media img { height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.03); transform: scale(1.025); transition: transform 1.5s var(--ease); }
.zfnx-house-package.is-visible .zfnx-house-media img { transform: scale(1); }
.zfnx-house-media figcaption { position: absolute; left: 28px; bottom: 25px; z-index: 2; color: rgba(255,255,255,.8); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-house-package > header, .zfnx-house-title, .zfnx-house-price, .zfnx-house-columns, .zfnx-showroom-prices, .zfnx-house-benefits, .zfnx-house-limit, .zfnx-house-contact { grid-column: 2; margin-right: var(--pad); margin-left: var(--pad); }
.zfnx-house-package > header { display: flex; justify-content: space-between; padding: 36px 0 25px; border-bottom: 1px solid var(--rule); color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-house-package > header small { color: rgba(244,240,231,.48); font-size: 11px; }
.zfnx-house-title { padding: clamp(44px,5vw,72px) 0 36px; }
.zfnx-house-title > p:first-child { margin-bottom: 13px; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-house-title h3 { margin-bottom: 23px; color: var(--pearl); font-family: var(--display); font-size: clamp(50px,5.2vw,82px); font-weight: 500; line-height: .9; letter-spacing: -.04em; }
.zfnx-house-title > p:last-child { max-width: 580px; color: var(--smoke); font-size: 15px; line-height: 1.62; }
.zfnx-house-price { display: flex; align-items: flex-end; gap: 15px; padding: 28px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.zfnx-house-price strong, .zfnx-showroom-prices strong { color: var(--gold-light); font-family: var(--display); font-size: clamp(50px,5vw,78px); font-weight: 500; line-height: .8; }
.zfnx-house-price span, .zfnx-showroom-prices span, .zfnx-showroom-prices small { color: var(--smoke); font-size: 11px; font-weight: 600; line-height: 1.45; letter-spacing: .11em; text-transform: uppercase; }
.zfnx-house-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; padding: 34px 0; }
.zfnx-house-columns h4, .zfnx-house-benefits h4 { margin-bottom: 17px; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-house-columns li { position: relative; padding-left: 17px; color: rgba(244,240,231,.68); font-size: 13px; line-height: 1.55; }
.zfnx-house-columns li + li { margin-top: 9px; }
.zfnx-house-columns li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.zfnx-house-contact { align-self: end; margin-bottom: 40px; padding: 18px 20px; border: 1px solid rgba(234,209,141,.52); color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: .11em; text-align: center; text-transform: uppercase; transition: background-color .35s ease,color .35s ease; }
.zfnx-house-contact:hover { background: var(--gold-light); color: var(--black); }
.zfnx-house-showroom { background: #0d0b08; }
.zfnx-house-showroom .zfnx-house-media { grid-column: 2; }
.zfnx-house-showroom > header, .zfnx-house-showroom .zfnx-house-title, .zfnx-house-showroom .zfnx-showroom-prices, .zfnx-house-showroom .zfnx-house-benefits, .zfnx-house-showroom .zfnx-house-limit, .zfnx-house-showroom .zfnx-house-contact { grid-column: 1; }
.zfnx-showroom-prices { display: grid; grid-template-columns: 1fr 1fr; padding: 27px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.zfnx-showroom-prices > div { display: grid; grid-template-columns: auto 1fr; column-gap: 11px; align-items: end; }
.zfnx-showroom-prices > div + div { padding-left: 30px; border-left: 1px solid var(--rule); }
.zfnx-showroom-prices small { grid-column: 1 / -1; margin-top: 9px; }
.zfnx-house-benefits { padding-top: 22px; }
.zfnx-house-benefits > div { display: grid; grid-template-columns: .6fr 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--rule-soft); }
.zfnx-house-benefits h4 { margin: 0; }
.zfnx-house-benefits p { color: rgba(244,240,231,.65); font-size: 13px; line-height: 1.52; }
.zfnx-house-limit { padding: 19px 0 7px; color: rgba(244,240,231,.5); font-size: 12px; line-height: 1.5; }

/* Venue */
.zfnx-venue { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(380px,.7fr); grid-template-rows: auto 1fr auto; min-height: 90svh; border-top: 1px solid var(--rule); background: #070604; }
.zfnx-venue-media { position: relative; grid-column: 1; grid-row: 1 / 4; min-height: 90svh; overflow: hidden; border-right: 1px solid var(--rule); }
.zfnx-venue-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(0,0,0,.45),transparent 46%); }
.zfnx-venue-media img { height: 100%; object-fit: cover; object-position: 62% center; filter: saturate(.82) contrast(1.03); }
.zfnx-venue-media figcaption { position: absolute; left: var(--pad); bottom: 29px; z-index: 2; color: rgba(255,255,255,.84); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-venue-name { grid-column: 2; grid-row: 1; padding: clamp(56px,7vh,88px) clamp(36px,4vw,66px) 30px; border-bottom: 1px solid var(--rule); }
.zfnx-venue-name h2 { margin-top: 45px; color: var(--pearl); font-family: var(--display); font-size: clamp(66px,7vw,108px); font-weight: 500; line-height: .84; letter-spacing: -.045em; }
.zfnx-venue-body { grid-column: 2; grid-row: 2; align-self: end; padding: 8vh clamp(36px,4vw,66px); }
.zfnx-venue-body > p { max-width: 470px; color: var(--smoke); font-size: 16px; line-height: 1.65; }
.zfnx-venue-body address { margin-top: 42px; color: rgba(244,240,231,.68); font-size: 14px; font-style: normal; line-height: 1.65; }
.zfnx-venue-body a { display: inline-block; margin-top: 30px; padding-bottom: 7px; border-bottom: 1px solid var(--gold); color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.zfnx-venue-date { grid-column: 2; grid-row: 3; display: flex; align-items: baseline; gap: 16px; padding: 22px clamp(36px,4vw,66px); border-top: 1px solid var(--rule); }
.zfnx-venue-date span { color: var(--gold-light); font-family: var(--display); font-size: 48px; }
.zfnx-venue-date p { color: var(--smoke); font-size: 11px; font-weight: 600; line-height: 1.35; letter-spacing: .11em; text-transform: uppercase; }

/* Partner chapters */
.zfnx-partners { background: var(--black); }
.zfnx-partners-head { display: grid; grid-template-columns: .48fr 1.5fr .65fr; gap: 5vw; align-items: end; min-height: 82svh; padding: 14vh var(--pad) 12vh; background: radial-gradient(circle at 25% 72%,rgba(189,150,80,.07),transparent 25%),#050505; }
.zfnx-partners-head h2 { color: var(--gold-light); font-family: var(--display); font-size: clamp(62px,7.4vw,116px); font-weight: 500; line-height: .98; letter-spacing: -.04em; }
.zfnx-partners-head h2 > span { display: block; }
.zfnx-partners-head h2 > span:first-child {
  font-kerning: none;
  font-variant-ligatures: none;
  font-feature-settings: "kern" 0, "liga" 0, "clig" 0, "dlig" 0;
  letter-spacing: .012em;
}
.zfnx-partners-head h2 > span + span { margin-top: .15em; }
.zfnx-partners-head > p:last-child { color: var(--smoke); font-size: 16px; line-height: 1.62; }
.zfnx-partner { display: grid; grid-template-columns: 58% 42%; min-height: 92svh; border-top: 1px solid var(--rule); background: #090806; }
.zfnx-partner:nth-child(even) { grid-template-columns: 42% 58%; }
.zfnx-partner-media { min-height: 92svh; overflow: hidden; }
.zfnx-partner-media img { height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); transform: scale(1.025); transition: transform 1.55s var(--ease); }
.zfnx-partner.is-visible .zfnx-partner-media img { transform: scale(1); }
.zfnx-partner:nth-child(even) .zfnx-partner-media { grid-column: 2; }
.zfnx-partner:nth-child(even) .zfnx-partner-panel { grid-column: 1; grid-row: 1; }
.zfnx-partner-panel { display: flex; min-width: 0; padding: 40px var(--pad); flex-direction: column; background: #0a0806; }
.zfnx-partner-meta { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 19px; border-bottom: 1px solid var(--rule); }
.zfnx-partner-meta p, .zfnx-partner-meta small, .zfnx-partner-signature { font-size: 11px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.zfnx-partner-meta p { color: var(--gold); }
.zfnx-partner-meta small { color: rgba(244,240,231,.42); }
.zfnx-partner-mark { display: grid; flex: 1; min-height: 280px; padding: clamp(54px,7vw,110px) 0; place-items: center; }
.zfnx-partner-mark img { width: min(100%,330px); max-height: 130px; object-fit: contain; filter: invert(86%) sepia(25%) saturate(701%) hue-rotate(356deg) brightness(96%); }
.zfnx-partner-laurent .zfnx-partner-mark img { width: min(100%,250px); }
.zfnx-partner-copy { max-width: 450px; padding: 28px 0; border-top: 1px solid var(--rule); color: rgba(244,240,231,.66); font-size: 15px; line-height: 1.62; }
.zfnx-partner-signature { padding-top: 19px; border-top: 1px solid var(--rule); color: var(--gold-light); }

/* Information and close */
.zfnx-notes { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; padding: clamp(100px,12vh,160px) var(--pad); background: #080705; }
.zfnx-note-list details { border-top: 1px solid var(--rule); }
.zfnx-note-list details:last-child { border-bottom: 1px solid var(--rule); }
.zfnx-note-list summary { display: flex; align-items: center; justify-content: space-between; min-height: 82px; cursor: pointer; font-size: 15px; list-style: none; }
.zfnx-note-list summary::-webkit-details-marker { display: none; }
.zfnx-note-list summary i { color: var(--gold); font-size: 22px; font-style: normal; font-weight: 400; transition: transform .3s ease; }
.zfnx-note-list details[open] summary i { transform: rotate(45deg); }
.zfnx-note-list details p { max-width: 560px; padding: 0 42px 28px 0; color: rgba(244,240,231,.62); font-size: 14px; line-height: 1.62; }
.zfnx-footer { padding: 46px var(--pad) 32px; background: #030303; }
.zfnx-footer-top, .zfnx-footer-meta { display: flex; align-items: center; justify-content: space-between; }
.zfnx-footer-top { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.zfnx-footer-top a { padding-bottom: 7px; border-bottom: 1px solid var(--gold); color: var(--gold-light); }
.zfnx-footer-title { position: relative; display: flex; gap: .14em; padding: 12vh 0 10vh; flex-direction: column; color: var(--gold-light); font-family: var(--display); font-size: clamp(78px,12.8vw,200px); font-weight: 500; line-height: .86; letter-spacing: -.045em; isolation: isolate; overflow: hidden; }
.zfnx-footer-title span { position: relative; z-index: 1; display: block; width: max-content; max-width: 100%; }
.zfnx-footer-title span:last-child { align-self: flex-end; color: var(--pearl); font-style: italic; line-height: .86; }
.zfnx-footer-title span::before,
.zfnx-footer-title span::after { content: ""; position: absolute; pointer-events: none; }
.zfnx-footer-title span::before { top: 54%; width: clamp(130px,29vw,480px); height: 1px; background: linear-gradient(90deg,rgba(234,209,141,.78),rgba(189,150,80,.28) 44%,transparent 100%); background-size: 220% 100%; box-shadow: 0 7px 0 rgba(234,209,141,.11); animation: zfnxFooterLine 6.8s var(--ease) infinite; }
.zfnx-footer-title span::after { top: calc(54% - 8px); width: 1px; height: 17px; background: linear-gradient(var(--gold-light),rgba(189,150,80,.12)); box-shadow: 0 0 15px rgba(234,209,141,.2); }
.zfnx-footer-title span:first-child::before { left: calc(100% + clamp(22px,3.4vw,58px)); }
.zfnx-footer-title span:first-child::after { left: calc(100% + clamp(14px,2.7vw,46px)); }
.zfnx-footer-title span:last-child::before { right: calc(100% + clamp(22px,3.4vw,58px)); transform: scaleX(-1); animation-delay: -3.4s; }
.zfnx-footer-title span:last-child::after { right: calc(100% + clamp(14px,2.7vw,46px)); }
@keyframes zfnxFooterLine { 0%,100% { opacity: .42; background-position: 100% 50%; } 50% { opacity: .82; background-position: 0% 50%; } }
.zfnx-footer-meta { padding-top: 25px; border-top: 1px solid var(--rule); color: var(--smoke); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

/* Motion system: masks, not gimmicks. */
.zfnx-reveal { opacity: 0; transform: translate3d(0,26px,0); transition: opacity 1s ease var(--reveal-delay,0ms),transform 1.15s var(--ease) var(--reveal-delay,0ms); }
.zfnx-reveal.is-visible { opacity: 1; transform: translate3d(0,0,0); }
.zfnx-mask-reveal { clip-path: inset(0 0 14% 0); transition: clip-path 1.35s var(--ease) var(--reveal-delay,0ms),opacity .9s ease var(--reveal-delay,0ms),transform 1.15s var(--ease) var(--reveal-delay,0ms); }
.zfnx-mask-reveal.is-visible { clip-path: inset(0 0 0 0); }

@media (max-width: 1120px) {
  .zfnx-nav-links { display: none; }
  .zfnx-invitation-core { grid-template-columns: 54px minmax(0,1fr); }
  .zfnx-edition-copy { grid-column: 2; max-width: 680px; }
  .zfnx-heritage-statement { grid-template-columns: .65fr 1fr; }
  .zfnx-heritage-statement > .zfnx-section-label { grid-column: 1 / -1; }
  .zfnx-house-intro, .zfnx-partners-head { grid-template-columns: .4fr 1.35fr; }
  .zfnx-house-intro h2, .zfnx-partners-head h2 { grid-column: 2; }
  .zfnx-house-intro > div, .zfnx-partners-head > p:last-child { grid-column: 2; }
  .zfnx-house-package { grid-template-columns: 47% 53%; }
}

@media (max-width: 820px) {
  .zfnx-section-rail { display: none; }
  .zfnx-night-intro { grid-template-columns: 1fr; }
  .zfnx-night-heading { padding-right: var(--pad); }
  .zfnx-night-portrait { min-height: 82vw; }
  .zfnx-ticket-list { grid-template-columns: 1fr; }
  .zfnx-ticket { border-right: 0; }
  .zfnx-house-package { display: flex; min-height: auto; flex-direction: column; }
  .zfnx-house-media, .zfnx-house-showroom .zfnx-house-media { order: 0; min-height: 72vw; }
  .zfnx-house-package > header { order: 1; }
  .zfnx-house-title { order: 2; }
  .zfnx-house-price, .zfnx-showroom-prices { order: 3; }
  .zfnx-house-columns, .zfnx-house-benefits { order: 4; }
  .zfnx-house-limit { order: 5; }
  .zfnx-house-contact { order: 6; }
  .zfnx-venue { grid-template-columns: 1fr; grid-template-rows: auto; }
  .zfnx-venue-media { grid-column: 1; grid-row: 1; min-height: 75vw; border-right: 0; }
  .zfnx-venue-name { grid-column: 1; grid-row: 2; }
  .zfnx-venue-body { grid-column: 1; grid-row: 3; }
  .zfnx-venue-date { grid-column: 1; grid-row: 4; }
  .zfnx-partner, .zfnx-partner:nth-child(even) { grid-template-columns: 1fr; }
  .zfnx-partner-media, .zfnx-partner:nth-child(even) .zfnx-partner-media { grid-column: 1; grid-row: 1; min-height: 82vw; }
  .zfnx-partner-panel, .zfnx-partner:nth-child(even) .zfnx-partner-panel { grid-column: 1; grid-row: 2; min-height: 68vw; }
}

@media (max-width: 767px) {
  :root { --pad: 21px; }
  .zfnx-intro-signature { width: min(78vw, 360px); }
  .zfnx-intro-mark { font-size: 92px; }
  .zfnx-intro-meta { bottom: 24px; font-size: 9px; }
  .zfnx-nav { grid-template-columns: 1fr auto; min-height: 72px; }
  .zfnx-wordmark span { display: none; }
  .zfnx-nav-ticket { font-size: 10px; }
  .zfnx-hero-kicker { top: 98px; align-items: flex-start; gap: 20px; font-size: 10px; line-height: 1.45; }
  .zfnx-hero-kicker span:first-child { max-width: 150px; }
  .zfnx-hero-kicker span:last-child { max-width: 130px; text-align: right; }
  .zfnx-hero-media img { object-position: 58% 38%; }
  .zfnx-hero-video { object-fit: cover; object-position: 50% 48%; }
  .zfnx-hero-title { bottom: 155px; font-size: clamp(58px,17.5vw,82px); line-height: .8; }
  .zfnx-hero-title span:last-child { align-self: flex-start; margin: 0 0 0 13px; }
  .zfnx-hero-date { bottom: 82px; }
  .zfnx-date-day { font-size: 52px; }
  .zfnx-date-copy { font-size: 9px; }
  .zfnx-hero-scroll { bottom: 26px; font-size: 10px; }
  .zfnx-invitation { padding-top: 88px; }
  .zfnx-invitation-top { align-items: flex-start; gap: 20px; }
  .zfnx-invitation-top > span { max-width: 120px; font-size: 10px; line-height: 1.45; text-align: right; }
  .zfnx-invitation-core { display: block; padding: 76px 0; }
  .zfnx-invitation-monogram { margin-bottom: 42px; }
  .zfnx-invitation-core h1 { font-size: clamp(54px,16vw,76px); }
  .zfnx-edition-copy { margin-top: 42px; }
  .zfnx-edition-copy p { font-size: 16px; }
  .zfnx-facts { grid-template-columns: 1fr 1fr; }
  .zfnx-facts div { min-height: 118px; padding: 24px var(--pad); border-bottom: 1px solid var(--rule); }
  .zfnx-facts div:nth-child(2) { border-right: 0; }
  .zfnx-threshold { gap: 11px; padding: 0 15px; font-size: 9px; }
  .zfnx-heritage { padding-top: 94px; padding-bottom: 94px; }
  .zfnx-heritage-statement { display: block; padding-bottom: 58px; }
  .zfnx-heritage-number { margin: 72px 0 66px; }
  .zfnx-heritage-number strong { font-size: clamp(132px,43vw,182px); }
  .zfnx-heritage-number span { font-size: 10px; }
  .zfnx-heritage-copy h2 { font-size: clamp(56px,15vw,74px); }
  .zfnx-heritage-copy p { margin-top: 27px; font-size: 16px; }
  .zfnx-heritage-image { height: 128vw; max-height: none; }
  .zfnx-heritage-image img { object-position: 54% center; }
  .zfnx-heritage-image figcaption { right: 17px; bottom: 17px; left: 17px; font-size: 9px; }
  .zfnx-film { height: 138svh; }
  .zfnx-film-rail { top: 22px; font-size: 9px; }
  .zfnx-film-stage video { object-position: 50% center; }
  .zfnx-film-signature { top: 42%; width: min(78vw,430px); }
  .zfnx-film-signature strong { font-size: clamp(74px,24vw,112px); }
  .zfnx-film-signature small { margin-top: 14px; font-size: 9px; }
  .zfnx-film-copy { right: 96px; bottom: 11svh; }
  .zfnx-film-copy h2 { font-size: clamp(48px,13vw,66px); }
  .zfnx-film-control { right: var(--pad); bottom: 24px; width: 62px; height: 62px; font-size: 9px; }
  .zfnx-night-heading { padding: 94px var(--pad) 74px; }
  .zfnx-night-heading h2 { font-size: clamp(56px,15vw,74px); }
  .zfnx-night-heading > p:last-child { margin-top: 32px; font-size: 16px; }
  .zfnx-night-portrait { min-height: 112vw; }
  .zfnx-night-portrait::after { background: linear-gradient(0deg,rgba(3,3,3,.38),transparent 42%); }
  .zfnx-night-portrait img { object-position: 53% center; }
  .zfnx-night-portrait figcaption { right: 17px; bottom: 17px; font-size: 9px; }
  .zfnx-moment { min-height: 92svh; }
  .zfnx-moment figure { inset: 14px; }
  .zfnx-moment-copy, .zfnx-moment:nth-of-type(even) .zfnx-moment-copy { right: 35px; bottom: 56px; left: 35px; max-width: none; }
  .zfnx-moment-copy h3 { font-size: clamp(50px,14vw,70px); }
  .zfnx-moment-copy p { font-size: 15px; }
  .zfnx-night-cta { min-height: 132px; font-size: 32px; }
  .zfnx-night-cta i { width: 64px; }
  .zfnx-ticket-intro { right: var(--pad); bottom: 72px; }
  .zfnx-ticket-intro h2 { font-size: clamp(60px,16vw,80px); }
  .zfnx-ticket-intro p:not(.zfnx-section-label) { font-size: 16px; }
  .zfnx-ticket-image img { object-position: 57% center; }
  .zfnx-ticket-image figcaption { right: var(--pad); bottom: 22px; font-size: 9px; }
  .zfnx-ticket { min-height: 610px; padding: 34px var(--pad); }
  .zfnx-ticket:hover,
  .zfnx-ticket:focus-within,
  .zfnx-ticket.is-lux-active { transform: none; box-shadow: inset 0 0 0 1px rgba(234,209,141,.18), 0 18px 44px rgba(0,0,0,.24); }
  .zfnx-ticket::before { right: -5px; bottom: -18px; color: rgba(234,209,141,.09); font-size: clamp(108px,35vw,150px); }
  .zfnx-ticket:nth-child(3)::before,
  .zfnx-ticket-signature::before { color: rgba(234,209,141,.14); }
  .zfnx-ticket-copy { padding-top: 76px; }
  .zfnx-ticket-copy h3 { font-size: clamp(48px,14vw,66px); }
  .zfnx-ticket-copy > span { font-size: 14px; }
  .zfnx-ticket > strong { font-size: 52px; }
  .zfnx-house-intro, .zfnx-partners-head { display: block; min-height: auto; padding: 98px var(--pad); }
  .zfnx-house-intro h2, .zfnx-partners-head h2 { margin-top: 50px; font-size: clamp(56px,15vw,76px); }
  .zfnx-house-intro > div, .zfnx-partners-head > p:last-child { margin-top: 40px; }
  .zfnx-house-media, .zfnx-house-showroom .zfnx-house-media { min-height: 118vw; }
  .zfnx-house-package > header, .zfnx-house-title, .zfnx-house-price, .zfnx-house-columns, .zfnx-showroom-prices, .zfnx-house-benefits, .zfnx-house-limit, .zfnx-house-contact { margin-right: var(--pad); margin-left: var(--pad); }
  .zfnx-house-title h3 { font-size: clamp(50px,14vw,68px); }
  .zfnx-house-columns { grid-template-columns: 1fr; gap: 28px; }
  .zfnx-showroom-prices strong { font-size: 46px; }
  .zfnx-house-benefits > div { grid-template-columns: 1fr; gap: 8px; }
  .zfnx-venue-media { min-height: 112vw; }
  .zfnx-venue-name { padding: 72px var(--pad) 38px; }
  .zfnx-venue-name h2 { font-size: clamp(68px,19vw,92px); }
  .zfnx-venue-body { padding: 64px var(--pad); }
  .zfnx-venue-date { padding-right: var(--pad); padding-left: var(--pad); }
  .zfnx-partner-media, .zfnx-partner:nth-child(even) .zfnx-partner-media { min-height: 118vw; }
  .zfnx-partner-panel, .zfnx-partner:nth-child(even) .zfnx-partner-panel { min-height: 112vw; padding: 32px var(--pad); }
  .zfnx-partner-meta p, .zfnx-partner-meta small { font-size: 9px; }
  .zfnx-partner-mark { min-height: 250px; }
  .zfnx-notes { display: block; padding-top: 92px; padding-bottom: 92px; }
  .zfnx-note-list { margin-top: 48px; }
  .zfnx-footer { padding-top: 38px; }
  .zfnx-footer-title { gap: .12em; padding: 10vh 0; font-size: clamp(66px,18vw,90px); line-height: .9; }
  .zfnx-footer-title span::before { width: clamp(72px,24vw,110px); box-shadow: 0 5px 0 rgba(234,209,141,.1); }
  .zfnx-footer-title span:first-child::before { left: calc(100% + 17px); }
  .zfnx-footer-title span:first-child::after { left: calc(100% + 11px); }
  .zfnx-footer-title span:last-child::before { top: calc(100% + 22px); right: auto; left: 0; width: min(42vw,164px); transform: none; }
  .zfnx-footer-title span:last-child::after { top: calc(100% + 14px); right: auto; left: calc(min(42vw,164px) + 8px); }
  .zfnx-footer-meta { align-items: flex-start; gap: 22px; font-size: 9px; }
  .zfnx-footer-meta span { max-width: 250px; line-height: 1.5; }
}

@media (max-width: 380px) {
  .zfnx-showroom-prices { grid-template-columns: 1fr; }
  .zfnx-showroom-prices > div + div { margin-top: 22px; padding: 22px 0 0; border-top: 1px solid var(--rule); border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .zfnx-intro { display: none; }
  .zfnx-hero::after { display: none; }
  .zfnx-footer-title span::before { animation: none; opacity: .68; }
  .zfnx-hero-title span, .zfnx-hero-kicker, .zfnx-hero-date, .zfnx-hero-scroll, .zfnx-hero-media img, .zfnx-hero-video, .zfnx-reveal, .zfnx-mask-reveal, .zfnx-heritage-image img, .zfnx-night-portrait img, .zfnx-moment img, .zfnx-house-media img, .zfnx-partner-media img, .zfnx-film-ring { opacity: 1; clip-path: none; transform: none; transition: none; animation: none; }
}
