:root {
  --maroon: #6a1020;
  --maroon-dark: #160308;
  --gold: #ffc94a;
  --ivory: #0b0b0c;
  --cream: #111113;
  --charcoal: #050505;
  --ink: #f7efe0;
  --teal: #31d7c7;
  --white: #ffffff;
  --muted: #c9b9a0;
  --ember: #ff4d1f;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x:hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(106, 16, 32, 0.42), transparent 30%),
    radial-gradient(circle at 90% 32%, rgba(212, 175, 55, 0.16), transparent 28%),
    #050505;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
  overflow-x:hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}


svg.lucide{
    width:20px;
    height:20px;
    stroke-width:2;
    display:inline-block;
    vertical-align:middle;
}


.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: var(--white);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(5, 5, 5, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 201, 74, 0.32), transparent 34%),
    var(--maroon);
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-weight: 800;
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.08;
}

.brand small {
  display: block;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.8;
}

.nav-toggle,
.icon-btn {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.46);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
  cursor: pointer;
}

.nav-links {
  position: fixed;
  inset: 70px 16px auto;
  display: none;
  padding: 20px;
  border: 1px solid rgba(106, 16, 32, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.96);
  color: var(--white);
  box-shadow: var(--shadow);
}

.nav-links.active {
  display: grid;
  gap: 14px;
}

.nav-links a {
  font-weight: 600;
}

.header-action {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.22)),
    url("https://images.unsplash.com/photo-1599487488170-d11ec9c172f0?auto=format&fit=crop&w=1800&q=80") center right / cover,
    #050505;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-video.is-playing {
  opacity: 0.58;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.28) 58%, rgba(5, 5, 5, 0.56)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.84), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  padding: 120px clamp(18px, 6vw, 72px) 150px;
  transform: translateY(var(--scroll-lift, 0));
  animation: heroReveal 1s ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.55rem, 9vw, 5.8rem);
  color: var(--white);
  text-shadow:
    0 0 26px rgba(255, 201, 74, 0.16),
    0 10px 38px rgba(0, 0, 0, 0.52);
}

.hero-subtitle {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 10%, rgba(255, 255, 255, 0.4) 42%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.btn:hover,
.dish-card:hover,
.event-grid article:hover {
  transform: translateY(-6px) scale(1.01);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn.primary {
  background: linear-gradient(135deg, #ffe68a, var(--gold) 48%, #b86c14);
  color: #221603;
  box-shadow: 0 16px 38px rgba(255, 201, 74, 0.34);
}

.btn.secondary {
  border-color: rgba(212, 175, 55, 0.65);
  background: linear-gradient(135deg, var(--maroon), #2a050d);
  color: var(--white);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
}

.btn.full {
  width: 100%;
}

.hero-panel {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 6vw, 72px);
  right: clamp(18px, 6vw, 72px);
  bottom: 54px;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.42);
  backdrop-filter: blur(12px);
  animation: floatPanel 4s ease-in-out infinite;
}

.hero-panel span {
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}

.hero-panel strong {
  color: var(--gold);
  font-size: 0.95rem;
}

.hero-sparks {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-sparks span {
  position: absolute;
  bottom: -30px;
  width: 5px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(var(--gold), var(--ember));
  filter: blur(0.2px);
  opacity: 0.7;
  animation: riseSpark 5.5s linear infinite;
}

.hero-sparks span:nth-child(1) {
  left: 14%;
  animation-delay: 0s;
}

.hero-sparks span:nth-child(2) {
  left: 36%;
  animation-delay: 1.2s;
  animation-duration: 6.7s;
}

.hero-sparks span:nth-child(3) {
  left: 58%;
  animation-delay: 0.5s;
  animation-duration: 5.8s;
}

.hero-sparks span:nth-child(4) {
  left: 76%;
  animation-delay: 2s;
  animation-duration: 7s;
}

.hero-sparks span:nth-child(5) {
  left: 88%;
  animation-delay: 1.6s;
  animation-duration: 5.2s;
}

.hero-sparks span:nth-child(6) {
  left: 24%;
  animation-delay: 2.7s;
  animation-duration: 6.1s;
}

.viral-strip {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 201, 74, 0.22);
  border-bottom: 1px solid rgba(255, 201, 74, 0.18);
  background: rgba(5, 5, 5, 0.62);
  backdrop-filter: blur(14px);
}

.viral-strip span {
  flex: 0 0 auto;
  min-width: max-content;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: marquee 18s linear infinite;
}

.section,
.experience,
.visit,
.reservation,
.footer {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 6vw, 72px);
}

.signature,
.split,
.gallery {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    #050505;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading h2,
.experience-copy h2,
.visit-info h2,
.reservation-copy h2,
.split h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
}

.section-heading p,
.experience-copy p,
.visit-info p,
.reservation-copy p,
.split p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.text-link {
  width: fit-content;
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 6px;
}

.dish-grid {
  display: grid;
  gap: 18px;
}

.dish-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 74, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.dish-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.32) contrast(1.1);
}

.dish-card div {
  padding: 20px;
}

.dish-card h3,
.event-grid h3,
.footer h3 {
  margin: 0 0 8px;
  color: var(--gold);
}

.dish-card p,
.event-grid p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.dish-card span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal);
  font-weight: 800;
}

.dish-card,
.event-grid article,
.gallery-grid button,
.review-card,
.menu-preview,
.experience-media,
.experience-copy,
.visit-info,
.visit iframe,
.reservation-copy,
.reservation-form,
.section-heading {
  will-change: transform, opacity;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dish-card.reveal:nth-child(2),
.event-grid article.reveal:nth-child(2),
.gallery-grid button.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.dish-card.reveal:nth-child(3),
.event-grid article.reveal:nth-child(3),
.gallery-grid button.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.dish-card.reveal:nth-child(4),
.event-grid article.reveal:nth-child(4),
.gallery-grid button.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.dish-card.reveal:nth-child(5),
.gallery-grid button.reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.gallery-grid button.reveal:nth-child(6) {
  transition-delay: 0.4s;
}

.experience {
  display: grid;
  gap: 34px;
  background:
    linear-gradient(135deg, rgba(106, 16, 32, 0.2), transparent 44%),
    var(--charcoal);
  color: var(--white);
}

.experience-copy h2 {
  color: var(--white);
}

.experience-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 700;
}

.events {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 201, 74, 0.12), transparent 26%),
    var(--cream);
}

.event-grid {
  display: grid;
  gap: 16px;
}

.event-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 201, 74, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.event-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--gold);
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.menu-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 201, 74, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.menu-tab {
  min-height: 40px;
  border: 1px solid rgba(255, 201, 74, 0.18);
  border-radius: var(--radius);
  background: #151515;
  color: var(--gold);
  padding: 8px 14px;
  font-weight: 800;
  cursor: pointer;
}

.menu-tab.active {
  background: var(--maroon);
  color: var(--white);
}

.menu-items {
  flex-basis: 100%;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 201, 74, 0.12);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item strong {
  color: var(--white);
}

.menu-item small {
  color: var(--muted);
}

.menu-item span {
  color: var(--gold);
  font-weight: 800;
}

.reviews {
  background:
    linear-gradient(rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.82)),
    url("https://images.unsplash.com/photo-1544148103-0773bf10d330?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.reviews .section-heading h2 {
  color: var(--white);
}

.review-shell {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
}

.review-card {
  min-height: 270px;
  padding: clamp(22px, 5vw, 40px);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.54);
  backdrop-filter: blur(12px);
}

.review-stars {
  color: var(--gold);
  font-weight: 800;
}

.review-card blockquote {
  margin: 18px 0;
  font-size: clamp(1.05rem, 3vw, 1.45rem);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon-dark);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-grid button {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-grid button:hover img {
  transform: scale(1.06);
}

.visit {
  display: grid;
  gap: 24px;
  background: var(--cream);
}

.visit address {
  margin: 16px 0;
  color: var(--muted);
  font-style: normal;
}

.visit iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reservation {
  display: grid;
  gap: 28px;
  background:
    linear-gradient(rgba(27, 23, 23, 0.82), rgba(27, 23, 23, 0.82)),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.reservation-copy h2 {
  color: var(--white);
}

.reservation-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.48);
  backdrop-filter: blur(14px);
}

.reservation-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.reservation-form input,
.reservation-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--charcoal);
  padding: 10px 12px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 700;
}

.footer {
  display: grid;
  gap: 26px;
  background: var(--charcoal);
  color: var(--white);
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand {
  margin-bottom: 16px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: var(--radius);
  color: var(--gold);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #1faa59;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(20, 80, 42, 0.32);
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 8, 9, 0.88);
}

.lightbox.active {
  display: flex;
}

.lightbox .icon-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--white);
}

.lightbox img {
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}

.menu-dialog {
  width: min(720px, calc(100% - 28px));
  border: 0;
  border-radius: var(--radius);
  padding: 24px;
  background: #0d0d0e;
  color: var(--white);
}

.menu-dialog::backdrop {
  background: rgba(15, 8, 9, 0.7);
}

.dialog-close {
  float: right;
  color: var(--white);
}

.dialog-menu {
  box-shadow: none;
}

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(var(--scroll-lift, 0));
  }
}

@keyframes riseSpark {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.7) rotate(0deg);
  }

  18% {
    opacity: 0.75;
  }

  100% {
    opacity: 0;
    transform: translateY(-106vh) translateX(34px) scale(1.12) rotate(18deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-180px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 16px 38px rgba(255, 201, 74, 0.28);
  }

  50% {
    box-shadow: 0 18px 54px rgba(255, 77, 31, 0.34);
  }
}

.btn.primary,
.whatsapp-float {
  animation: pulseGlow 2.8s ease-in-out infinite;
}

@media (min-width: 700px) {
  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .dish-grid,
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reservation-form {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }

  .reservation-form .full,
  .form-note {
    grid-column: 1 / -1;
  }

  .footer {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    justify-content: center;
    gap: clamp(16px, 2vw, 28px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: currentColor;
  }

  .header-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.56);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-weight: 800;
  }

  .dish-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .dish-card {
    grid-template-rows: auto 1fr;
  }

  .experience,
  .visit,
  .reservation,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .event-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
