@font-face { font-family: "Acumin Pro"; src: url("/art-bali/acumin-regular.otf") format("opentype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Acumin Pro"; src: url("/art-bali/acumin-italic.otf") format("opentype"); font-style: italic; font-weight: 400; font-display: swap; }
@font-face { font-family: "Acumin Pro"; src: url("/art-bali/acumin-bold.otf") format("opentype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Acumin Pro"; src: url("/art-bali/acumin-bold-italic.otf") format("opentype"); font-style: italic; font-weight: 700; font-display: swap; }

:root { --cream:#f2efe9; --ink:#151515; --orange:#fb6025; --tan:#ddd4c8; --brown:#4c2118; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #000; color: var(--ink); font-family: "Acumin Pro", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: 100%; max-width: 1366px; margin-inline: auto; padding-inline: 32px; }

.site-nav { position: fixed; inset: 0 0 auto; z-index: 30; height: 84px; padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; color: #fff; background: linear-gradient(to bottom, rgba(0,0,0,.56), transparent); }
.brand img { display: block; width: 154px; height: auto; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.pill { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 14px 28px 10px; border-radius: 999px; background: var(--orange); color: #fff; font-size: 13px; line-height: 1.1; font-weight: 700; white-space: nowrap; transition: transform .2s ease, background .2s ease; }
.pill:hover { transform: translateY(-1px); background: #ef5017; }
.pill-small { min-height: 44px; padding-inline: 24px; }
.menu-button { width: 40px; height: 40px; padding: 8px; border: 0; background: transparent; display: grid; align-content: center; gap: 6px; cursor: pointer; }
.menu-button span { display: block; height: 2px; background: #fff; border-radius: 2px; }
.menu-panel { position: fixed; z-index: 50; inset: 0 0 0 auto; width: min(100%, 335px); padding: 28px 32px 48px; background: #fff; display: flex; flex-direction: column; gap: 16px; transform: translateX(100%); transition: transform .55s cubic-bezier(.22,.7,.14,1); overflow-y: auto; }
.menu-panel.is-open { transform: none; }
.menu-panel > a:not(.pill) { padding-block: 4px; font-size: 18px; }
.menu-close { align-self: flex-end; width: 40px; height: 40px; border: 0; background: transparent; font-size: 34px; line-height: 1; cursor: pointer; }
.menu-scrim { position: fixed; z-index: 40; inset: 0; border: 0; background: rgba(0,0,0,.55); opacity: 0; pointer-events: none; transition: opacity .45s ease; }
.menu-scrim.is-open { opacity: 1; pointer-events: auto; }

.landing { background: var(--cream); }
.hero { --hero-crossfade-duration: 800ms; --hero-drift-duration: 5700ms; position: relative; min-height: calc(100svh - 84px); overflow: hidden; color: #fff; }
.hero-poster,.hero-media,.hero-slides,.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-poster,.hero-media { object-fit: cover; }
.hero-poster { z-index: 0; }
.hero-media { z-index: 1; opacity: 1; transition: opacity .45s ease; }
.hero-slides { z-index: 2; overflow: hidden; background: #000; transition: opacity .45s ease; }
.hero-slide { position: absolute; inset: 0; display: block; opacity: 0; overflow: hidden; transition: opacity var(--hero-crossfade-duration) ease-in-out; }
.hero-slide.is-active { opacity: 1; }
.hero-slide.is-leaving { opacity: 0; }
.hero-slide img { display: block; width: 100%; height: 100%; object-fit: cover; transform: translate3d(var(--hero-from-x,0),var(--hero-from-y,0),0) scale(var(--hero-from-scale,1.01)); will-change: transform; }
.hero-slide.is-active img,.hero-slide.is-leaving img { animation: hero-photo-drift var(--hero-drift-duration) cubic-bezier(.2,.55,.3,1) both; }
.hero.is-photo-mode .hero-media { opacity: 0; visibility: hidden; }
.hero.is-video-mode .hero-slides { opacity: 0; visibility: hidden; }
.hero-shade {
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.02) 30%, rgba(0,0,0,.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.54) 52%, rgba(0,0,0,.18) 100%);
}
.hero.is-slow-pace .hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.03) 30%, rgba(0,0,0,.62) 100%),
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.62) 52%, rgba(0,0,0,.28) 100%);
}
.hero-content { position: relative; z-index: 4; min-height: calc(100svh - 84px); display: flex; flex-direction: column; justify-content: flex-end; gap: 0; padding-top: 128px; padding-bottom: 62px; }

@keyframes hero-photo-drift {
  from { transform: translate3d(var(--hero-from-x,0),var(--hero-from-y,0),0) scale(var(--hero-from-scale,1.01)); }
  to { transform: translate3d(var(--hero-to-x,0),var(--hero-to-y,0),0) scale(var(--hero-to-scale,1.07)); }
}
.eyebrow { margin: 0; font-size: 12px; line-height: 1.2; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow.light { color: rgba(255,255,255,.72); }
.eyebrow.muted { color: rgba(0,0,0,.52); }
.hero h1 { max-width: 13ch; margin: 22px 0 0; font-size: clamp(52px,8.8vw,132px); font-weight: 600; line-height: .87; letter-spacing: -.055em; text-indent: calc(-.025em - 7px); text-transform: uppercase; }
.hero-lead { max-width: 768px; margin: 18px 0 0; font-size: 24px; line-height: 1.25; }
.event-details { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 24px; margin-top: 28px; font-size: 16px; }
.event-details span + span::before { content:""; display: inline-block; width: 1px; height: 18px; margin-right: 24px; vertical-align: -4px; background: rgba(255,255,255,.55); }
.hero-cta-row { display: inline-flex; align-items: stretch; flex-wrap: wrap; border-radius: 999px; background: rgba(251,96,37,.4); overflow: hidden; align-self: flex-start; margin-top: 40px; }
.pill-note { display: flex; align-items: center; padding: 14px 28px 10px 16px; color: #fff; font-size: 13px; line-height: 1.1; font-weight: 700; white-space: nowrap; }
.hero-cta-row .pill { border-radius: 999px; position: relative; z-index: 1; }
.hero-cta-row .pill:hover { transform: none; background: #ef5017; }

.section { padding-block: 112px; }
.section-intro { margin-top: 26px; }
.split-intro { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.72fr); align-items: end; gap: 64px; }
.section h2 { margin: 0; font-size: clamp(48px,6vw,84px); line-height: .95; letter-spacing: -.045em; font-weight: 500; }
.section-intro > p { margin: 0; max-width: 520px; font-size: 20px; line-height: 1.35; }
html.reveal-motion [data-reveal] {
  opacity: 0;
  transform: translate3d(0,44px,0);
  transition:
    opacity 540ms ease-out,
    transform 780ms cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay,0ms);
  will-change: opacity,transform;
}
html.reveal-motion [data-reveal="block-intro"] { transform: translate3d(0,48px,0); }
html.reveal-motion [data-reveal="block-card"] { transform: translate3d(0,56px,0); }
html.reveal-motion [data-reveal="block-media"] { transform: translate3d(0,56px,0); }
html.reveal-motion [data-reveal].is-revealed { opacity: 1; transform: none; will-change: auto; }
.experience-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 72px; }
.experience-card { display: flex; flex-direction: column; align-items: flex-start; }
.experience-media { width: 100%; aspect-ratio: 1.25; margin-bottom: 26px; overflow: hidden; background: #ddd4c8; }
.experience-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.experience-card-body { display: flex; flex: 1; width: 100%; flex-direction: column; align-items: flex-start; }
.experience-card h3 { margin: 14px 0 12px; font-size: 29px; line-height: 1.05; letter-spacing: -.025em; font-weight: 500; }
.experience-card-body > p:not(.eyebrow) { margin: 0; max-width: 39ch; font-size: 16px; line-height: 1.42; }
.experience-card-body > a { margin-top: auto; padding-top: 26px; font-size: 13px; font-weight: 700; letter-spacing: .02em; }

.audience h2,.nuanu h2,.proof h2,.tickets h2,.visit h2,.faq h2 { margin-top: 20px; }
.audience-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; margin-top: 48px; }
.audience-grid article { min-height: 278px; padding: 28px; background: #fff; }
.audience-grid h3 { min-height: 60px; margin: 0 0 38px; font-size: 24px; line-height: 1.25; font-weight: 600; }
.audience-grid p { margin: 0; line-height: 1.45; }

.gradient-section { position: relative; isolation: isolate; overflow: hidden; color: #fff; }
.gradient-section > .container { position: relative; z-index: 1; }
.gradient-atmosphere { position: absolute; z-index: 0; inset: -3%; overflow: hidden; pointer-events: none; background: #e2601f; }
.gradient-atmosphere::before {
  content: "";
  position: absolute;
  inset: -6%;
  background:
    radial-gradient(58% 62% at 6% 26%, rgba(170,213,221,.95) 0%, rgba(170,213,221,0) 62%),
    radial-gradient(46% 52% at 92% 44%, rgba(133,220,240,.72) 0%, rgba(133,220,240,0) 66%),
    radial-gradient(64% 58% at 52% 22%, rgba(147,50,18,.85) 0%, rgba(147,50,18,0) 68%),
    radial-gradient(70% 60% at 74% 12%, rgba(113,77,56,.7) 0%, rgba(113,77,56,0) 70%),
    linear-gradient(178deg, #d9682f 0%, #e2601f 58%, #f15213 100%);
  filter: blur(10px) saturate(1.02);
  transform: scale(1.04);
}
.gradient-canvas {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  filter: blur(8px) saturate(1.01);
  transform: scale(1.035);
  opacity: 0;
  transition: opacity .45s ease;
}
.gradient-canvas.is-ready { opacity: 1; }

.gradient-grain { position: absolute; inset: 0; opacity: .018; mix-blend-mode: soft-light; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); background-size: 240px 240px; }

.exhibition,.proof { background: #e85f2b; }
.exhibition-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(440px,.85fr); align-items: center; gap: 40px; }
.exhibition-copy h2 { margin-top: 28px; }
.exhibition-copy > p:not(.eyebrow) { max-width: 560px; font-size: 18px; line-height: 1.42; }
.exhibition-copy .large-copy { margin: 34px 0 20px; font-size: 24px !important; line-height: 1.32 !important; }
.curator { margin-top: 34px !important; color: rgba(255,255,255,.62); font-size: 12px !important; font-weight: 700; letter-spacing: .08em; }
.exhibition-media { position: relative; width: 100%; max-width: 620px; aspect-ratio: 6 / 7; justify-self: end; overflow: hidden; background: #2a160f; }
.exhibition-media video { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.exhibition-sound { position: absolute; z-index: 2; right: 20px; bottom: 18px; padding: 0; border: 0; background: transparent; color: #fff; font-size: 13px; line-height: 1; font-weight: 400; text-transform: uppercase; cursor: pointer; text-shadow: 0 1px 8px rgba(0,0,0,.38); }
.exhibition-sound:hover { opacity: .72; }

.galleries-layout { display: grid; grid-template-columns: minmax(360px,.9fr) minmax(0,1fr); gap: 64px; }
.galleries-intro h2 { margin-top: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--orange); }
.galleries-intro > p:last-child { max-width: 470px; margin-top: 28px; font-size: 20px; line-height: 1.35; }
.gallery-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 36px; }
.gallery-list > div { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; min-height: 54px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.15); }
.gallery-list span { font-size: 18px; font-weight: 500; }
.gallery-list small { flex: none; color: rgba(0,0,0,.52); }
.gallery-note { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 32px; margin-top: 18px; padding: 24px 0 0; border-top: 2px solid var(--orange); }
.gallery-note strong { font-size: 26px; }
.gallery-note span { max-width: 420px; font-size: 20px; }

.talks { --talks-parallax-y: 0px; position: relative; min-height: 930px; overflow: hidden; color: #fff; background: #241207; }
.talks-bg,.talks-shade { position: absolute; left: 0; width: 100%; }
.talks-bg { top: -130px; height: calc(100% + 260px); object-fit: cover; object-position: center center; transform: translate3d(0,var(--talks-parallax-y),0) scale(1.015); transform-origin: center; will-change: transform; opacity: 0; transition: opacity .6s ease; }
.talks-bg.is-loaded { opacity: 1; }
.talks-shade { inset: 0; height: 100%; }
.talks-shade { background: rgba(0,0,0,.32); }
.talks-content { position: relative; z-index: 2; }
.talks-head { display: grid; grid-template-columns: minmax(0,.82fr) minmax(420px,1fr); align-items: start; gap: 64px; }
.talks h2 { margin-top: 20px; }
.talks-title { margin: 0 0 14px; font-size: 34px; line-height: 1.1; }
.talks-copy { max-width: 760px; margin: 0 0 18px; font-size: 20px; line-height: 1.35; }
.talks-intro > p:last-child { max-width: 690px; }
.talks h2,.talks-title,.talks-copy,.talks-intro > p,.lineup-title { text-shadow: 0 2px 20px rgba(0,0,0,.36); }
.speaker-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin: 32px 0 20px; }
.lineup-title { margin: 0; font-size: 30px; font-weight: 500; }
.speaker-controls { display: flex; align-items: center; gap: 12px; }
.speaker-arrow { display: grid; width: 56px; height: 56px; place-items: center; padding: 0; border: 0; border-radius: 50%; background: var(--orange); color: #fff; cursor: pointer; transition: opacity .2s ease, transform .25s ease, background .2s ease; }
.speaker-arrow svg { display: block; width: 27px; height: 27px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.speaker-arrow:hover:not(:disabled) { transform: translateX(3px); }
.speaker-arrow-prev:hover:not(:disabled) { transform: translateX(-3px); }
.speaker-arrow:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.speaker-arrow:disabled { opacity: .32; cursor: default; }
.speaker-viewport { overflow: hidden; touch-action: pan-y; cursor: grab; user-select: none; -webkit-user-select: none; }
.speaker-viewport.is-dragging { cursor: grabbing; }
.speaker-row { --speaker-offset: 0px; display: flex; width: max-content; gap: 16px; transform: translate3d(var(--speaker-offset),0,0); transition: transform 680ms cubic-bezier(.22,.76,.18,1); will-change: transform; }
.speaker-row.is-previewing { transition-duration: 1800ms; transition-timing-function: cubic-bezier(.22,.72,.18,1); }
.speaker-row article { width: clamp(228px,21vw,276px); flex: 0 0 clamp(228px,21vw,276px); color: #fff; background: transparent; }
.speaker-row img { display: block; width: 100%; height: 292px; object-fit: cover; pointer-events: none; -webkit-user-drag: none; background: rgba(255,255,255,.09); opacity: 0; transition: opacity .55s ease; }
.speaker-row img.is-loaded { opacity: 1; }
.speaker-row article > div { min-height: 128px; padding: 18px 0 0; }
.speaker-row h4 { margin: 0 0 5px; font-size: 20px; font-weight: 500; }
.speaker-row p { min-height: 40px; margin: 0 0 10px; font-size: 14px; line-height: 1.3; }
.speaker-row h4,.speaker-row p,.speaker-row small { text-shadow: 0 2px 16px rgba(0,0,0,.5); }
.speaker-row small { color: rgba(255,255,255,.58); font-size: 10px; letter-spacing: .12em; }
.speaker-row .speaker-nowrap { white-space: nowrap; }

.nuanu { background: var(--tan); }
.nuanu h2 { max-width: 1024px; }
.nuanu-lead { max-width: 600px; margin: 30px 0 0; font-size: 20px; line-height: 1.4; }
.venue-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 56px; }
.venue-grid article { position: relative; min-height: 288px; overflow: hidden; background: #000; color: #fff; }
.venue-grid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .58; transition: transform .5s ease, opacity .5s ease; }
.venue-grid article:hover img { transform: scale(1.035); opacity: .7; }
.venue-grid article::after { content:""; position: absolute; inset: 0; background: linear-gradient(transparent 35%,rgba(0,0,0,.8)); }
.venue-grid article > div { position: absolute; z-index: 2; inset: auto 24px 24px; }
.venue-grid h3 { margin: 0 0 7px; font-size: 24px; font-weight: 400; }
.venue-grid p { margin: 0; max-width: 32ch; line-height: 1.35; }

.proof h2 { font-size: clamp(50px,7vw,90px); }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 44px; margin-top: 48px; }
.proof-grid div { display: flex; flex-direction: column; gap: 4px; }
.proof-grid strong { font-size: 45px; line-height: 1; font-weight: 500; }
.proof-grid span { font-size: 17px; }

.ticket-intro { max-width: 760px; margin: 28px 0 50px; font-size: 19px; line-height: 1.4; }
.ticket-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); align-items: stretch; gap: 20px; }
.ticket-grid article { position: relative; min-width: 0; height: 100%; padding: 28px; border: 1px solid rgba(0,0,0,.28); background: #fff; display: flex; flex-direction: column; align-items: flex-start; }
.ticket-grid .eyebrow { min-height: 30px; margin: 0; color: var(--ink); }
.ticket-grid h3 { width: 100%; margin: 14px 0 18px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,.18); font-size: clamp(42px,4vw,58px); line-height: .95; letter-spacing: -.035em; font-weight: 400; white-space: nowrap; }
.ticket-grid ul { width: 100%; margin: 0; padding: 0; list-style: none; font-size: 16px; line-height: 1.35; }
.ticket-grid li { position: relative; padding: 9px 0 9px 18px; border-bottom: 1px solid rgba(0,0,0,.12); }
.ticket-grid li::before { content:""; position: absolute; left: 1px; top: 1.15em; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.ticket-grid ul { margin-bottom: 26px; }
.ticket-grid .pill { margin-top: auto; }
.ticket-grid article:not(.ticket-card-vip) .pill { border: 1px solid var(--ink); background: transparent; color: var(--ink); }
.ticket-grid article:not(.ticket-card-vip) .pill:hover { background: var(--ink); color: #fff; }
.ticket-card-vip::before { content:""; position: absolute; top: -1px; left: -1px; right: -1px; height: 5px; background: var(--orange); }
html.reveal-motion .ticket-card-vip[data-reveal]::before { transform: scaleX(0); transform-origin: left center; transition: transform 640ms cubic-bezier(.22,1,.36,1); transition-delay: calc(var(--reveal-delay,0ms) + 220ms); }
html.reveal-motion .ticket-card-vip[data-reveal].is-revealed::before { transform: scaleX(1); }
.vip-note { margin: -2px 0 13px; padding: 0; background: transparent; color: #e84f18; font-size: 11px; line-height: 1.3; letter-spacing: .045em; font-weight: 700; }
.ticket-validity { margin: 0 0 8px; font-size: 15px; line-height: 1.35; }

.visit { background: #fff; }
.visit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.visit-grid img { display: block; width: 100%; height: 162px; object-fit: cover; }
.visit-grid h3 { margin: 18px 0 8px; font-size: 24px; line-height: 1.2; font-weight: 600; }
.visit-grid p { margin: 0; line-height: 1.4; }

.faq { background: #ded8cf; }
.faq-list { margin-top: 48px; }
.faq details { border-top: 1px solid rgba(0,0,0,.28); overflow: hidden; }
.faq details:last-child { border-bottom: 1px solid rgba(0,0,0,.28); }
.faq summary { position: relative; padding: 23px 56px 23px 0; cursor: pointer; list-style: none; font-size: 24px; user-select: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content:"+"; position: absolute; right: 4px; top: 18px; font-size: 34px; font-weight: 300; transition: transform .25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-answer { opacity: 0; transition: height 360ms ease, opacity 360ms ease; overflow: hidden; }
.faq details[open] .faq-answer { opacity: 1; }
.faq .faq-answer > p,
.faq details > p { max-width: 720px; margin: 0; padding: 0 0 24px; font-size: 18px; line-height: 1.45; }



.closing { background: #000; color: #fff; text-align: left; }
.closing .container { display: flex; flex-direction: column; align-items: flex-start; }
.closing h2 { max-width: 1024px; }
.closing .closing-meta { margin: 0 0 30px; font-size: 12px; line-height: 1.3; letter-spacing: .075em; text-transform: uppercase; font-weight: 700; }
.closing .pill { margin-top: 36px; }

.partner { position: relative; min-height: 720px; overflow: hidden; color: #fff; }
.partner > img,.partner-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.partner > img { object-fit: cover; filter: grayscale(1); transform: scale(1.12); }
.partner-shade { background: rgba(0,0,0,.42); }
.partner-content { position: relative; z-index: 2; display: grid; grid-template-columns: 300px minmax(0,620px); gap: 64px; padding-top: 64px; }
.partner h2 { margin: 18px 0 0; font-size: 36px; line-height: 1; letter-spacing: -.03em; }
.partner-content > div:last-child p { margin: 0; font-size: 19px; line-height: 1.45; }
.partner-content a { display: inline-block; margin-top: 28px; padding-bottom: 3px; border-bottom: 1px solid; font-weight: 600; }

footer { padding: 52px 0 26px; background: linear-gradient(#5e5d5d,var(--orange)); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
footer h2 { margin: 0 0 28px; font-size: 24px; font-weight: 400; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-grid a { display: flex; flex-direction: column; text-decoration: underline; }
.footer-grid a span { text-decoration: underline; }
.footer-grid p { margin: 0 0 8px; }
.footer-bottom { display: flex; justify-content: center; gap: 28px; margin-top: 56px; font-size: 13px; color: rgba(255,255,255,.78); }

@media (max-width: 900px) {
  .site-nav { height: 72px; padding-inline: 20px; }
  .brand img { width: 128px; }
  .site-nav .pill { display: none; }
  .container { padding-inline: 20px; }
  .hero,.hero-content { min-height: 720px; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.16) 28%, rgba(0,0,0,.7) 100%),
      linear-gradient(90deg, rgba(0,0,0,.54) 0%, rgba(0,0,0,.14) 100%);
  }
  .hero.is-slow-pace .hero-shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.22) 28%, rgba(0,0,0,.76) 100%),
      linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.2) 100%);
  }
  .hero-content { padding-top: 104px; padding-bottom: 48px; }
  .hero h1 { font-size: clamp(52px,15vw,86px); }
  .hero-lead { margin-top: 16px; font-size: 20px; }
  .hero-cta-row { flex-wrap: wrap; border-radius: 28px; margin-top: 32px; }
  .pill-note { white-space: normal; text-align: left; padding: 12px 24px 10px 12px; font-size: 12px; }
  .hero-cta-row .pill { padding: 12px 22px 10px; font-size: 12px; }
  .event-details { display: grid; gap: 5px; margin-top: 22px; }
  .event-details span + span::before { display: none; }
  .split-intro { grid-template-columns: 1fr; gap: 24px; }
  .experience-grid { grid-template-columns: 1fr; gap: 56px; }
  .section { padding-block: 76px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .exhibition-grid,.galleries-layout { grid-template-columns: 1fr; }
  .exhibition-media { justify-self: start; }
  .gallery-list { grid-template-columns: 1fr; }
  .gallery-note { flex-direction: column; }
  .talks { min-height: 1080px; }
  .talks-head { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .talks-bg { object-position: 60% center; }
  .speaker-row article { width: clamp(220px,42vw,278px); flex-basis: clamp(220px,42vw,278px); }
  .venue-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid,.ticket-grid { grid-template-columns: 1fr; }
  .ticket-grid article { min-height: 0; }
  .visit-grid { grid-template-columns: 1fr 1fr; row-gap: 42px; }
  .partner-content { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide.is-active img,.hero-slide.is-leaving img { animation: none; transform: none; }
  .speaker-arrow,.speaker-row { transition: none; }
  html.reveal-motion [data-reveal] { opacity: 1; transform: none; transition: none; }
  html.reveal-motion .ticket-card-vip[data-reveal]::before { transform: none; transition: none; }
  .faq .faq-answer { transition: none; opacity: 1; }
}


@media (max-width: 520px) {
  .hero h1 { font-size: 53px; }
  .section h2 { font-size: 48px; }
  .hero-cta small { max-width: 280px; }
  .audience-grid,.venue-grid,.visit-grid { grid-template-columns: 1fr; }
  .audience-grid h3 { min-height: auto; margin-bottom: 28px; }
  .talks { min-height: 1140px; }
  .talks-bg { object-position: 64% center; }
  .speaker-toolbar { gap: 16px; margin-top: 28px; }
  .lineup-title { font-size: 26px; }
  .speaker-controls { gap: 8px; }
  .speaker-arrow { width: 48px; height: 48px; }
  .speaker-arrow svg { width: 24px; height: 24px; }
  .speaker-row article { width: min(76vw,280px); flex-basis: min(76vw,280px); }
  .speaker-row img { height: 300px; }
  .proof-grid { gap: 28px; }
  .ticket-grid article { padding: 26px; }
  .closing .closing-meta { margin-bottom: 24px; font-size: 11px; }
  .partner { min-height: 780px; }
  .footer-bottom { justify-content: flex-start; flex-wrap: wrap; }
}
