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

@font-face {
  font-family: 'VisualMagnets';
  src: url('visualmagnets.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nectarine';
  src: url('Nectarine.ttf') format('truetype');
  font-display: swap;
}

:root {
  --red:   #E8311A;
  --pink:  #F5A0A8;
  --bg:    #F7C5CC;
  --dark:  #1A0A08;
  --white: #FFF5F0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
  background: rgba(26,10,8,0.85);
  backdrop-filter: blur(8px);
}

nav .logo {
  font-family: 'Nectarine', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--red);
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav ul a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

nav ul a:hover { opacity: 1; color: var(--pink); }

/* ── HERO ── */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 65%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
  z-index: 0;
}

#hero {
  min-height: 100vh;
  background: var(--red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-tag {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Nectarine', sans-serif;
  font-size: clamp(4rem, 18vw, 13rem);
  line-height: 1.3;
  padding-top: 0.2em;
  color: var(--pink);
  letter-spacing: -0.13em;
  user-select: none;
  font-weight: 67;
  filter: url(#hero-grain);
  width: 100%;
  transform: scaleX(1.3);
}

.hero-title span {
  display: inline-block;
  position: relative;
}

.hero-price {
  margin-top: -0.5rem;
  background: var(--pink);
  color: var(--red);
  display: inline-block;
  padding: 1rem clamp(1.5rem, 8vw, 10.5rem);
  border-radius: 100px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.hero-sub {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  opacity: 0.75;
  letter-spacing: 0.08em;
}

.hero-cta {
  margin-top: 3rem;
  display: inline-block;
  border: 2px solid var(--pink);
  color: var(--pink);
  padding: 0.9rem 2.4rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.hero-cta:hover { background: var(--pink); color: var(--red); }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--pink);
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 18s linear infinite;
  will-change: transform;
}

.marquee-inner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--red);
  margin: 0 2rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS shared ── */
section { padding: 6rem 2rem; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  opacity: 0.8;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* ── CONCEPT ── */
#concept {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.concept-text p {
  margin-top: 1.5rem;
  line-height: 1.75;
  color: rgba(255,245,240,0.7);
  font-size: 1.05rem;
  max-width: 44ch;
}

.concept-badge {
  display: inline-block;
  margin-top: 2rem;
  background: var(--red);
  color: var(--pink);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
}

.concept-photos {
  position: relative;
  height: 500px;
}

.concept-photos img {
  position: absolute;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.concept-photos img:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  z-index: 10 !important;
}

.cp-1 {
  width: 62%; aspect-ratio: 4/5;
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}
.cp-1:hover { transform: rotate(0deg) scale(1.04); }

.cp-2 {
  width: 56%; aspect-ratio: 1;
  top: 30px; right: 0;
  transform: rotate(2deg);
  z-index: 3;
}
.cp-2:hover { transform: rotate(0deg) scale(1.04); }

.cp-3 {
  width: 52%; aspect-ratio: 3/4;
  bottom: 0; left: 22%;
  transform: rotate(-1.5deg);
  z-index: 4;
}
.cp-3:hover { transform: rotate(0deg) scale(1.04); }

/* ── MENU ── */
#menu {
  background: var(--bg);
  color: var(--dark);
  padding: 6rem 2rem;
}

#menu .inner {
  max-width: 1100px;
  margin: 0 auto;
}

#menu h2 { color: var(--red); }
#menu .section-label { color: var(--red); }

#menu p.intro {
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.65;
  max-width: 50ch;
}

.menu-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}

.menu-card {
  background: var(--red);
  color: var(--white);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: opacity 0.55s ease, transform 0.2s ease !important;
}

.menu-card:hover { transform: translateY(-4px) !important; }

.menu-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--pink);
}

.menu-card p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.6;
}

.menu-card .price-tag {
  margin-top: 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
}

.menu-extras {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-top: 2px solid rgba(232,49,26,0.2);
  padding-top: 2.5rem;
}

.menu-extra-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 1rem;
}

.menu-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  opacity: 0.5;
  font-style: italic;
}

/* ── HOURS ── */
#hours {
  background: var(--red);
  padding: 6rem 2rem;
}

#hours .inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

#hours .section-label { color: var(--pink); opacity: 0.9; }
#hours h2 { color: var(--white); }

.hours-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2rem;
  background: rgba(255,245,240,0.1);
  border-radius: 14px;
  font-size: 1.05rem;
}

.hours-row .day {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hours-row .time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--pink);
}

.hours-row.closed { opacity: 0.35; }

/* ── LOCATION ── */
#location {
  background: var(--dark);
  padding: 6rem 2rem;
}

#location .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

#location h2 { color: var(--white); }

.location-detail {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.detail-item span:first-child {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  opacity: 0.8;
}

.detail-item span:last-child {
  font-size: 1.1rem;
  font-weight: 500;
}

#enigma-map {
  border-radius: 24px;
  aspect-ratio: 1;
  border: 2px solid rgba(232,49,26,0.3);
  overflow: hidden;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  background: var(--red);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.ig-link:hover { opacity: 0.85; }

/* ── FOOTER ── */
footer {
  background: #110604;
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.45;
  letter-spacing: 0.1em;
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--red);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.35s ease;
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

body.loading { overflow: hidden; }

.loader-logo {
  font-family: 'Nectarine', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: var(--pink);
  opacity: 0;
  animation: logo-appear 0.25s ease 2.0s forwards;
  display: flex;
  align-items: center;
}

.loader-logo span {
  display: inline-block;
}

#loader::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.10) 0px, rgba(0,0,0,0.10) 1px,
    transparent 1px, transparent 3px
  );
  pointer-events: none;
  z-index: 1;
}

@keyframes logo-appear {
  to { opacity: 1; }
}

/* ── VIDEO SECTION ── */
#vibe {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#vibe video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

#vibe::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,10,8,0.35) 0%,
    rgba(26,10,8,0.10) 40%,
    rgba(26,10,8,0.10) 60%,
    rgba(26,10,8,0.60) 100%
  );
  pointer-events: none;
}

.vibe-text {
  position: relative;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}

.vibe-text .section-label {
  color: var(--pink);
  opacity: 0.9;
}

.vibe-text h2 {
  font-size: clamp(3.5rem, 12vw, 9rem);
  color: var(--white);
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.vibe-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.55;
}

.vibe-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}

.vibe-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: var(--white);
  animation: scroll-line 1.6s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}

.reveal.reveal-left {
  transform: translateX(-32px);
}

.reveal.reveal-right {
  transform: translateX(32px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: transform, opacity;
}

.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1)  { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2)  { transition-delay: 0.13s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(3)  { transition-delay: 0.21s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(4)  { transition-delay: 0.29s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(5)  { transition-delay: 0.37s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(6)  { transition-delay: 0.45s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(7)  { transition-delay: 0.53s; opacity: 1; transform: none; }

/* Hide mobile menu on desktop */
#mobile-menu { display: none; }

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.nav-toggle span:nth-child(3) { width: 65%; align-self: flex-end; }

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  nav ul { display: none; }

  #mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,10,8,0.97);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99;
  }

  #mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  #mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
  }

  #mobile-menu a:hover { opacity: 1; color: var(--pink); }

  #concept {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
  }

  #location .inner {
    grid-template-columns: 1fr;
  }

  #enigma-map { aspect-ratio: 4/3; }
  .concept-photos { height: 360px; }

  .hero-title { font-size: 18vw; letter-spacing: -0.13em; width: 100%; transform: scaleX(1.3); }
  .hero-title span:nth-child(1) { transform: rotate(-4deg) translateY(4px) !important; }
  .hero-title span:nth-child(2) { transform: rotate(3deg) translateY(-4px) !important; }
  .hero-title span:nth-child(3) { transform: rotate(-2deg) translateY(3px) !important; }
  .hero-title span:nth-child(4) { transform: rotate(4deg) translateY(-4px) !important; }
  .hero-title span:nth-child(5) { transform: rotate(-3deg) translateY(4px) !important; }
  .hero-title span:nth-child(6) { transform: rotate(3deg) translateY(-3px) !important; }

  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-card { text-align: center; padding: 1.2rem 1rem; }
  .menu-card h3 { font-size: 1.1rem; }
  .menu-card .price-tag { font-size: 1.4rem; }
}
