:root {
  --ink: #090706;
  --ink-soft: #120c09;
  --panel: #17100d;
  --panel-light: #211611;
  --paper: #f7efe3;
  --muted: #bdaea2;
  --orange: #ff6a00;
  --orange-hot: #ff8a18;
  --red: #d92312;
  --purple: #8b2cff;
  --green: #28d366;
  --line: rgba(255, 255, 255, 0.14);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(139, 44, 255, 0.06), transparent 28rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

::selection { background: var(--orange); color: #0a0705; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: clamp(84px, 10vw, 150px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-160%); background: var(--paper); color: var(--ink); padding: 10px 14px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  padding: 10px clamp(20px, 4vw, 60px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, min-height .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.scrolled {
  min-height: 70px;
  background: rgba(9, 7, 6, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; gap: 10px; min-width: 215px; }
.brand img { width: 62px; height: 62px; object-fit: contain; transition: width .3s ease, height .3s ease; }
.site-header.scrolled .brand img { width: 50px; height: 50px; }
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand b { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.brand small { margin-top: 5px; color: var(--orange-hot); font-size: 10px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }

.site-nav { display: flex; justify-content: center; gap: clamp(14px, 2vw, 34px); }
.site-nav a { position: relative; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; transition: color .25s ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--orange); transition: right .25s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: white; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(0,0,0,.25); cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; margin: 4px auto; background: white; transition: transform .25s ease, opacity .25s ease; }

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid rgba(255,138,24,.45); outline-offset: 3px; }
.button-primary { background: linear-gradient(135deg, var(--orange-hot), var(--orange) 52%, var(--red)); color: #100803; box-shadow: 0 10px 35px rgba(255, 106, 0, .22); }
.button-primary:hover { box-shadow: 0 16px 46px rgba(255, 106, 0, .38); }
.button-ghost { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.04); }
.button-glass { border-color: rgba(255,255,255,.28); background: rgba(11,8,6,.38); backdrop-filter: blur(12px); }
.button-dark { background: #130b07; color: white; box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.button-large { min-height: 56px; padding-inline: 26px; font-size: 12px; }
.button-whatsapp { background: linear-gradient(135deg, #46ee7a, var(--green)); color: #061d0d; box-shadow: 0 16px 46px rgba(40,211,102,.2); }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  background: #070504;
}
.hero-video, .hero-shade, .hero-noise { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; opacity: .58; filter: saturate(.78) contrast(1.12); }
.hero-shade { background: linear-gradient(90deg, rgba(5,4,3,.96) 0%, rgba(5,4,3,.72) 42%, rgba(5,4,3,.36) 72%, rgba(5,4,3,.78) 100%), linear-gradient(0deg, var(--ink) 0%, transparent 28%, rgba(0,0,0,.16) 100%); }
.hero-noise { opacity: .18; 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='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E"); mix-blend-mode: screen; pointer-events: none; }
.hero-glow { position: absolute; width: 38vw; aspect-ratio: 1; border-radius: 50%; filter: blur(90px); opacity: .12; animation: drift 11s ease-in-out infinite alternate; }
.hero-glow-one { top: 10%; right: -10%; background: var(--red); }
.hero-glow-two { bottom: -20%; left: 20%; background: var(--purple); animation-delay: -4s; }
@keyframes drift { to { transform: translate3d(40px,-25px,0) scale(1.1); } }
.hero-content { position: relative; z-index: 4; padding-top: 110px; padding-bottom: 80px; }
.eyebrow, .section-number, .strip-kicker { color: var(--orange-hot); font-size: 11px; font-weight: 950; letter-spacing: .22em; text-transform: uppercase; }
.hero-logo { width: min(600px, 65vw); max-height: 46vh; margin: -42px 0 -72px -36px; object-fit: contain; object-position: left center; filter: drop-shadow(0 30px 60px rgba(0,0,0,.65)); }
.hero h1, .section-heading h2, .history-copy h2, .tables-card h2, .faq-intro h2, .closing-content h2, .location-overlay h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: .008em;
  line-height: .9;
  text-transform: uppercase;
}
.hero h1 { max-width: 900px; font-size: clamp(54px, 8vw, 118px); text-wrap: balance; }
.hero-copy { max-width: 680px; margin: 24px 0 0; color: rgba(255,255,255,.78); font-size: clamp(17px, 2vw, 22px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-facts { display: grid; grid-template-columns: repeat(6, 1fr); max-width: 1040px; margin-top: 54px; border: 1px solid var(--line); background: rgba(10,7,5,.38); backdrop-filter: blur(12px); }
.hero-facts div { min-width: 0; padding: 18px 16px; border-right: 1px solid var(--line); }
.hero-facts div:last-child { border-right: 0; }
.hero-facts strong { display: block; color: white; font-size: clamp(18px, 2.2vw, 31px); line-height: 1; }
.hero-facts span { display: block; margin-top: 8px; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue { position: absolute; z-index: 5; right: 38px; bottom: 28px; display: grid; place-items: center; width: 42px; height: 70px; border: 1px solid var(--line); border-radius: 99px; }
.scroll-cue span { width: 5px; height: 10px; border-radius: 9px; background: var(--orange); animation: scroll 1.8s ease-in-out infinite; }
@keyframes scroll { 0% { transform: translateY(-10px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }

.early-strip { position: relative; z-index: 8; background: linear-gradient(110deg, var(--orange-hot), var(--orange) 48%, #df2f0d); color: #160904; }
.early-strip-inner { display: grid; grid-template-columns: .9fr 1.25fr auto; gap: 30px; align-items: center; min-height: 130px; padding-block: 22px; }
.early-strip strong { display: block; font-family: var(--display); font-size: clamp(25px,3vw,44px); line-height: .95; text-transform: uppercase; }
.strip-kicker { color: #351207; letter-spacing: .14em; }
.early-strip p { max-width: 570px; margin: 0; font-weight: 700; line-height: 1.45; }

.tables-quick { position: relative; z-index: 7; padding: 26px 0; border-bottom: 1px solid rgba(40,211,102,.25); background: linear-gradient(110deg, #08140d, #102319 55%, #07110b); }
.tables-quick-inner { display: grid; grid-template-columns: 1.25fr auto auto; gap: 30px; align-items: center; }
.tables-quick-copy span { color: var(--green); font-size: 10px; font-weight: 950; letter-spacing: .15em; text-transform: uppercase; }
.tables-quick-copy h2 { margin: 7px 0 5px; font-family: var(--display); font-size: clamp(28px,3.6vw,50px); line-height: .95; text-transform: uppercase; }
.tables-quick-copy p { margin: 0; color: var(--muted); }
.tables-quick-price { display: grid; min-width: 190px; padding-inline: 26px; border-inline: 1px solid rgba(40,211,102,.22); text-align: center; }
.tables-quick-price small { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.tables-quick-price strong { color: var(--green); font-family: var(--display); font-size: 52px; line-height: .9; }
.tables-quick-price span { font-size: 11px; font-weight: 850; }

.split-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px,8vw,120px); align-items: start; }
.section-heading h2, .history-copy h2, .tables-card h2, .makeup-copy h2, .faq-intro h2, .location-overlay h2 { margin-top: 16px; font-size: clamp(48px,6.4vw,96px); text-wrap: balance; }
.section-heading p { max-width: 640px; margin: 24px auto 0; color: var(--muted); font-size: 18px; }
.section-heading.centered { max-width: 850px; margin: 0 auto clamp(45px,7vw,80px); text-align: center; }
.lead { color: var(--paper); font-family: var(--serif); font-size: clamp(24px,3vw,42px); font-style: italic; line-height: 1.25; }
.intro-copy > p:not(.lead) { color: var(--muted); font-size: 18px; }
.date-lockup { display: grid; grid-template-columns: auto auto auto auto auto; align-items: end; gap: 10px 14px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }
.date-lockup span { color: var(--orange); font-size: 11px; font-weight: 950; letter-spacing: .15em; }
.date-lockup b { font-family: var(--display); font-size: clamp(58px,8vw,100px); line-height: .65; }
.date-lockup i { color: var(--orange); font-size: 40px; font-style: normal; }
.date-lockup small { grid-column: 1/-1; margin-top: 12px; color: var(--muted); font-weight: 800; letter-spacing: .14em; }

.ticket-section { overflow: hidden; background: linear-gradient(180deg, #0c0806, #150c08 45%, #090706); }
.ticket-section::before { content: "EARLY"; position: absolute; top: 1%; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.02); font-family: var(--display); font-size: 27vw; line-height: 1; pointer-events: none; }
.ticket-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ticket-card {
  --card-accent: var(--orange);
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: clamp(26px,3vw,38px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.ticket-card::before { content: ""; position: absolute; inset: -1px; z-index: -1; opacity: 0; background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 20%), color-mix(in srgb, var(--card-accent) 28%, transparent), transparent 45%); transition: opacity .35s ease; }
.ticket-card:hover { transform: translateY(-11px) scale(1.008); border-color: color-mix(in srgb, var(--card-accent) 70%, white 10%); box-shadow: 0 30px 100px color-mix(in srgb, var(--card-accent) 18%, transparent), 0 24px 80px rgba(0,0,0,.56); }
.ticket-card:hover::before { opacity: 1; }
.ticket-fast { --card-accent: #f34624; }
.ticket-gold { --card-accent: #f6c453; border-color: rgba(246,196,83,.52); background: linear-gradient(155deg, rgba(246,196,83,.15), rgba(255,106,0,.07) 55%, rgba(255,255,255,.025)); }
.ticket-gold::after { content: ""; position: absolute; top: -30%; left: -65%; width: 35%; height: 160%; transform: rotate(20deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent); transition: left .8s ease; }
.ticket-gold:hover::after { left: 130%; }
.ticket-badge { position: absolute; top: 20px; right: 20px; padding: 7px 11px; border-radius: 99px; background: #f6c453; color: #1c1002; font-size: 9px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.ticket-topline { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.ticket-card h3 { margin: 32px 0 12px; font-family: var(--display); font-size: clamp(38px,4vw,58px); letter-spacing: .02em; line-height: 1; text-transform: uppercase; }
.ticket-price { display: flex; align-items: flex-start; margin: 12px 0 22px; color: var(--card-accent); }
.ticket-price span { margin: 16px 6px 0 0; font-size: 24px; font-weight: 900; }
.ticket-price strong { font-family: var(--display); font-size: clamp(76px,8vw,116px); line-height: .85; transition: transform .35s ease; }
.ticket-card:hover .ticket-price strong { transform: scale(1.035); }
.ticket-price small { align-self: end; margin: 0 0 8px 8px; color: var(--muted); font-weight: 800; }
.ticket-card > p { min-height: 50px; color: var(--muted); }
.ticket-card ul { display: grid; gap: 9px; margin: 24px 0 32px; padding: 0; list-style: none; }
.ticket-card li { position: relative; padding-left: 20px; color: rgba(255,255,255,.86); font-size: 14px; }
.ticket-card li::before { content: "✓"; position: absolute; left: 0; color: var(--card-accent); font-weight: 900; }
.button-ticket { position: absolute; left: 32px; right: 32px; bottom: 30px; border-color: color-mix(in srgb, var(--card-accent) 50%, white 8%); background: color-mix(in srgb, var(--card-accent) 12%, transparent); }
.button-ticket:hover { background: var(--card-accent); color: #100704; }
.ticket-note { display: flex; justify-content: center; gap: 20px 32px; margin-top: 38px; padding: 20px 24px; border: 1px solid var(--line); border-radius: 18px; color: var(--muted); text-align: center; }
.ticket-note b { color: var(--paper); }

.secret-section { min-height: 850px; display: grid; align-items: center; overflow: hidden; }
.secret-bg, .secret-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.secret-bg { object-fit: cover; filter: grayscale(.3) contrast(1.15); }
.secret-shade { background: linear-gradient(90deg, rgba(7,4,3,.96) 0%, rgba(7,4,3,.73) 58%, rgba(7,4,3,.6)), linear-gradient(0deg, var(--ink), transparent 32%, rgba(0,0,0,.35)); }
.secret-content { position: relative; z-index: 2; }
.secret-content .section-heading { max-width: 780px; }
.secret-content .section-heading p { margin-inline: 0; }
.locked-lineup { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; max-width: 1080px; margin: 46px 0 32px; }
.locked-artist { position: relative; min-height: 190px; display: flex; flex-direction: column; justify-content: end; padding: 22px; overflow: hidden; border: 1px solid rgba(255,106,0,.28); background: linear-gradient(180deg, rgba(255,106,0,.03), rgba(0,0,0,.76)); backdrop-filter: blur(6px); }
.locked-artist::before { content: ""; position: absolute; width: 160px; height: 160px; top: -50px; right: -70px; border-radius: 50%; background: var(--orange); filter: blur(55px); opacity: .15; }
.locked-artist > span { position: absolute; top: 16px; left: 18px; color: var(--orange); font-family: var(--serif); font-style: italic; }
.locked-artist strong { font-family: var(--display); font-size: 46px; letter-spacing: .05em; }
.locked-artist small { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }

.makeup-section { overflow: hidden; background: radial-gradient(circle at 22% 42%, rgba(0,255,230,.1), transparent 36rem), linear-gradient(130deg, #061211, #090706 64%); }
.makeup-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(45px,7vw,100px); align-items: center; }
.makeup-visual { position: relative; min-height: 820px; margin: 0; overflow: hidden; border: 1px solid rgba(38,226,214,.3); box-shadow: 0 35px 120px rgba(0,0,0,.58), 0 0 90px rgba(0,216,205,.09); }
.makeup-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,12,12,.62), transparent 35%); pointer-events: none; }
.makeup-visual img { width: 100%; height: 100%; min-height: 820px; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.makeup-visual:hover img { transform: scale(1.025); filter: saturate(1.08); }
.makeup-visual figcaption { position: absolute; z-index: 2; left: 24px; bottom: 24px; padding: 11px 16px; border: 1px solid rgba(38,226,214,.35); background: rgba(2,14,14,.76); color: #5ffff4; font-size: 10px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; backdrop-filter: blur(12px); }
.makeup-copy .section-number { color: #5ffff4; }
.makeup-copy > p:not(.lead) { color: var(--muted); font-size: 18px; line-height: 1.65; }
.mask-note { display: grid; gap: 7px; margin: 34px 0; padding: 24px 26px; border-left: 3px solid #5ffff4; background: rgba(38,226,214,.07); }
.mask-note strong { font-family: var(--display); font-size: clamp(24px,3vw,38px); line-height: 1; text-transform: uppercase; }
.mask-note span { color: rgba(255,255,255,.76); line-height: 1.5; }

.history-section { background: var(--ink); }
.history-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(50px,8vw,110px); align-items: center; }
.history-copy > p:not(.lead) { color: var(--muted); font-size: 17px; }
.history-copy blockquote { margin: 34px 0; padding: 24px 0 24px 24px; border-left: 3px solid var(--orange); color: var(--paper); font-family: var(--serif); font-size: clamp(21px,2.5vw,32px); font-style: italic; line-height: 1.35; }
.text-link { display: inline-flex; gap: 10px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid var(--orange); color: var(--orange-hot); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.history-collage { position: relative; display: grid; grid-template-columns: 1.45fr .8fr; grid-template-rows: 1fr 1fr; gap: 12px; min-height: 660px; }
.history-photo { margin: 0; overflow: hidden; border: 1px solid var(--line); }
.history-photo-large { grid-row: 1 / span 2; }
.history-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.history-photo:hover img { transform: scale(1.045); }
.collage-label { position: absolute; right: -18px; bottom: 28px; padding: 18px 22px; background: var(--orange); color: #170a03; font-family: var(--display); font-size: 23px; line-height: 1.05; text-transform: uppercase; transform: rotate(-2deg); box-shadow: var(--shadow); }

.experience-section { background: linear-gradient(180deg, var(--ink), #130b08); }
.experience-section .section-heading { max-width: 900px; margin-bottom: 56px; }
.experience-grid { display: grid; grid-template-columns: 1.45fr .8fr .8fr; gap: 14px; }
.experience-card { position: relative; min-height: 570px; overflow: hidden; border: 1px solid var(--line); background: #0c0806; transition: transform .35s ease, border-color .35s ease; }
.experience-card:hover { transform: translateY(-8px); border-color: rgba(255,106,0,.5); }
.experience-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .65; filter: saturate(.82); transition: transform .8s ease; }
.experience-card:hover img { transform: scale(1.045); }
.experience-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,3,2,.98), rgba(5,3,2,.03) 72%); }
.experience-card > div { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 28px; }
.experience-card span, .food-feature span { color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.experience-card h3, .food-feature h3, .location-details h3 { margin: 8px 0; font-family: var(--display); font-size: clamp(28px,3vw,46px); line-height: 1; text-transform: uppercase; }
.experience-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.food-feature { display: grid; grid-template-columns: auto 1fr .9fr; align-items: center; gap: 26px; margin-top: 14px; padding: 28px 34px; border: 1px solid rgba(255,106,0,.32); background: linear-gradient(100deg, rgba(255,106,0,.14), rgba(255,255,255,.02)); }
.food-feature h3 { margin-bottom: 0; }
.food-feature > p { color: var(--muted); }
.food-icon { display: grid; place-items: center; width: 76px; height: 76px; border: 1px solid var(--orange); border-radius: 50%; color: var(--orange); font-size: 32px; }

.tables-section { background: #100a08; overflow: hidden; }
.tables-section::before { content: "PRIVÉ"; position: absolute; right: -2vw; bottom: -5vw; color: rgba(255,255,255,.018); font-family: var(--display); font-size: 25vw; line-height: 1; }
.tables-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.tables-image { position: relative; min-height: 690px; overflow: hidden; }
.tables-image img { width: 100%; height: 100%; object-fit: cover; }
.tables-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, #140c09), linear-gradient(0deg, rgba(0,0,0,.52), transparent 45%); }
.tables-image > span { position: absolute; z-index: 2; left: 24px; bottom: 24px; padding: 10px 15px; background: rgba(0,0,0,.7); border: 1px solid var(--line); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; backdrop-filter: blur(8px); }
.tables-card { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; padding: clamp(38px,6vw,82px); border: 1px solid rgba(40,211,102,.25); background: linear-gradient(145deg, rgba(40,211,102,.08), rgba(255,255,255,.025)); }
.tables-card p { color: var(--muted); font-size: 17px; }
.whatsapp-art { position: absolute; top: 30px; right: 30px; width: 108px; height: 108px; border-radius: 24px; transform: rotate(5deg); box-shadow: 0 18px 55px rgba(0,0,0,.38); }
.table-price { display: flex; align-items: end; gap: 10px 16px; margin: 25px 0; padding: 24px 0; border-block: 1px solid var(--line); }
.table-price small { align-self: center; color: var(--muted); font-weight: 800; text-transform: uppercase; }
.table-price strong { color: var(--green); font-family: var(--display); font-size: clamp(62px,7vw,96px); line-height: .8; }
.table-price span { font-weight: 850; }
.phone-link { margin-top: 18px; color: var(--green); font-size: 17px; font-weight: 900; text-align: center; }
.legal-note { margin-top: 20px; color: #91847c; text-align: center; }

.gallery-section { background: var(--ink); }
.gallery-layout { display: grid; grid-template-columns: .42fr 1fr; gap: 15px; align-items: start; }
.video-card { position: sticky; top: 96px; overflow: hidden; border: 1px solid var(--line); background: #120b08; }
.video-card video { width: 100%; max-height: 680px; object-fit: cover; background: #030202; }
.video-card > div { padding: 22px; }
.video-card span { display: block; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.video-card strong { display: block; margin-top: 7px; font-family: var(--display); font-size: 26px; line-height: 1; text-transform: uppercase; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 10px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: #150d09; cursor: zoom-in; }
.gallery-item-1, .gallery-item-6 { grid-column: span 2; }
.gallery-item-3, .gallery-item-7 { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease, filter .35s ease; }
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.18); }
.gallery-item span { position: absolute; right: 12px; bottom: 12px; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(0,0,0,.4); font-size: 22px; backdrop-filter: blur(8px); }

.location-section { padding-top: 0; background: #0b0705; }
.location-visual { position: relative; min-height: 760px; overflow: hidden; }
.location-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.location-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #0b0705 0%, transparent 45%), linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.1)); }
.location-overlay { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: end; min-height: 760px; padding-bottom: 90px; }
.location-overlay { max-width: 1180px; }
.location-overlay h2 { max-width: 850px; }
.location-overlay p { color: rgba(255,255,255,.78); font-size: 18px; }
.location-details { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; padding-top: 70px; }
.location-details > div > span { color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.location-details p { color: var(--muted); }
.location-details iframe { width: 100%; height: 390px; border: 1px solid var(--line); filter: grayscale(1) invert(.9) hue-rotate(165deg) contrast(.9); }

.faq-section { background: #100a08; }
.faq-layout { display: grid; grid-template-columns: .42fr 1fr; gap: clamp(45px,8vw,110px); align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro h2 { font-size: clamp(48px,5vw,76px); }
.faq-intro p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 25px 0; cursor: pointer; list-style: none; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { display: grid; place-items: center; flex: 0 0 32px; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; color: var(--orange); font-size: 21px; font-style: normal; transition: transform .25s ease, background .25s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); background: rgba(255,106,0,.1); }
.faq-list details > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-list details[open] > div { grid-template-rows: 1fr; }
.faq-list details > div p { overflow: hidden; max-width: 760px; margin: 0 0 28px; color: var(--muted); }

.closing-section { display: grid; min-height: 760px; align-items: center; overflow: hidden; }
.closing-section > img, .closing-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.closing-section > img { object-fit: cover; filter: saturate(.8); }
.closing-shade { background: linear-gradient(90deg, rgba(7,4,3,.94), rgba(7,4,3,.55) 60%, rgba(7,4,3,.3)), linear-gradient(0deg, #080605 0%, transparent 50%); }
.closing-content { position: relative; z-index: 2; }
.closing-content > span { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.closing-content h2 { max-width: 950px; margin-top: 20px; font-size: clamp(60px,8.2vw,125px); }
.closing-content p { font-family: var(--serif); font-size: clamp(22px,3vw,38px); font-style: italic; }
.closing-content > div { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.site-footer { padding: 70px 0 25px; border-top: 1px solid var(--line); background: #050403; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3,.7fr); gap: 40px; }
.footer-brand img { width: 150px; height: 120px; object-fit: contain; object-position: left center; }
.footer-brand p { margin-top: 0; color: var(--muted); font-family: var(--serif); font-style: italic; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid span { margin-bottom: 8px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid a { color: var(--muted); font-size: 13px; }
.footer-grid a:hover { color: white; }
.production a { color: white; font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid var(--line); color: #776c65; font-size: 11px; }

.mobile-actions { display: none; }
.site-toast { position: fixed; z-index: 1200; right: 24px; bottom: 24px; width: min(390px, calc(100% - 32px)); padding: 22px; transform: translateY(130%); border: 1px solid rgba(255,106,0,.5); border-radius: 18px; background: rgba(16,10,7,.96); box-shadow: var(--shadow); backdrop-filter: blur(18px); transition: transform .35s ease; }
.site-toast.visible { transform: none; }
.site-toast strong, .site-toast span, .site-toast a { display: block; }
.site-toast strong { font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.site-toast span { margin-top: 5px; color: var(--muted); font-size: 13px; }
.site-toast a { margin-top: 12px; color: var(--orange); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.gallery-dialog { width: min(1100px, calc(100% - 30px)); max-height: 92vh; padding: 0; border: 1px solid var(--line); background: #080504; color: white; box-shadow: var(--shadow); }
.gallery-dialog::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(9px); }
.gallery-dialog img { width: 100%; max-height: 82vh; object-fit: contain; }
.gallery-dialog p { margin: 0; padding: 13px 20px; color: var(--muted); font-size: 13px; }
.dialog-close { position: absolute; z-index: 3; top: 12px; right: 12px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(0,0,0,.65); color: white; font-size: 27px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .menu-toggle { display: block; justify-self: end; order: 2; }
  .header-actions { order: 3; justify-self: end; }
  .site-nav { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; transform: translateY(-100%); opacity: 0; background: rgba(8,5,4,.98); transition: transform .35s ease, opacity .35s ease; }
  .site-nav a { font-family: var(--display); font-size: clamp(30px,5vw,52px); }
  .nav-open .site-nav { transform: none; opacity: 1; }
  .nav-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero-facts { grid-template-columns: repeat(3,1fr); }
  .hero-facts div:nth-child(3) { border-right: 0; }
  .hero-facts div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .experience-grid { grid-template-columns: 1.3fr 1fr; }
  .experience-card:last-child { grid-column: 1/-1; min-height: 430px; }
  .gallery-layout { grid-template-columns: .48fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item-3, .gallery-item-7 { grid-row: auto; }
}

@media (max-width: 840px) {
  .container { width: min(100% - 28px, 680px); }
  .section { padding: 85px 0; }
  .site-header { min-height: 70px; padding: 7px 14px; gap: 10px; }
  .brand { min-width: 0; }
  .brand img { width: 48px; height: 48px; }
  .brand span { display: none; }
  .header-actions .button-ghost { display: none; }
  .header-actions .button-primary { min-height: 40px; padding: 9px 13px; font-size: 9px; }
  .hero { min-height: 960px; }
  .hero-shade { background: linear-gradient(0deg, #090706 0%, rgba(5,3,2,.72) 46%, rgba(5,3,2,.72) 100%); }
  .hero-content { padding-top: 100px; padding-bottom: 96px; }
  .hero-logo { width: min(530px,95vw); max-height: none; margin: -35px auto -68px -18px; }
  .hero h1 { font-size: clamp(52px,14vw,82px); }
  .hero-copy { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .scroll-cue { display: none; }
  .early-strip-inner { grid-template-columns: 1fr; gap: 14px; padding-block: 30px; }
  .early-strip .button { width: 100%; }
  .tables-quick-inner { grid-template-columns: 1fr auto; }
  .tables-quick-copy { grid-column: 1/-1; }
  .tables-quick .button { width: 100%; }
  .split-intro, .history-grid, .tables-grid, .location-details, .faq-layout { grid-template-columns: 1fr; }
  .date-lockup { gap: 9px; }
  .date-lockup b { font-size: 66px; }
  .ticket-grid { grid-template-columns: 1fr; gap: 14px; }
  .ticket-card { min-height: 550px; }
  .locked-lineup { grid-template-columns: repeat(2,1fr); }
  .secret-section { min-height: 1050px; }
  .makeup-grid { grid-template-columns: 1fr; }
  .makeup-visual, .makeup-visual img { min-height: 700px; }
  .history-grid { gap: 60px; }
  .history-collage { min-height: 520px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card, .experience-card:last-child { grid-column: auto; min-height: 500px; }
  .food-feature { grid-template-columns: auto 1fr; }
  .food-feature > p { grid-column: 1/-1; }
  .tables-grid { width: 100%; }
  .tables-image { min-height: 500px; }
  .tables-image::after { background: linear-gradient(0deg, #140c09 0%, transparent 48%); }
  .tables-card { margin-top: -50px; padding: 70px 25px 40px; }
  .whatsapp-art { width: 82px; height: 82px; top: 20px; right: 20px; }
  .gallery-layout { grid-template-columns: 1fr; }
  .video-card { position: relative; top: 0; width: min(390px,100%); margin-inline: auto; }
  .gallery-grid { grid-auto-rows: 210px; }
  .location-visual, .location-overlay { min-height: 650px; }
  .location-details { gap: 28px; }
  .faq-intro { position: relative; top: 0; }
  .closing-section { min-height: 760px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .production { grid-column: 1/-1; }
  .mobile-actions { position: fixed; z-index: 1000; inset: auto 10px 10px; display: grid; grid-template-columns: 1fr 1fr; padding: 5px; border: 1px solid var(--line); border-radius: 14px; background: rgba(8,5,4,.91); box-shadow: 0 15px 50px rgba(0,0,0,.5); backdrop-filter: blur(18px); }
  .mobile-actions a { padding: 11px 7px; border-radius: 10px; color: white; font-size: 9px; font-weight: 950; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
  .mobile-actions a:first-child { background: linear-gradient(135deg, var(--orange-hot), var(--red)); color: #1b0902; }
  .mobile-actions a:last-child { color: var(--green); }
  .site-footer { padding-bottom: 90px; }
  .site-toast { bottom: 82px; right: 16px; }
}

@media (max-width: 520px) {
  .hero { min-height: 930px; }
  .hero-logo { margin-bottom: -55px; }
  .hero-facts { grid-template-columns: repeat(2,1fr); margin-top: 38px; }
  .hero-facts div, .hero-facts div:nth-child(3) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .hero-facts div:nth-child(even) { border-right: 0; }
  .hero-facts div:nth-last-child(-n+2) { border-bottom: 0; }
  .section-heading h2, .history-copy h2, .tables-card h2, .makeup-copy h2, .faq-intro h2, .location-overlay h2 { font-size: 50px; }
  .tables-quick-inner { grid-template-columns: 1fr; }
  .tables-quick-price { padding: 18px 0; border-inline: 0; border-block: 1px solid rgba(40,211,102,.22); }
  .makeup-visual, .makeup-visual img { min-height: 590px; }
  .locked-lineup { gap: 8px; }
  .locked-artist { min-height: 180px; padding: 16px; }
  .locked-artist strong { font-size: 38px; }
  .history-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 1.4fr .8fr; min-height: 500px; }
  .history-photo-large { grid-column: 1/-1; grid-row: auto; }
  .collage-label { right: 5px; bottom: 10px; font-size: 17px; }
  .food-feature { padding: 24px 20px; }
  .food-icon { width: 58px; height: 58px; }
  .table-price { flex-wrap: wrap; }
  .table-price small { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 165px; }
  .gallery-item-1, .gallery-item-6 { grid-column: span 2; }
  .footer-bottom { flex-direction: column; }
}

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