:root{
  --black: #08080a;
  --black-soft: #111113;
  --black-card: #18181b;
  --border: #2a2a2e;
  --orange: #ff7a1a;
  --orange-light: #ffb347;
  --orange-dark: #c9560c;
  --text: #f5f1ea;
  --text-soft: #a8a29b;
  --shadow: 0 10px 30px rgba(0,0,0,0.45);
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: 'Inter', Arial, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; }

h1,h2,h3,h4{
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 1px;
  font-weight: 400;
}

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display:inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.accent{ color: var(--orange); }

/* ---- 3D BACKGROUND CANVAS ---- */
#bg-canvas{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 50% 20%, #1a120a 0%, var(--black) 65%);
}

/* ---- PROGRESS BAR ---- */
#progress-bar{
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
  z-index: 1000;
  transition: width 0.1s ease-out;
}

/* ---- HEADER ---- */
header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,10,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 24px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}

.brand-icon{
  color: var(--orange);
  display:flex;
}

.brand-text{
  font-family:'Bebas Neue', Impact, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.brand-text b{ color: var(--orange); font-weight: 400; }

nav ul{
  display:flex;
  gap: 30px;
}

nav a{
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding-bottom: 4px;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

nav a:hover{ color: var(--text); }

nav a::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background: var(--orange);
  transition: width 0.25s ease;
}

nav a:hover::after{ width:100%; }

.nav-actions{
  display:flex;
  align-items:center;
  gap: 16px;
}

.nav-call{ display:flex; align-items:center; gap:8px; }

.menu-btn{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background:none;
  border:none;
  cursor:pointer;
}
.menu-btn span{
  display:block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---- BUTTONS ---- */
.btn{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid var(--orange);
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-solid{
  background: var(--orange);
  color: #12100e;
}
.btn-solid:hover{
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
}

.btn-outline{
  background: transparent;
  color: var(--text);
}
.btn-outline:hover{
  background: var(--orange);
  border-color: var(--orange);
  color: #12100e;
}

.btn-sm{ padding: 9px 18px; font-size: 0.85rem; }

/* ---- HERO ---- */
.hero{
  min-height: 92vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position: relative;
  padding: 60px 24px;
}

.hero-inner{ max-width: 780px; }

.hero h1{
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 22px;
  text-shadow: 0 0 40px rgba(255,122,26,0.25);
}

.hero-sub{
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--text-soft);
  font-size: 1.1rem;
}

.hero-actions{
  display:flex;
  gap: 16px;
  justify-content:center;
  flex-wrap: wrap;
}

.scroll-hint{
  position:absolute;
  bottom: 30px;
  left:50%;
  transform: translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
}
.scroll-hint span{
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--orange), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse{
  0%{ opacity:0; transform: scaleY(0.4); transform-origin: top; }
  50%{ opacity:1; transform: scaleY(1); transform-origin: top; }
  100%{ opacity:0; transform: scaleY(0.4); transform-origin: bottom; }
}

/* ---- SECTIONS ---- */
section{ padding: 110px 0; position: relative; }

.section-title{
  text-align:center;
  margin-bottom: 50px;
}
.section-title h2{
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

/* ---- ABOUT ---- */
.about-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:center;
}

.about-text h2{ font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 20px; }
.about-text p{ color: var(--text-soft); margin-bottom: 16px; }

.about-highlights{
  margin-top: 24px;
  display:grid;
  gap: 12px;
}
.about-highlights li{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 600;
}
.about-highlights .dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink:0;
  box-shadow: 0 0 10px var(--orange);
}

.about-media{
  position: relative;
}
.about-media img{
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-media-float{
  position:absolute;
  width: 46%;
  bottom: -30px;
  right: -30px;
  border: 4px solid var(--black);
}

/* ---- MENU ---- */
.menu-tabs{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:center;
  margin-bottom: 44px;
}

.menu-tab{
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--black-soft);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.88rem;
  cursor:pointer;
  transition: all 0.2s ease;
}
.menu-tab:hover{ border-color: var(--orange); color: var(--text); }
.menu-tab.active{
  background: var(--orange);
  border-color: var(--orange);
  color: #12100e;
}

.menu-panel{ display:none; }
.menu-panel.active{ display:block; animation: fadeUp 0.4s ease; }

@keyframes fadeUp{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform: translateY(0); }
}

.menu-list{
  max-width: 720px;
  margin: 0 auto;
  display:grid;
  gap: 4px;
}

.menu-list li{
  display:flex;
  align-items:baseline;
  gap: 10px;
  padding: 14px 6px;
  border-bottom: 1px dashed var(--border);
}

.menu-list li span{
  font-weight: 600;
  white-space: nowrap;
}

.menu-list li i{
  flex:1;
  border-bottom: 1px dotted var(--border);
  transform: translateY(-4px);
}

.menu-list li b{
  color: var(--orange);
  font-weight: 800;
  white-space: nowrap;
}

.allergen-note{
  text-align:center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--text-soft);
  max-width: 640px;
  margin-left:auto;
  margin-right:auto;
}

/* ---- GALLERY ---- */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}

.gallery-item{
  border: none;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--black-card);
}
.gallery-item.span-2{ grid-column: span 2; grid-row: span 1; }

.gallery-item img{
  width:100%;
  height:100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.9);
}
.gallery-item:hover img{
  transform: scale(1.08);
  filter: saturate(1.1);
}
.gallery-item::after{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after{ opacity: 1; }

/* ---- LIGHTBOX ---- */
.lightbox{
  position: fixed;
  inset:0;
  background: rgba(4,4,5,0.92);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 40px;
  z-index: 1000;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.25s ease;
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox img{
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close{
  position:absolute;
  top: 24px; right: 30px;
  background:none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor:pointer;
}
.lightbox-close:hover{ border-color: var(--orange); color: var(--orange); }

/* ---- CONTACT ---- */
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items:center;
}

.contact-info h2{ font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 14px; }
.contact-lead{ color: var(--text-soft); margin-bottom: 30px; max-width: 480px; }

.contact-item{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  margin-bottom: 22px;
}
.contact-item .icon{
  width: 46px; height: 46px;
  flex-shrink:0;
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.contact-item h4{ font-family:'Inter'; font-weight:800; font-size:0.95rem; margin-bottom:2px; }
.contact-item p{ color: var(--text-soft); font-size: 0.95rem; }

.contact-actions{
  display:flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-visual{ display:flex; justify-content:center; }
.contact-card{
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 34px;
  text-align:center;
  max-width: 360px;
  box-shadow: var(--shadow);
}
.contact-card svg{ color: var(--orange); margin-bottom: 18px; }
.contact-card p{ color: var(--text-soft); margin-bottom: 20px; }
.map-link{ color: var(--orange); font-weight:700; font-size: 0.9rem; }
.map-link:hover{ color: var(--orange-light); }

/* ---- FOOTER ---- */
footer{
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
}
.footer-grid{
  display:flex;
  flex-wrap:wrap;
  gap: 30px;
  align-items:center;
  justify-content:space-between;
}
.footer-brand{ margin-bottom: 8px; }
.footer-grid > div p{ color: var(--text-soft); font-size: 0.9rem; }
.footer-links{ display:flex; gap: 24px; flex-wrap: wrap; }
.footer-links a{ color: var(--text-soft); font-weight:600; font-size: 0.9rem; }
.footer-links a:hover{ color: var(--orange); }
.footer-copy{ width:100%; text-align:center; margin-top: 30px; color: var(--text-soft); font-size: 0.8rem; border-top: 1px solid var(--border); padding-top: 24px; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float{
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: #12100e;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: var(--shadow);
  z-index: 200;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }
.whatsapp-float svg{ width: 28px; height: 28px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px){
  .about-grid, .contact-grid{ grid-template-columns: 1fr; }
  .about-media{ order:-1; }
  .about-media-float{ display:none; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.span-2{ grid-column: span 2; }
}

@media (max-width: 760px){
  nav ul{
    position: fixed;
    top: 66px;
    left: 0; right: 0;
    background: var(--black-soft);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  nav ul.open{ max-height: 340px; }
  nav ul li{ padding: 16px 24px; border-top: 1px solid var(--border); }
  .menu-btn{ display:flex; }
  .nav-call{ display:none; }
  section{ padding: 80px 0; }
  .contact-actions{ flex-direction: column; }
  .contact-actions .btn{ justify-content:center; }
}
