  :root {
    --char: #111009;
    --ember: #F5C518;
    --gold: #D4A017;
    --cream: #F5EDD6;
    --smoke: #2A2720;
    --ash: #6B6457;
    --white: #FDFAF3;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--char);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }



  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 4rem;
    background: #0a0a0a;
    backdrop-filter: blur(4px);
    border-bottom: 1.5px solid #F5C518;
    animation: navSlide 0.8s ease forwards;
  }
  @keyframes navSlide { from { opacity:0; transform: translateY(-20px);} to { opacity:1; transform:none;} }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .nav-logo img {
    height: 65px;
    width: auto;
    margin: -5px 0 -15px -1.5rem;
  }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--ember);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--ember);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 2px;
    letter-spacing: 2px !important;
    transition: background 0.3s, transform 0.2s !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: #c43508 !important; transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 4rem 4rem;
  }

  /* Full-bleed video background */
  .hero-video-wrap {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
  }
  .hero-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    /* CSS-level quality enhancements */
    filter: contrast(1.1) saturate(1.25) brightness(0.55);
    transform: scale(1.04); /* slight zoom-in for cinematic feel */
    transition: transform 12s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  .hero-video-wrap video.loaded { transform: scale(1.0); }

  /* Cinematic overlay layers */
  .hero-video-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
      /* left-side dark vignette for text legibility */
      linear-gradient(to right, rgba(17,16,9,0.92) 0%, rgba(17,16,9,0.65) 45%, rgba(17,16,9,0.2) 70%, rgba(17,16,9,0.05) 100%),
      /* bottom fade */
      linear-gradient(to top, rgba(17,16,9,0.9) 0%, transparent 40%),
      /* top nav fade */
      linear-gradient(to bottom, rgba(17,16,9,0.7) 0%, transparent 20%),
      /* ember glow from right */
      radial-gradient(ellipse 55% 70% at 75% 55%, rgba(232,66,10,0.18), transparent 65%),
      /* scanline grain for texture */
      repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px);
  }

  .hero-content {
    position: relative; z-index: 2;
    animation: fadeUp 1s 0.3s both;
  }
  @keyframes fadeUp { from {opacity:0;transform:translateY(40px);} to {opacity:1;transform:none;} }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(232,66,10,0.12);
    border: 1px solid rgba(232,66,10,0.35);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1.8rem;
  }
  .hero-badge::before { content: '🔥'; font-size: 0.85rem; }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4.5rem, 9vw, 8.5rem);
    line-height: 0.92;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 0.3rem;
  }
  .hero h1 .fire-word {
    color: var(--ember);
    display: block;
    -webkit-text-stroke: 1px rgba(232,66,10,0.5);
    text-shadow: 0 0 60px rgba(232,66,10,0.4), 0 0 120px rgba(232,66,10,0.15);
  }
  .hero h1 .italic-word {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.65em;
    color: var(--gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 0.15em;
  }

  .hero-desc {
    color: var(--ash);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 440px;
    margin: 1.8rem 0 2.5rem;
    font-weight: 300;
  }

  .hero-actions { display: flex; gap: 1rem; align-items: center; }

  .btn-primary {
    background: var(--ember);
    color: var(--white);
    padding: 1rem 2.2rem;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 8px 32px rgba(232,66,10,0.35);
  }
  .btn-primary:hover { background: #c43508; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,66,10,0.5); }

  .btn-ghost {
    color: var(--cream);
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(245,237,214,0.25);
    border-radius: 2px;
    transition: border-color 0.3s, color 0.3s;
  }
  .btn-ghost:hover { border-color: var(--cream); color: var(--white); }

  .hero-visual {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end;
    animation: fadeUp 1s 0.9s both;
    padding-bottom: 3rem;
    align-self: flex-end;
  }

  /* Scroll indicator */
  .scroll-hint {
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    color: rgba(245,237,214,0.45);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  .scroll-hint .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, rgba(232,66,10,0.8), rgba(245,237,214,0.1));
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:0.6} 50%{transform:scaleY(0.5);opacity:1} }

  /* Video quality badge */
  .video-quality-badge {
    position: absolute; top: 2rem; right: 2rem;
    background: rgba(17,16,9,0.6);
    border: 1px solid rgba(212,160,23,0.35);
    border-radius: 3px;
    padding: 0.35rem 0.8rem;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    display: flex; align-items: center; gap: 0.4rem;
  }
  .video-quality-badge::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--ember);
    border-radius: 50%;
    animation: blink 1.8s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

  .hero-stats {
    position: absolute; bottom: 2.5rem; left: 4rem;
    background: rgba(17,16,9,0.55);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212,160,23,0.25);
    border-radius: 4px;
    padding: 1.2rem 1.6rem;
    display: flex; gap: 2rem;
    z-index: 3;
    animation: fadeUp 1s 1.1s both;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ash);
    margin-top: 0.2rem;
  }

  /* MARQUEE */
  .marquee-strip {
    background: var(--ember);
    padding: 0.9rem 0;
    overflow: hidden;
    position: relative;
  }
  .marquee-track {
    display: flex; gap: 3rem;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
  }
  @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: #000000;
    display: flex; align-items: center; gap: 1rem;
    flex-shrink: 0;
  }
  .marquee-dot { width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%; }

  /* SECTION COMMON */
  section { padding: 7rem 4rem; }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--ember); }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.95;
    color: var(--white);
    letter-spacing: 1px;
  }
  .section-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 0.85em;
  }

  /* ABOUT */
  .about {
    background: var(--smoke);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .about::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(ellipse at right, rgba(212,160,23,0.06), transparent 70%);
    pointer-events: none;
  }

  .about-text { position: relative; }
  .about-body {
    color: var(--ash);
    line-height: 1.85;
    font-size: 1rem;
    margin: 1.8rem 0 2.5rem;
  }
  .about-body strong { color: var(--cream); font-weight: 500; }

  .about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-bottom: 2.5rem;
  }
  .feature-chip {
    display: flex; align-items: center; gap: 0.7rem;
    background: rgba(232,66,10,0.08);
    border: 1px solid rgba(232,66,10,0.2);
    border-radius: 2px;
    padding: 0.8rem 1rem;
    font-size: 0.82rem;
    color: var(--cream);
    letter-spacing: 0.5px;
  }
  .feature-chip .icon { font-size: 1.1rem; }

  .about-img-side {
    position: relative;
  }
  .about-img-frame {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .about-img-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.1);
    transition: transform 0.6s ease;
  }
  .about-img-frame:hover img { transform: scale(1.04); }
  .about-img-frame::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(17,16,9,0.5) 0%, transparent 50%);
  }

  .about-accent-card {
    position: absolute; bottom: 2rem; right: -2rem;
    background: var(--ember);
    color: var(--white);
    padding: 1.2rem 1.6rem;
    border-radius: 4px;
    z-index: 2;
    max-width: 200px;
  }
  .about-accent-card .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
  }
  .about-accent-card .label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.85;
    line-height: 1.3;
    margin-top: 0.3rem;
  }

  /* MENU TEASER */
  .menu-section {
    background: var(--char);
    position: relative;
    overflow: hidden;
  }
  .menu-section::before {
    content: 'MENU';
    position: absolute; right: -3rem; top: 50%; transform: translateY(-50%) rotate(90deg);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12rem;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    letter-spacing: 10px;
  }

  .menu-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 4rem;
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255,255,255,0.05);
  }

  .menu-card {
    background: #0a0a0a;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: pointer;
  }
  .menu-card:hover { background: #111111; }
  .menu-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 0; height: 2px;
    background: var(--ember);
    transition: width 0.4s ease;
  }
  .menu-card:hover::before { width: 100%; }

  .menu-card-tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1rem;
  }
  .menu-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
    line-height: 1.2;
  }
  .menu-card-desc {
    color: var(--ash);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .menu-card-footer {
    display: flex; justify-content: space-between; align-items: center;
  }
  .menu-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 1px;
  }
  .menu-order-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(232,66,10,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ember);
    font-size: 1.2rem;
    transition: background 0.3s, border-color 0.3s;
  }
  .menu-card:hover .menu-order-btn { background: var(--ember); border-color: var(--ember); color: white; }

  /* GALLERY */
  .gallery-section {
    background: var(--smoke);
    padding: 7rem 0 7rem 4rem;
  }
  .gallery-header { margin-bottom: 3rem; padding-right: 4rem; }

  .gallery-scroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--ember) var(--char);
  }
  .gallery-scroll-wrap::-webkit-scrollbar {
    height: 6px;
  }
  .gallery-scroll-wrap::-webkit-scrollbar-track {
    background: var(--char);
  }
  .gallery-scroll-wrap::-webkit-scrollbar-thumb {
    background: var(--ember);
    border-radius: 3px;
  }
  .gallery-track {
    display: flex; gap: 1.5px;
    animation: galleryScroll 30s linear infinite;
    width: max-content;
    cursor: grab;
  }
  .gallery-track:hover { animation-play-state: paused; }
  .gallery-track.dragging { animation-play-state: paused; cursor: grabbing; }
  @keyframes galleryScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

  .gallery-item {
    width: 360px;
    height: 440px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
  }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s;
    filter: contrast(1.05) saturate(1.05);
  }
  .gallery-item:hover img { transform: scale(1.07); filter: contrast(1.12) saturate(1.2); }
  .gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(17,16,9,0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .gallery-item:hover::after { opacity: 1; }

  .gallery-placeholder {
    background: linear-gradient(135deg, var(--char), #1e1b15);
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: rgba(212,160,23,0.3);
    border: 1px solid rgba(212,160,23,0.1);
    border-radius: 4px;
  }

  /* TESTIMONIALS */
  .testimonials {
    background: var(--char);
    position: relative;
    overflow: hidden;
  }
  .testimonials::before {
    content: '"';
    position: absolute; right: 3rem; top: -2rem;
    font-family: 'Playfair Display', serif;
    font-size: 30rem;
    color: rgba(212,160,23,0.04);
    line-height: 1;
    pointer-events: none;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    background: rgba(255,255,255,0.04);
  }
  .testimonial-card {
    background: var(--smoke);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .testimonial-card:hover { background: #221e18; }
  .testimonial-card.featured {
    background: var(--ember);
    grid-row: span 1;
  }
  .testimonial-card.featured:hover { background: #d13a08; }

  .stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
  }
  .testimonial-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--cream);
    margin-bottom: 1.8rem;
  }
  .testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.95); }
  .testimonial-author {
    display: flex; align-items: center; gap: 0.8rem;
  }
  .author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ember), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
  }
  .author-name {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--cream);
    letter-spacing: 0.5px;
  }
  .author-tag {
    font-size: 0.7rem;
    color: var(--ash);
    letter-spacing: 1px;
  }
  .testimonial-card.featured .author-tag { color: rgba(255,255,255,0.7); }

  /* FAQ */
  .faq-section {
    background: var(--smoke);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
  }

  .faq-aside {
    position: sticky; top: 8rem;
  }
  .faq-aside p {
    color: var(--ash);
    line-height: 1.7;
    margin-top: 1.5rem;
    font-size: 0.95rem;
  }
  .faq-contact-card {
    margin-top: 2.5rem;
    background: var(--char);
    border: 1px solid rgba(212,160,23,0.15);
    border-radius: 4px;
    padding: 1.8rem;
  }
  .faq-contact-card .contact-row {
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 0.85rem; color: var(--cream);
    padding: 0.5rem 0;
  }
  .faq-contact-card .contact-row + .contact-row { border-top: 1px solid rgba(255,255,255,0.06); }
  .contact-icon { font-size: 1rem; }

  .faq-list { display: flex; flex-direction: column; gap: 2px; }
  .faq-item {
    background: var(--char);
    border-radius: 2px;
    overflow: hidden;
    transition: background 0.3s;
  }
  .faq-item:hover { background: #16140f; }

  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--cream);
    letter-spacing: 0.3px;
    user-select: none;
  }
  .faq-q .toggle {
    width: 28px; height: 28px;
    border: 1px solid rgba(232,66,10,0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ember);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
    line-height: 1;
  }
  .faq-item.open .faq-q .toggle { background: var(--ember); color: white; transform: rotate(45deg); }

  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    color: var(--ash);
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 0 2rem;
  }
  .faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
  }

  /* RESERVATION */
  .reservation-section {
    background: #000000;
    padding: 7rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .reservation-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,160,23,0.08), transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232,66,10,0.05), transparent 50%),
      radial-gradient(ellipse 40% 60% at 80% 80%, rgba(232,66,10,0.05), transparent 50%);
    pointer-events: none;
  }
  .reservation-section::after {
    content: 'RESERVE';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14rem;
    color: rgba(212,160,23,0.03);
    letter-spacing: 15px;
    pointer-events: none;
    white-space: nowrap;
  }
  .reservation-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .reservation-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow:
      0 0 8px rgba(212,160,23,0.3),
      0 0 20px rgba(212,160,23,0.15),
      0 0 40px rgba(212,160,23,0.08);
    animation: titleGlow 3s ease-in-out infinite alternate;
  }
  @keyframes titleGlow {
    from {
      text-shadow:
        0 0 8px rgba(212,160,23,0.3),
        0 0 20px rgba(212,160,23,0.15),
        0 0 40px rgba(212,160,23,0.08);
    }
    to {
      text-shadow:
        0 0 12px rgba(212,160,23,0.4),
        0 0 28px rgba(212,160,23,0.2),
        0 0 50px rgba(212,160,23,0.1);
    }
  }
  .reservation-subtitle {
    text-align: center;
    color: var(--ash);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 3rem;
  }
  .reservation-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(17,16,9,0.6);
    border: 1px solid rgba(212,160,23,0.15);
    border-radius: 6px;
    padding: 3rem;
    backdrop-filter: blur(8px);
    box-shadow:
      0 20px 60px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(212,160,23,0.1);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .form-group label {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.5px;
  }
  .form-group input,
  .form-group select {
    background: rgba(212,160,23,0.08);
    border: 1.5px solid var(--gold);
    border-radius: 3px;
    padding: 1rem 1.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--cream);
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-group input::placeholder {
    color: var(--ash);
  }
  .form-group select {
    color: var(--ash);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D4A017' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 2.5rem;
  }
  .form-group select option {
    background: #111009;
    color: var(--cream);
  }
  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--ember);
    background: rgba(232,66,10,0.06);
    box-shadow: 0 0 0 3px rgba(232,66,10,0.1), 0 0 20px rgba(212,160,23,0.1);
  }
  .form-group input[type="date"] {
    color: var(--ash);
  }
  .form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.6) sepia(1) saturate(3) hue-rotate(10deg);
    cursor: pointer;
  }
  .form-submit {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .btn-reservation {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 1.1rem 3.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
  }
  .btn-reservation:hover {
    color: var(--ember);
    border-color: var(--ember);
    box-shadow: 0 0 20px rgba(232,66,10,0.2), inset 0 0 20px rgba(232,66,10,0.05);
    transform: translateY(-2px);
  }

  /* ORDER ONLINE */
  .order-section {
    background: var(--smoke);
    padding: 7rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .order-section::before {
    content: 'ORDER';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14rem;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    letter-spacing: 15px;
    white-space: nowrap;
  }
  .order-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .order-container .section-label { justify-content: center; }
  .order-container .section-label::before { display: none; }
  .order-subtitle {
    color: var(--ash);
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.5rem auto 3rem;
    max-width: 550px;
  }
  .order-platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .order-platform-card {
    background: var(--char);
    border: 1px solid rgba(212,160,23,0.2);
    border-radius: 6px;
    padding: 2.5rem 3rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
    min-width: 220px;
  }
  .order-platform-card:hover {
    border-color: var(--ember);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(232,66,10,0.2);
  }
  .order-platform-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
  .order-platform-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--white);
  }
  .order-platform-tag {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* LOCATION */
  .location-section {
    background: var(--char);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .location-info {
    padding: 4rem 4rem;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--smoke);
  }
  .location-address {
    margin-top: 2rem;
    color: var(--ash);
    font-size: 1rem;
    line-height: 1.8;
  }
  .location-address strong { color: var(--cream); display: block; margin-bottom: 0.3rem; }

  .location-details {
    margin-top: 2.5rem;
    display: flex; flex-direction: column; gap: 0.8rem;
  }
  .location-detail {
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 0.9rem; color: var(--cream);
  }
  .location-detail .licon { font-size: 1rem; color: var(--ember); width: 20px; }

  .location-map {
    position: relative;
    overflow: hidden;
    min-height: 400px;
  }
  .location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(0.3) contrast(1.1) brightness(0.85);
    transition: filter 0.4s ease;
  }
  .location-map iframe:hover {
    filter: grayscale(0) contrast(1) brightness(1);
  }
  /* FOOTER */
  footer {
    background: #000000;
    border-top: 1px solid rgba(212,160,23,0.1);
    padding: 5rem 4rem 2rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-brand-name {
    margin-bottom: 1rem;
  }
  .footer-brand-name img {
    height: 55px;
    width: auto;
  }
  .footer-desc {
    color: var(--ash);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 2rem;
  }
  .social-links { display: flex; gap: 0.6rem; }
  .social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ash);
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }
  .social-link:hover { border-color: var(--ember); color: var(--ember); background: rgba(232,66,10,0.08); }

  .footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-links a {
    color: var(--ash);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
    letter-spacing: 0.3px;
  }
  .footer-links a:hover { color: var(--cream); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem;
  }
  .footer-copy { color: var(--ash); font-size: 0.8rem; letter-spacing: 0.5px; }
  .footer-copy span { color: var(--ember); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem;
  }
  .footer-legal-links { display: flex; gap: 1.5rem; }
  .footer-legal-links a {
    color: var(--ash);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
  }
  .footer-legal-links a:hover { color: var(--cream); }

  /* REVEAL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* MOBILE NAV HAMBURGER */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 110;
    padding: 5px;
  }
  .nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--ember);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
  }
  .mobile-nav-overlay a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    transition: color 0.3s;
  }
  .mobile-nav-overlay a:hover { color: var(--ember); }
  .mobile-nav-overlay .nav-cta-mobile {
    background: var(--ember);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 2px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-top: 1rem;
  }

  /* MOBILE */
  @media (max-width: 900px) {

    nav { padding: 1.2rem 1.5rem; }
    .nav-logo img { height: 40px; margin: -3px 0 -7px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; min-height: 85vh; }
    .hero-visual { display: none; }
    .hero h1 { font-size: clamp(3rem, 12vw, 4.5rem); }
    .hero-desc { font-size: 0.9rem; max-width: 100%; }
    .hero-actions { flex-direction: column; gap: 0.8rem; }
    .hero-actions a { text-align: center; width: 100%; }
    .hero-badge { font-size: 0.62rem; padding: 0.3rem 0.8rem; }
    .hero-stats { left: 1.5rem; right: 1.5rem; bottom: 1.5rem; gap: 1.5rem; justify-content: center; }
    .video-quality-badge { display: none; }

    section { padding: 4rem 1.5rem; }

    .about { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-features { grid-template-columns: 1fr; }
    .about-img-side { order: -1; }
    .about-accent-card { right: 1rem; bottom: 1rem; }

    .menu-section { padding: 4rem 1.5rem; }
    .menu-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .menu-grid { grid-template-columns: 1fr; }

    .gallery-section { padding: 4rem 0 4rem 1.5rem; }
    .gallery-item { width: 260px; height: 320px; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .faq-section { grid-template-columns: 1fr; gap: 2rem; }
    .faq-aside { position: static; }

    .reservation-section { padding: 4rem 1.5rem; }
    .reservation-section::after { font-size: 5rem; }
    .reservation-form { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .btn-reservation { width: 100%; text-align: center; }

    .order-section { padding: 4rem 1.5rem; }
    .order-section::before { font-size: 5rem; }
    .order-platforms { flex-direction: column; align-items: center; }
    .order-platform-card { width: 100%; min-width: unset; }

    .location-section { grid-template-columns: 1fr; }
    .location-info { padding: 3rem 1.5rem; }
    .location-map { min-height: 300px; }

    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .marquee-strip { padding: 0.7rem 0; }
    .marquee-item { font-size: 0.85rem; }
  }

  /* TABLET */
  @media (min-width: 601px) and (max-width: 900px) {
    .about { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr 1fr; }
    .menu-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  /* SMALL MOBILE */
  @media (max-width: 400px) {
    .hero h1 { font-size: 2.6rem; }
    .hero-badge { font-size: 0.55rem; }
    .hero-stats { flex-direction: column; gap: 0.8rem; padding: 1rem; }
    .stat-num { font-size: 1.5rem; }
    .section-title { font-size: clamp(2rem, 8vw, 2.8rem); }
    .gallery-item { width: 220px; height: 280px; }
    .reservation-title { font-size: 1.8rem; }
    .reservation-form { padding: 1.5rem 1rem; }
  }
