:root {
  --sand: #efe9df;
  --ink: #11110f;
  --acid: #d7ff58;
  --line: rgba(17, 17, 15, .18);
  --light-line: rgba(239, 233, 223, .22);
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: .11;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 32px;
  mix-blend-mode: difference;
  color: #fff;
}

.brand { display: grid; gap: 2px; }
.brand span { font-size: 24px; line-height: 1; font-weight: 600; letter-spacing: -.05em; }
.brand small { font-family: var(--mono); font-size: 9px; letter-spacing: .08em; }
.nav { display: flex; gap: 30px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: currentColor; transition: width .25s ease; }
.nav a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: 0; width: 32px; height: 24px; padding: 0; }
.menu-toggle span { display: block; width: 100%; height: 1px; background: currentColor; margin: 7px 0; }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 130px 32px 30px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .tiny { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.hero h1 {
  margin: 20px 0 0;
  font-size: clamp(72px, 13vw, 205px);
  line-height: .77;
  letter-spacing: -.085em;
  font-weight: 400;
}
.hero h1 span { display: block; }
.hero h1 span:nth-child(2) { padding-left: 13vw; }
.hero h1 span:nth-child(3) { padding-left: 3vw; }

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.hero-bottom p { margin: 0; max-width: 260px; font-size: 17px; line-height: 1.35; }
.text-link { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; }
.text-link span { display: inline-block; margin-left: 12px; }
.hero-visual { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-a { width: 42vw; height: 42vw; right: -9vw; top: 9vh; background: radial-gradient(circle at 35% 30%, #fff4c0 0 6%, #ffca66 22%, #ff6f3d 58%, rgba(255,111,61,0) 72%); opacity: .78; }
.orb-b { width: 26vw; height: 26vw; left: 42vw; bottom: -9vw; background: radial-gradient(circle, var(--acid), rgba(215,255,88,0) 68%); opacity: .35; }
.sunline { position: absolute; right: 16vw; top: 17vh; width: 1px; height: 60vh; background: linear-gradient(transparent, rgba(17,17,15,.35), transparent); transform: rotate(28deg); }

.ticker { overflow: hidden; border-bottom: 1px solid var(--line); padding: 12px 0; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.ticker-track { width: max-content; display: flex; gap: 50px; animation: marquee 26s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.events { padding: 90px 32px 130px; }
.section-kicker { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 10px; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.section-kicker p { margin: 0; }
.events-head { display: grid; grid-template-columns: 2fr 1fr; gap: 10vw; align-items: end; padding: 55px 0 70px; }
.events-head h2, .gallery-title h2, .manifesto h2, .contact h2 { margin: 0; font-weight: 400; letter-spacing: -.07em; line-height: .87; }
.events-head h2 { font-size: clamp(66px, 9vw, 150px); }
.events-head p { margin: 0 0 8px; max-width: 380px; font-size: 16px; line-height: 1.55; }
.event-list { border-top: 1px solid var(--ink); }
.event-row {
  display: grid;
  grid-template-columns: 110px minmax(260px, 1fr) 260px 120px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  transition: padding .25s ease, background .25s ease;
}
.event-row:hover { padding-left: 14px; background: rgba(255,255,255,.22); }
.event-row.featured { background: var(--ink); color: var(--sand); padding-left: 18px; padding-right: 18px; }
.event-date { display: flex; align-items: end; gap: 7px; }
.event-date strong { font-size: 44px; font-weight: 400; line-height: .9; letter-spacing: -.06em; }
.event-date span, .event-name small, .event-meta, .event-action { font-family: var(--mono); font-size: 10px; letter-spacing: .04em; }
.event-name h3 { margin: 3px 0 0; font-size: clamp(26px, 3.1vw, 52px); font-weight: 400; letter-spacing: -.055em; }
.event-meta { display: grid; gap: 6px; }
.event-action { text-align: right; }

.manifesto {
  min-height: 100svh;
  background: var(--ink);
  color: var(--sand);
  padding: 34px 32px 50px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.section-kicker.inverse { border-color: var(--light-line); }
.manifesto-copy { align-self: center; padding: 10vh 0 5vh; }
.manifesto-copy .tiny { opacity: .6; }
.manifesto h2 { font-size: clamp(70px, 10vw, 165px); }
.manifesto-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; margin-left: 40%; border-top: 1px solid var(--light-line); padding-top: 18px; }
.manifesto-notes p { margin: 0; font-size: 15px; line-height: 1.55; opacity: .8; }

.gallery { padding: 90px 32px 120px; }
.gallery-title { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: end; margin-bottom: 50px; }
.gallery-title .section-kicker { align-self: start; }
.gallery-title h2 { font-size: clamp(72px, 10vw, 150px); }
.gallery-strip { display: grid; grid-template-columns: 1.3fr .8fr 1fr; gap: 10px; align-items: end; }
.shot { margin: 0; position: relative; overflow: hidden; background: #171713; }
.shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 65%, rgba(0,0,0,.55)); }
.shot-overlay { position: absolute; z-index: 2; left: 14px; bottom: 12px; color: #fff; font: 10px var(--mono); letter-spacing: .05em; }
.gallery-note { margin: 16px 0 0; font: 10px/1.5 var(--mono); opacity: .55; }
.gallery-note code { font-family: inherit; }

.statement { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); padding: 28px 32px 32px; }
.statement p { margin: 0; font-size: clamp(52px, 9vw, 145px); line-height: .9; letter-spacing: -.07em; font-weight: 300; }
.statement p:nth-child(2) { text-align: center; }
.statement p:nth-child(3) { text-align: right; }

.contact { background: var(--ink); color: var(--sand); padding: 34px 32px 28px; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10vw; padding: 90px 0 110px; }
.contact h2 { font-size: clamp(75px, 10vw, 150px); }
.contact-title .tiny { opacity: .55; }
.contact-form { display: grid; align-content: start; }
.contact-form label { display: grid; grid-template-columns: 130px 1fr; align-items: center; border-bottom: 1px solid var(--light-line); padding: 18px 0; gap: 20px; }
.contact-form label span { font: 10px var(--mono); opacity: .65; text-transform: uppercase; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; background: transparent; border: 0; outline: none; color: var(--sand); padding: 4px 0; resize: none; }
.contact-form select { appearance: none; }
.contact-form option { color: var(--ink); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(239,233,223,.34); }
.contact-form button { margin-top: 28px; border: 1px solid var(--sand); color: var(--sand); background: transparent; padding: 18px 20px; display: flex; justify-content: space-between; cursor: pointer; font: 11px var(--mono); transition: .2s ease; }
.contact-form button:hover { background: var(--sand); color: var(--ink); }
.contact-footer { display: flex; justify-content: space-between; align-items: end; border-top: 1px solid var(--light-line); padding-top: 18px; font: 10px var(--mono); }
.contact-footer p { margin: 0; }
.contact-footer div { display: flex; gap: 24px; }

footer { display: flex; justify-content: space-between; padding: 18px 32px; font: 9px var(--mono); }
footer p { margin: 0; }

@media (max-width: 900px) {
  .site-header { padding: 18px 18px; }
  .nav { position: fixed; inset: 0; background: var(--ink); color: var(--sand); display: none; flex-direction: column; justify-content: center; align-items: center; gap: 28px; font-size: 18px; mix-blend-mode: normal; }
  .nav.open { display: flex; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .hero { padding: 110px 18px 18px; }
  .hero h1 { font-size: clamp(63px, 22vw, 120px); }
  .hero h1 span:nth-child(2) { padding-left: 4vw; }
  .hero h1 span:nth-child(3) { padding-left: 0; }
  .hero-bottom { gap: 30px; }
  .hero-bottom p { font-size: 14px; }
  .orb-a { width: 90vw; height: 90vw; right: -40vw; top: 21vh; }
  .orb-b { width: 70vw; height: 70vw; left: -20vw; bottom: -25vw; }
  .events, .gallery { padding: 70px 18px 90px; }
  .events-head { grid-template-columns: 1fr; gap: 28px; padding: 38px 0 45px; }
  .events-head h2 { font-size: clamp(64px, 21vw, 115px); }
  .event-row { grid-template-columns: 70px 1fr auto; gap: 12px; padding: 19px 0; }
  .event-meta { display: none; }
  .event-date strong { font-size: 34px; }
  .event-name h3 { font-size: 28px; }
  .event-action { font-size: 9px; }
  .manifesto { padding: 28px 18px 35px; }
  .manifesto h2 { font-size: clamp(64px, 19vw, 110px); }
  .manifesto-notes { margin-left: 0; grid-template-columns: 1fr; gap: 18px; }
  .gallery-title { grid-template-columns: 1fr; }
  .gallery-title h2 { font-size: clamp(68px, 20vw, 115px); }
  .gallery-strip { grid-template-columns: 1fr; gap: 8px; }
  .shot-1, .shot-2, .shot-3 { height: 110vw; max-height: none; }
  .statement { padding: 20px 18px 22px; }
  .statement p { font-size: clamp(44px, 15vw, 90px); }
  .contact { padding: 28px 18px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; padding: 70px 0 80px; }
  .contact h2 { font-size: clamp(68px, 20vw, 110px); }
  .contact-form label { grid-template-columns: 95px 1fr; }
  .contact-footer { flex-direction: column; align-items: flex-start; gap: 18px; }
  .contact-footer div { flex-direction: column; gap: 8px; }
  footer { padding: 16px 18px; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

.hero {
  color: #f4efe7;
  background: #0d0d0c;
  border-bottom-color: rgba(255,255,255,.16);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #111;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.04);
  transform: scale(1.015);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.36) 0%, rgba(0,0,0,.08) 38%, rgba(0,0,0,.48) 100%),
    linear-gradient(90deg, rgba(0,0,0,.24), transparent 55%);
}
.hero .eyebrow { color: rgba(255,255,255,.76); }
.hero-bottom { border-color: rgba(255,255,255,.34); }
.hero-bottom .text-link { color: #fff; }

.reservation-side { min-width: 0; }
.contact-form input[type="date"] { color-scheme: dark; }
.contact-form input[type="number"] { appearance: textfield; }
.contact-form input[type="number"]::-webkit-inner-spin-button,
.contact-form input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.direct-contact {
  margin-top: 46px;
  border-top: 1px solid var(--light-line);
  padding-top: 15px;
}
.direct-contact > p {
  margin: 0 0 12px;
  font: 10px var(--mono);
  letter-spacing: .06em;
  opacity: .6;
}
.direct-contact-links { border-top: 1px solid var(--light-line); }
.direct-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-line);
  font: 11px var(--mono);
  letter-spacing: .04em;
  transition: padding .2s ease, opacity .2s ease;
}
.direct-link:hover { padding-left: 8px; opacity: .72; }
.direct-contact small {
  display: block;
  margin-top: 12px;
  font: 9px/1.5 var(--mono);
  opacity: .36;
}

.floating-contact {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(17,17,15,.88);
  color: #f4efe7;
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.floating-contact a {
  width: 48px;
  height: 42px;
  display: grid;
  place-items: center;
  font: 9px var(--mono);
  letter-spacing: .06em;
}
.floating-contact a + a { border-left: 1px solid rgba(255,255,255,.28); }
.floating-contact a:hover { background: #f4efe7; color: #11110f; }

@media (max-width: 900px) {
  .hero-video { object-position: 55% center; }
  .direct-contact { margin-top: 34px; }
  .floating-contact { right: 12px; bottom: 12px; }
  .floating-contact a { width: 46px; height: 42px; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: 34px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  font: 10px var(--mono);
  letter-spacing: .06em;
}
.lang-switch > span { opacity: .42; }
.lang-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  cursor: pointer;
  font: inherit;
  opacity: .46;
  transition: opacity .2s ease;
}
.lang-button:hover,
.lang-button.active { opacity: 1; }
.lang-button.active { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 900px) {
  .site-header { align-items: center; }
  .header-actions { position: relative; z-index: 3; margin-right: 0; gap: 18px; }
  .lang-switch { font-size: 10px; }
}

.brand-logo {
  display: grid;
  gap: 5px;
  width: max-content;
}
.brand-logo img {
  display: block;
  width: 118px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
}
.brand-logo small { font-family: var(--mono); font-size: 8px; letter-spacing: .11em; }

.special-event {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, .8fr) 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 112px;
  margin-bottom: 16px;
  padding: 20px 22px;
  border: 1px solid var(--ink);
  overflow: hidden;
  transition: background .25s ease, color .25s ease;
}
.special-event::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--acid);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .35s ease;
}
.special-event:hover { background: var(--ink); color: var(--sand); }
.special-event:hover::after { transform: scaleX(1); }
.special-event-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 10px var(--mono);
  letter-spacing: .06em;
}
.special-event strong {
  font-size: clamp(42px, 6vw, 96px);
  line-height: .82;
  font-weight: 400;
  letter-spacing: -.07em;
}
.special-event-action { font: 10px var(--mono); letter-spacing: .05em; text-align: right; }
.pulse-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(215,255,88,.72);
  animation: kumaPulse 1.65s ease-out infinite;
}
@keyframes kumaPulse {
  0% { box-shadow: 0 0 0 0 rgba(215,255,88,.72); opacity: 1; }
  70% { box-shadow: 0 0 0 10px rgba(215,255,88,0); opacity: .7; }
  100% { box-shadow: 0 0 0 0 rgba(215,255,88,0); opacity: 1; }
}

.weekly-program { border-top: 1px solid var(--ink); }
.weekday-mark { align-items: center; }
.weekday-mark strong { min-width: 46px; font-size: 34px; }
.weekday-mark span { opacity: .55; }

.venue-info {
  margin-top: clamp(36px, 6vh, 72px);
  max-width: 520px;
  border-top: 1px solid var(--light-line);
}
.venue-info p {
  margin: 0;
  padding: 13px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--light-line);
  font-size: 13px;
}
.venue-info p > span { font: 9px var(--mono); opacity: .48; letter-spacing: .05em; }
.venue-info a, .venue-info strong { font-weight: 400; }
.venue-info a:hover { opacity: .65; }

@media (max-width: 900px) {
  .brand-logo img { width: 92px; max-height: 34px; }
  .brand-logo small { display: none; }
  .special-event {
    grid-template-columns: 1fr auto;
    gap: 12px 18px;
    min-height: 0;
    padding: 18px 14px 20px;
  }
  .special-event-label { grid-column: 1 / -1; }
  .special-event strong { font-size: clamp(48px, 17vw, 78px); }
  .special-event-action { align-self: end; }
  .weekday-mark strong { min-width: 38px; font-size: 29px; }
  .venue-info p { grid-template-columns: 100px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-dot { animation: none !important; }
}

.shot img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.shot-1 { height: 64vw; max-height: 840px; }
.shot-2 { height: 42vw; max-height: 600px; }
.shot-3 { height: 55vw; max-height: 760px; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }
.form-status { margin: 16px 0 0; font: 10px/1.5 var(--mono); letter-spacing: .03em; opacity: .78; }
@media (max-width: 900px) {
  .shot-1, .shot-2, .shot-3 { height: 110vw; max-height: none; }
}
