/* Nothing moves under the entry screen: on touch there is no scroll library to stop, so the page itself is held. */
html.is-held, html.is-held body { overflow: hidden; touch-action: none; }

/* Kesharim: shared styles (nav, sections from "6 chairs" down, footer). */
@font-face { font-family: "Placebo"; src: url(fonts/placebo-regular-fm.otf) format("opentype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Placebo"; src: url(fonts/placebo-medium-fm.otf) format("opentype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Placebo"; src: url(fonts/placebo-demibold-fm.otf) format("opentype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Placebo"; src: url(fonts/placebo-bold-fm.otf) format("opentype"); font-weight: 700 900; font-display: swap; }
@font-face { font-family: "Ploni"; src: url(fonts/ploni-light-aaa.otf) format("opentype"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Ploni"; src: url(fonts/ploni-regular-aaa.otf) format("opentype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Ploni"; src: url(fonts/ploni-medium-aaa.otf) format("opentype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Ploni"; src: url(fonts/ploni-demibold-aaa.otf) format("opentype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Ploni"; src: url(fonts/ploni-bold-aaa.otf) format("opentype"); font-weight: 700; font-display: swap; }

/* Shape rule: buttons are full pill, cards and media are 22px, circles stay circles.
   Type rule: supporting text next to a display heading stays between a quarter and a third of its size. */
:root {
  --paper: #f3f3f0;
  --white: #fcfcfa;
  --ink: #1c1b19;
  --ink-2: #55524c;
  --mute: #c4bfb4;
  --gold: #eeb91d;
  --r: 22px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --pad: clamp(20px, 5vw, 72px);
  --display: "Placebo", "Ploni", sans-serif;
  --t-body: clamp(1.08rem, 1rem + .35vw, 1.3rem);
  --t-lead: clamp(1.2rem, .95rem + .75vw, 1.75rem);
  --t-small: clamp(.98rem, .93rem + .2vw, 1.1rem);
}
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; }
html { overflow-x: clip; scrollbar-color: var(--gold) var(--ink); scrollbar-width: thin; }
body {
  background: var(--paper); color: var(--ink);
  font-family: "Ploni", system-ui, sans-serif;
  font-size: var(--t-body); line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--ink); }
img, video { display: block; max-width: 100%; }
.display { font-family: var(--display); font-weight: 700; line-height: .95; margin: 0; letter-spacing: -.01em; text-wrap: balance; }
p { text-wrap: pretty; }
.nw { white-space: nowrap; }
.wrap { width: min(1400px, 100%); margin-inline: auto; padding-inline: var(--pad); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hl { background: linear-gradient(var(--gold), var(--gold)) no-repeat 100% 88% / 100% .32em; }
.line { display: block; overflow: hidden; padding-bottom: .08em; }
.line > span { display: block; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; box-shadow: 0 0 0 6px rgba(238, 185, 29, .55); }
.chairs :focus-visible, .naomi :focus-visible, footer :focus-visible, .stage :focus-visible { outline-color: var(--paper); }
/* skip link */
.skip { position: fixed; top: 10px; right: 10px; z-index: 100; background: var(--ink); color: var(--gold); padding: .8em 1.2em; border-radius: 999px; font-weight: 600; text-decoration: none; transform: translateY(-160%); transition: transform .3s var(--ease); }
.skip:focus { transform: none; }

/* entry screen (src/partials/loader.html): gold, a black line fills right to left, then it wipes up */
html.is-loading { overflow: hidden; }
.loader {
  position: fixed; inset: 0; z-index: 200; background: var(--gold); color: var(--ink);
  display: grid; place-items: center; clip-path: inset(0 0 0 0);
  transition: clip-path 1s cubic-bezier(.77, 0, .18, 1);
  animation: loader-failsafe 0s 10s forwards; /* if the script never finishes, the page still shows */
}
.loader.is-out { clip-path: inset(0 0 100% 0); }
.loader-mark { width: clamp(64px, 7vw, 92px); aspect-ratio: 227.56 / 216; translate: 0 -34px; transition: opacity .4s, translate .8s var(--ease); }
.loader.is-out .loader-mark { opacity: 0; translate: 0 -70px; }
.loader-line { position: absolute; inset: 50% 0 auto 0; height: 6px; margin-top: 30px; background: rgba(28, 27, 25, .12); }
.loader-line i { position: absolute; inset: 0; background: var(--ink); transform: scaleX(0); transform-origin: right; }
@keyframes loader-failsafe { to { visibility: hidden; } }
@media (prefers-reduced-motion: reduce) {
  .loader { transition: opacity .3s; }
  .loader.is-out { clip-path: none; opacity: 0; }
}

/* buttons */
.btn {
  --b: var(--ink); --t: var(--gold);
  display: inline-flex; align-items: center; gap: .7em; white-space: nowrap;
  padding: 1em 1.6em 1em 1.3em; border-radius: 999px; border: 0; cursor: pointer; text-decoration: none;
  background: var(--b); color: var(--t); font: 600 1.1rem/1 "Ploni", sans-serif;
  position: relative; overflow: hidden; isolation: isolate; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: #3a3833; border-radius: inherit; transform: scale(0); transition: transform .6s var(--ease); }
.btn:hover::before { transform: scale(1.02); }
.btn:hover { box-shadow: 0 14px 30px -14px rgba(28, 27, 25, .55); }
.btn:active { transform: scale(.97); }
.btn .arr { width: 1.1em; height: 1.1em; transition: transform .5s var(--ease); }
.btn:hover .arr { transform: translateX(-5px); }
.btn:focus-visible { outline: 3px solid currentColor; outline-offset: 4px; }
.btn--gold { --b: var(--gold); --t: var(--ink); }
.btn--gold::before { background: #f6cd4b; }

/* nav */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; height: 76px; display: flex; align-items: center; color: var(--ink); transition: transform .6s var(--ease), background .4s, color .4s; }
.nav.is-scrolled { background: rgba(243, 243, 240, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.nav.is-hidden { transform: translateY(-100%); }
.nav .wrap { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; color: inherit; text-decoration: none; transition: opacity .3s; }
.brand:hover { opacity: .85; }
.nav .logo { height: 54px; width: calc(54px * 226 / 156); }
.nav .btn { font-size: 1rem; padding: .8em 1.35em; }
.nav.on-dark { color: #fff; }
.nav.on-dark.is-scrolled { background: rgba(28, 27, 25, .72); }
.nav.on-dark .btn { --b: var(--gold); --t: var(--ink); }
.nav.on-dark .btn::before { background: #f6cd4b; }

/* scroll progress ring */
.to-top {
  position: fixed; left: clamp(14px, 2vw, 28px); bottom: clamp(14px, 2vw, 28px); z-index: 60; width: 54px; height: 54px; padding: 0;
  border: 0; border-radius: 50%; background: var(--ink); color: var(--gold); cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 16px 30px -16px rgba(0, 0, 0, .6); opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.to-top.is-on { opacity: 1; transform: none; pointer-events: auto; }
.to-top.is-away { opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none; }
.to-top > svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.to-top .trk { fill: none; stroke: rgba(243, 243, 240, .14); stroke-width: 3; }
.to-top .bar { fill: none; stroke: var(--gold); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: calc(100 - var(--p, 0) * 100); }
.to-top .up { position: relative; width: 20px; height: 20px; transform: none; transition: transform .4s var(--ease); }
.to-top:hover .up { transform: translateY(-3px); }

/* dark sections share the hero's weave, so the slide between them has no visible seam */
.tex-dark { position: relative; isolation: isolate; }
.tex-dark::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .3;
  background-image:
    radial-gradient(65% 50% at 50% 46%, rgba(238, 185, 29, .12), transparent 72%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='w'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012 0.9' numOctaves='3' seed='7'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23w)' opacity='0.5'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.35'/%3E%3C/svg%3E");
  background-size: auto, 300px 300px, 260px 260px;
  mix-blend-mode: soft-light;
}

/* sticky WhatsApp */
.wa {
  position: fixed; right: clamp(14px, 2vw, 28px); bottom: clamp(14px, 2vw, 28px); z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; text-decoration: none;
  background: #25d366; color: #0b3d20; box-shadow: 0 16px 30px -14px rgba(0, 0, 0, .5);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.wa svg { width: 32px; height: 32px; fill: currentColor; }
.wa::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37, 211, 102, .5); animation: ring 2.6s var(--ease) infinite; }
.wa:hover { transform: scale(1.08); box-shadow: 0 20px 36px -14px rgba(37, 211, 102, .6); }

/* horizontal chairs */
.chairs { background: var(--ink); color: var(--paper); overflow: hidden; }
.chairs .viewport { position: relative; z-index: 1; }
.chairs .viewport { min-height: 100dvh; display: flex; align-items: center; }
.chairs .track { display: flex; gap: clamp(20px, 2.4vw, 36px); padding-inline: var(--pad); align-items: center; }
.chairs .intro-panel { flex: none; width: min(620px, 86vw); padding-left: clamp(20px, 4vw, 70px); }
.chairs h2 { font-size: clamp(3rem, 2rem + 3.8vw, 6.2rem); font-weight: 700; }
.chairs h2 span { color: var(--gold); display: block; }
.chairs .intro-panel p { color: var(--mute); max-width: 36ch; margin: 1.4rem 0 0; font-size: var(--t-lead); line-height: 1.45; }
.chairs .intro-panel .hint { display: inline-flex; align-items: center; gap: .6em; color: var(--gold); font-weight: 600; font-size: var(--t-body); margin-top: 1.8rem; }
.chairs .intro-panel .hint svg { width: 1.3em; height: 1.3em; }
.card {
  flex: none; width: clamp(260px, 24vw, 340px); aspect-ratio: 3 / 4.2; border-radius: var(--r);
  background: var(--white); color: var(--ink); padding: 26px; display: flex; flex-direction: column; justify-content: space-between;
  position: relative; transition: transform .7s var(--ease);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6);
}
.card:nth-child(odd) { transform: rotate(-2.5deg) translateY(14px); }
.card:nth-child(even) { transform: rotate(2deg) translateY(-12px); }
.card:hover { transform: rotate(0) translateY(-10px); }
.card .corner { display: flex; justify-content: space-between; align-items: center; }
.card .corner svg { width: 38px; height: 36px; color: var(--gold); }
.card .corner i { width: 12px; height: 12px; border-radius: 50%; border: 2px solid currentColor; opacity: .5; }
.card b { font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 1.3rem + 1.3vw, 2.7rem); line-height: 1.02; }
.card--gold { background: var(--gold); }
.card--gold .corner svg { color: var(--ink); }
.card--line { background: transparent; color: var(--paper); border: 1.5px solid rgba(243, 243, 240, .35); box-shadow: none; }
.coffee { flex: none; width: min(620px, 86vw); padding-inline: clamp(30px, 5vw, 90px) 0; }
.coffee p { font-family: var(--display); font-weight: 500; font-size: clamp(2.2rem, 1.4rem + 2.6vw, 4.4rem); line-height: 1.05; margin: 0; }
.coffee p span { color: var(--gold); display: block; margin-top: .3em; }

/* less / more */
.versus { padding-block: clamp(100px, 14vw, 200px); text-align: center; }
.versus small { display: block; font-weight: 600; font-size: var(--t-lead); }
.versus .row { display: block; font-family: var(--display); font-weight: 700; line-height: 1.05; font-size: clamp(1.9rem, .7rem + 4.2vw, 6rem); margin-top: .2em; }
.versus .row.less { color: #7c7870; }
/* the two lines used to be held apart by the words in front of them */
.versus .row.more { margin-top: .34em; }
.versus .strike { position: relative; display: inline-block; white-space: nowrap; }
.versus .strike::after { content: ""; position: absolute; right: -.08em; left: -.08em; top: 46%; height: .1em; margin-top: -.05em; background: var(--gold); border-radius: 99px; transform-origin: right; transform: scaleX(var(--strike, 1)); }
.versus .more .hlx { display: inline-block; white-space: nowrap; background: linear-gradient(var(--gold), var(--gold)) no-repeat 100% 62% / calc(var(--fill, 1) * 100%) .44em; padding-inline: .12em; }
.versus p { max-width: 44ch; margin: 2.2rem auto 0; color: var(--ink-2); font-size: var(--t-lead); line-height: 1.45; }

/* meetup ticket (details come from assets/meetup.js) */
.meetup-wrap { padding-bottom: clamp(90px, 13vw, 180px); }
/* every month a different field: a gold band that drifts across the page */
.ticker { background: var(--gold); color: var(--ink); overflow: hidden; padding-block: clamp(10px, 1.2vw, 16px); margin-bottom: clamp(48px, 6vw, 86px); }
.ticker-track { display: flex; width: max-content; gap: clamp(28px, 4vw, 60px); align-items: center; animation: ticker 44s linear infinite; }
.ticker span { display: inline-flex; align-items: center; gap: clamp(28px, 4vw, 60px); white-space: nowrap; font-family: var(--display); font-weight: 700; font-size: clamp(1.2rem, .95rem + .9vw, 2rem); }
.ticker svg { width: 1.1em; height: 1.05em; flex: none; }
@keyframes ticker { to { transform: translateX(50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; justify-content: center; width: 100%; } .ticker span:nth-child(n+2) { display: none; } }
.ticket { display: grid; grid-template-columns: 1.4fr auto .8fr; background: var(--ink); color: var(--paper); border-radius: var(--r); position: relative; }
.ticket .main { padding: clamp(46px, 5.5vw, 86px) clamp(30px, 5vw, 76px) clamp(30px, 5vw, 76px); }
/* the badge straddles the ticket edge: half on the paper, half on the dark card */
.ticket .kicker { position: absolute; top: 0; right: clamp(24px, 5vw, 90px); translate: 0 -50%; z-index: 3; display: inline-flex; align-items: center; gap: .6em; background: var(--gold); color: var(--ink); border-radius: 999px; padding: .55em 1.5em; font-family: var(--display); font-weight: 700; font-size: clamp(1.15rem, .95rem + .8vw, 1.8rem); box-shadow: 0 10px 24px -14px rgba(28, 27, 25, .6); }
.ticket .kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .25; } }
.ticket h2 { font-size: clamp(2.8rem, 1.6rem + 4vw, 6.2rem); font-weight: 700; color: var(--gold); margin-top: 0; line-height: .95; max-width: 9ch; }
.ticket .desc { color: var(--mute); max-width: 40ch; margin: 1.3rem 0 0; font-size: var(--t-lead); line-height: 1.45; }
.ticket .facts { display: flex; gap: 22px clamp(24px, 4vw, 56px); margin: 2.2rem 0 0; flex-wrap: wrap; }
.ticket .facts dt { font-size: var(--t-small); color: var(--mute); }
.ticket .facts dd { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(1.4rem, 1.1rem + .8vw, 1.9rem); max-width: 22ch; line-height: 1.2; }
.ticket .perf { width: 0; border-inline-start: 2px dashed rgba(243, 243, 240, .25); position: relative; margin-block: 28px; }
.ticket .perf::before, .ticket .perf::after { content: ""; position: absolute; width: 44px; height: 44px; border-radius: 50%; background: var(--paper); right: -23px; }
.ticket .perf::before { top: -50px; }
.ticket .perf::after { bottom: -50px; }
.ticket .stub { padding: clamp(30px, 4vw, 60px); display: flex; flex-direction: column; justify-content: flex-end; gap: clamp(18px, 2vw, 26px); }
.ticket .price { font-family: var(--display); font-weight: 700; font-size: clamp(3.4rem, 2.4rem + 3vw, 6rem); line-height: .9; }
.ticket .price small { font-family: "Ploni"; font-size: var(--t-body); font-weight: 500; color: var(--mute); display: block; margin-bottom: .5rem; }
.ticket .price small.vat { font-size: var(--t-small); font-weight: 400; margin: .7rem 0 0; }
.vat-note { margin: .8rem 0 0; font-size: var(--t-small); color: var(--ink-2); }
footer .wrap > span a { color: inherit; text-underline-offset: 3px; }
footer .wrap > span a:hover { color: var(--gold); }
.ticket .duo { border-top: 1px solid rgba(243, 243, 240, .15); padding-top: 18px; }
.ticket .duo span { color: var(--mute); font-size: var(--t-body); }
.ticket .duo b { display: block; font-family: var(--display); font-size: 2.2rem; color: var(--gold); line-height: 1.1; }
.ticket .duo b small { font-family: "Ploni"; font-size: var(--t-body); color: var(--paper); font-weight: 500; }
.ticket .btn { align-self: stretch; justify-content: center; white-space: normal; text-align: center; line-height: 1.25; }
.ticket .duo-link { color: var(--gold); font-weight: 600; text-align: center; text-underline-offset: 4px; margin-top: -10px; }

/* naomi: she stands free on the dark, the gold circle and the mark beside her */
.naomi { background: var(--ink); color: var(--paper); padding-block: clamp(70px, 10vw, 140px) clamp(80px, 12vw, 170px); }
.naomi .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 72px); align-items: center; }
.naomi .who { font-weight: 600; font-size: var(--t-lead); color: var(--gold); }
.naomi h2 { font-size: clamp(3.4rem, 2rem + 5vw, 8rem); font-weight: 700; line-height: .88; margin-top: .25em; }
.naomi .role { display: inline-block; margin-top: 1.4rem; font-weight: 600; font-size: var(--t-lead); color: var(--gold); background: none; }
.naomi .body { color: var(--mute); max-width: 44ch; font-size: var(--t-lead); line-height: 1.5; }
.naomi blockquote { margin: 2.2rem 0 0; padding-right: 1.2rem; border-right: 6px solid var(--gold); font-family: var(--display); font-weight: 500; font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.5rem); line-height: 1.2; max-width: 24ch; }
.naomi .art { position: relative; aspect-ratio: 3 / 4; width: min(100%, 560px); justify-self: center; }
.naomi .art::before { content: ""; position: absolute; inset: -8% -10%; background: radial-gradient(58% 58% at 52% 38%, #121210 52%, rgba(18, 18, 16, 0) 100%); }
.naomi .art .sun { position: absolute; width: 44%; aspect-ratio: 1; border-radius: 50%; background: var(--gold); left: -1%; bottom: 3%; }
.naomi .art .por {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%;
  filter: contrast(1.04);
  -webkit-mask-image: radial-gradient(62% 70% at 54% 34%, #000 30%, rgba(0, 0, 0, .6) 62%, rgba(0, 0, 0, .2) 84%, transparent 100%);
  mask-image: radial-gradient(62% 70% at 54% 34%, #000 30%, rgba(0, 0, 0, .6) 62%, rgba(0, 0, 0, .2) 84%, transparent 100%);
}
.naomi .art .badge { position: absolute; width: 17%; aspect-ratio: 227.56 / 216; left: 2%; top: 4%; color: var(--gold); z-index: 2; }

/* gallery collage (the only place with event photos) */
.gallery { padding-block: clamp(70px, 8vw, 120px) clamp(100px, 14vw, 200px); }
.gallery h2 { font-size: clamp(2.8rem, 1.8rem + 3.6vw, 5.6rem); font-weight: 700; text-align: center; }
.collage { position: relative; height: clamp(820px, 70vw, 1060px); margin-top: clamp(30px, 5vw, 70px); }
.collage > * { position: absolute; }
.collage .ph { margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: 0 30px 50px -30px rgba(28, 27, 25, .5); }
.collage .ph img { width: 100%; height: 100%; object-fit: cover; }
.collage .p1 { width: 18%; aspect-ratio: 3 / 4; right: 0; top: 0; rotate: 3deg; }
.collage .p2 { width: 16%; aspect-ratio: 3 / 4; right: 1%; bottom: 2%; rotate: -4deg; }
.collage .p3 { width: 19%; aspect-ratio: 3 / 4; left: 0; top: 6%; rotate: -3deg; }
.collage .p4 { width: 17%; aspect-ratio: 4 / 5; left: 1%; bottom: 1%; rotate: 5deg; }
.collage .p5 { width: 14%; aspect-ratio: 3 / 4; right: 3%; top: 40%; rotate: -2deg; }
.collage .p6 { width: 16%; aspect-ratio: 3 / 4; left: 2%; top: 42%; rotate: 3deg; }

/* testimonial video: poster + "take a peek" overlay, plays inline on click */
.video-slot {
  width: clamp(270px, 25vw, 370px); aspect-ratio: 9 / 16; left: 50%; top: 50%; translate: -50% -50%;
  border-radius: var(--r); background: var(--ink); color: var(--paper); overflow: hidden; z-index: 2; padding: 0;
  box-shadow: 0 40px 80px -30px rgba(28, 27, 25, .6);
}
.video-slot video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-slot .peek {
  position: absolute; inset: 0; border: 0; padding: 24px; cursor: pointer; color: var(--paper); font: inherit;
  display: grid; place-content: center; justify-items: center; gap: 18px; text-align: center;
  background: linear-gradient(to top, rgba(28, 27, 25, .85), rgba(28, 27, 25, .25) 55%, rgba(28, 27, 25, .5));
  transition: opacity .5s var(--ease);
}
.video-slot .peek b { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 1.5rem + 1.2vw, 2.8rem); line-height: 1; display: flex; align-items: center; gap: .3em; }
.video-slot .peek b svg { width: 1.05em; height: 1.05em; fill: var(--gold); transition: transform .6s var(--ease); }
.video-slot .peek:hover b svg { transform: rotate(-14deg) scale(1.12); }
.video-slot .play { width: 86px; height: 86px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; transition: transform .6s var(--ease); position: relative; }
.video-slot .play::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid rgba(238, 185, 29, .55); animation: ring 2.2s var(--ease) infinite; }
@keyframes ring { from { transform: scale(.85); opacity: 1; } to { transform: scale(1.35); opacity: 0; } }
.video-slot .peek:hover .play { transform: scale(1.08); }
.video-slot .play svg { width: 30px; height: 30px; fill: var(--ink); margin-left: 5px; }
.video-slot.is-playing .peek { opacity: 0; pointer-events: none; }
/* sound toggle on the video */
.video-slot .sound {
  position: absolute; left: 50%; top: 14px; translate: -50% 0; z-index: 3; display: inline-flex; align-items: center; gap: .45em; white-space: nowrap;
  border: 0; border-radius: 999px; padding: .55em 1em .55em .8em; cursor: pointer;
  background: rgba(28, 27, 25, .72); color: var(--paper); font: 600 .95rem/1 "Ploni", sans-serif;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, .6); transition: background .3s, color .3s;
}
.video-slot .sound:hover { background: var(--gold); color: var(--ink); }
.video-slot .sound svg { width: 20px; height: 20px; fill: currentColor; }
.video-slot .sound .off, .video-slot.is-muted .sound .on { display: none; }
.video-slot.is-muted .sound .off { display: inline; }

.note { margin: 0; width: clamp(220px, 18vw, 270px); background: var(--white); border-radius: var(--r); padding: 22px 24px; z-index: 3; box-shadow: 0 24px 50px -24px rgba(28, 27, 25, .35); }
.note p { margin: 0; font-family: var(--display); font-weight: 500; font-size: clamp(1.15rem, 1rem + .45vw, 1.4rem); line-height: 1.25; }
.note cite { display: block; font-style: normal; font-size: var(--t-small); font-weight: 600; color: var(--ink-2); margin-top: .8rem; }
.note.n1 { right: 20%; top: 0; rotate: -3deg; }
.note.n2 { left: 20%; bottom: 1%; rotate: 3deg; background: var(--gold); }
.note.n2 cite { color: var(--ink); }
.note.n3 { left: 20%; top: 5%; rotate: 2deg; }
.note.n4 { right: 20%; bottom: 3%; rotate: -2deg; background: var(--ink); color: var(--paper); }
.note.n4 cite { color: var(--gold); }

/* final */
.final .block { background: var(--gold); padding-block: clamp(100px, 14vw, 200px); text-align: center; }
.final h2 { font-size: clamp(3rem, 1.6rem + 5.2vw, 8.4rem); font-weight: 700; line-height: .92; max-width: 13ch; margin-inline: auto; }
.final p { max-width: 46ch; margin: 2rem auto 0; font-size: var(--t-lead); line-height: 1.45; }
/* paragraphs broken by meaning: one phrase per line */
.lines { max-width: none !important; }
.lines > span { display: block; text-wrap: balance; }
/* the display fonts have no shekel sign, so it comes from the body font at a matching size */
.nis { font-family: "Ploni", sans-serif; font-weight: 600; font-size: .62em; margin-inline-start: .3em; }
.final .kick { font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.5rem); line-height: 1.2; max-width: 26ch; }
.final .btn { margin-top: 2.6rem; font-size: 1.2rem; }
.final small { display: block; max-width: 60ch; margin: 2.6rem auto 0; font-size: var(--t-small); line-height: 1.55; }

footer { background: var(--ink); color: var(--mute); padding-block: clamp(36px, 5vw, 60px); }
footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; font-size: var(--t-body); }
footer .brand { color: #fff; }
footer .logo { height: 96px; width: calc(96px * 226 / 178); }
footer .foot-links { display: flex; gap: 28px; }
footer .foot-links a { color: var(--paper); text-decoration: none; font-weight: 500; transition: color .3s; }
footer .foot-links a:hover { color: var(--gold); }

/* hover life */
.collage .ph img { transition: transform 1.1s var(--ease), filter .8s var(--ease); }
.collage .ph:hover img { transform: scale(1.06); }
.note { transition: transform .7s var(--ease), rotate .7s var(--ease), box-shadow .7s var(--ease); }
.note:hover { rotate: 0deg; transform: translateY(-8px); box-shadow: 0 34px 60px -28px rgba(28, 27, 25, .45); }
.chairs .intro-panel .hint svg { transition: transform .5s var(--ease); }
.chairs .intro-panel:hover .hint svg { transform: translateX(-6px); }
.ticket { transition: box-shadow .8s var(--ease); }
.ticket:hover { box-shadow: 0 40px 80px -50px rgba(238, 185, 29, .8); }
.naomi .art .por { transition: transform .9s var(--ease); }
.naomi .art:hover .por { transform: translateY(-8px); }
footer .foot-links a { position: relative; }
footer .foot-links a::after { content: ""; position: absolute; inset: auto 0 -4px 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
footer .foot-links a:hover::after { transform: scaleX(1); }

/* pointer: a gold ring that follows the hand, with a dot at the tip */
.has-cursor, .has-cursor * { cursor: none; }
.has-cursor input[type="text"], .has-cursor input[type="email"], .has-cursor input[type="tel"], .has-cursor input[type="url"], .has-cursor textarea { cursor: text; }
@media (forced-colors: active) {
  .has-cursor, .has-cursor * { cursor: auto; }
  .cur { display: none; }
}
.cur { position: fixed; inset: 0; z-index: 90; pointer-events: none; transition: opacity .3s; }
.cur .ring, .cur .dot { position: fixed; left: 0; top: 0; border-radius: 50%; }
.cur .ring {
  width: 42px; height: 42px; margin: -21px 0 0 -21px; border: 1.5px solid var(--gold);
  translate: var(--rx, -100px) var(--ry, -100px);
  transition: width .45s var(--ease), height .45s var(--ease), margin .45s var(--ease), background .45s, opacity .45s;
}
.cur .dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--gold); translate: var(--dx, -100px) var(--dy, -100px); }
.cur.is-hot .ring { width: 74px; height: 74px; margin: -37px 0 0 -37px; background: rgba(238, 185, 29, .16); }
.cur.is-down .ring { width: 30px; height: 30px; margin: -15px 0 0 -15px; background: rgba(238, 185, 29, .3); }
/* on anything gold the pointer turns black, so it never disappears */
.cur.on-gold .ring { border-color: var(--ink); }
.cur.on-gold .dot { background: var(--ink); }
.cur.on-gold.is-hot .ring, .cur.on-gold.is-down .ring { background: rgba(28, 27, 25, .14); }

@media (max-width: 860px) {
  .chairs .viewport { display: block; padding-block: 90px; }
  .chairs .track { flex-direction: column; align-items: stretch; }
  .card { width: 100%; aspect-ratio: auto; min-height: 220px; }
  .ticket { grid-template-columns: 1fr; }
  .ticket .perf { width: auto; height: 0; border-inline-start: 0; border-top: 2px dashed rgba(243, 243, 240, .25); margin: 0 28px; }
  .ticket .perf::before, .ticket .perf::after { display: none; }
  .collage { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  /* the collage positions are set per element, so the reset has to match their weight */
  .collage .ph, .collage .note, .collage .video-slot {
    position: relative; inset: auto; left: auto; right: auto; top: auto; bottom: auto;
    rotate: 0deg; translate: none; width: auto;
  }
  .collage .video-slot { grid-column: 1 / -1; width: 100%; max-width: 360px; justify-self: center; }
  .collage .note { grid-column: 1 / -1; }
  /* the group photo leads full width, the other four sit in an even 2x2 */
  .collage .ph { aspect-ratio: 3 / 4; }
  .collage .p1, .collage .p6 { grid-column: 1 / -1; aspect-ratio: 4 / 5; }
  .collage .ph img { object-position: 50% 35%; }
  .note p { line-height: 1.3; }

  /* one vertical rhythm and one heading size for every section on the phone */
  .versus, .naomi, .gallery { padding-block: 88px; }
  .meetup-wrap { padding-bottom: 88px; }
  .chairs .viewport { padding-block: 88px; }
  .final .block { padding-top: 88px; }
  .chairs h2, .ticket h2, .gallery h2, .final h2 { font-size: clamp(2.9rem, 2.2rem + 2.6vw, 3.8rem); }

  /* chairs: an even stack, tilted just enough to feel placed by hand */
  .chairs .track { gap: 26px; }
  .chairs .intro-panel { width: 100%; padding-left: 0; margin-bottom: 14px; }
  .card { min-height: 200px; }
  .card:nth-child(odd) { transform: rotate(-1.5deg); }
  .card:nth-child(even) { transform: rotate(1.2deg); }
  .coffee { width: 100%; padding-inline: 0; margin-top: 40px; }

  /* long buttons wrap into two balanced lines instead of leaving the screen */
  .final .btn, .ticket .btn { white-space: normal; text-wrap: balance; text-align: center; line-height: 1.3; max-width: 100%; }
  .final .btn { font-size: 1.1rem; padding: 1em 1.4em; }

  /* naomi: the portrait belongs beside her name, so .col dissolves and its children join the grid */
  .naomi .lines > span { display: inline; }
  .naomi .wrap {
    grid-template-columns: minmax(0, 1fr) 44%;
    grid-template-areas: "who who" "name art" "body body" "quote quote";
    gap: 10px 18px; align-items: start;
  }
  .naomi .wrap > .col { display: contents; }
  .naomi .who { grid-area: who; font-size: .95rem; }
  .naomi .head { grid-area: name; }
  .naomi .body { grid-area: body; margin-top: 1.6rem; }
  .naomi blockquote { grid-area: quote; max-width: none; margin-top: 1.6rem; }
  .naomi h2 { font-size: clamp(2.5rem, 1.5rem + 5vw, 3.6rem); margin-top: .3em; }
  .naomi .role { margin-top: .9rem; font-size: 1rem; line-height: 1.35; }
  .naomi .art { grid-area: art; margin-top: .3em; aspect-ratio: 4 / 5; width: 100%; }
  .naomi .art::before { inset: -6% -12% -4%; }
  /* smaller frame, so less of her is allowed to fade out at the edges */
  .naomi .art .por {
    -webkit-mask-image: radial-gradient(62% 72% at 54% 34%, #000 38%, rgba(0, 0, 0, .7) 70%, rgba(0, 0, 0, .22) 90%, transparent 100%);
    mask-image: radial-gradient(62% 72% at 54% 34%, #000 38%, rgba(0, 0, 0, .7) 70%, rgba(0, 0, 0, .22) 90%, transparent 100%);
  }
  .naomi .art .badge { width: 23%; left: 0; top: 1%; }
  .naomi .art .sun { width: 48%; }
  /* room under the last call to action, so the floating buttons never sit on it */
  .ticket .stub, .final .block, .form-page .submit-row { padding-bottom: 92px; }
  .wa { width: 52px; height: 52px; }
  .wa svg { width: 28px; height: 28px; }
  .to-top { width: 48px; height: 48px; }
  .nav .logo { height: 46px; width: calc(46px * 226 / 156); }
  .nav .btn { font-size: .95rem; padding: .75em 1.15em; gap: .5em; }
  footer .wrap { flex-direction: column; text-align: center; gap: 18px; }
  footer .logo { height: 76px; width: calc(76px * 226 / 178); }
  footer .foot-links { flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
  footer .foot-links a { font-size: .95rem; white-space: nowrap; }
  footer .wrap > span { font-size: .9rem; }
  footer { padding-bottom: 96px; }
}
@media (prefers-reduced-motion: reduce) {
  .ticket .kicker i, .video-slot .play::after, .wa::after { animation: none; }
}
.ticket .price .nis, .ticket .duo .nis { margin-inline-start: .42em; }
