/* ===== VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --dark: #0D0D0D;
  --dark-warm: #1A1510;
  --dark-card: #1C1812;
  --cream: #FAF5EB;
  --cream-dim: #F0E8D8;
  --red: #B22222;
  --red-light: #D4443C;
  --white: #FFFFFF;
  --text: #2D2A26;
  --text-light: #8A8478;
  --radius: 12px;
  --radius-sm: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  max-width: 100vw;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Visually hidden but readable by search engines / screen readers */
.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;
}

/* ===== NAV (mobile-first) ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  max-width: 600px; margin: 0 auto;
}
.nav-toggle {
  display: flex; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); transition: 0.3s;
}
.nav-links {
  display: none; position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(13,13,13,0.98);
  flex-direction: column; padding: 16px;
  gap: 14px; text-align: center;
}
.nav-links.open { display: flex; }
.nav-links a {
  color: var(--cream-dim); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* ===== HERO (mobile-first) ===== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--dark);
  background-image:
    radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-warm) 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-bg-img {
  width: 65%; max-width: 300px;
  height: auto; object-fit: contain;
  opacity: 0.2; filter: blur(1px);
  position: absolute; bottom: 5%; right: 2%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 80%, transparent 15%, var(--dark) 65%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 80px 16px 60px;
  max-width: 100%;
}
.hero-banner {
  width: 100%; max-width: 340px;
  margin: 0 auto 16px;
}
.hero-banner-img {
  width: 100%; height: auto;
  border-radius: var(--radius-sm);
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  font-weight: 700; margin-bottom: 8px;
  text-shadow: 0 0 60px rgba(201,168,76,0.2);
}
.hero-cn {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.9rem; color: var(--text-light);
  margin-bottom: 24px;
}
.hero-features {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; margin-bottom: 28px;
}
.hero-features span {
  font-size: 0.8rem; color: var(--cream-dim); opacity: 0.7;
}
.hero-cta {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 12px 28px;
  border-radius: 30px; font-weight: 600;
  font-size: 0.9rem; letter-spacing: 1px;
  transition: all 0.3s; cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold); color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent; color: var(--gold);
  border-color: var(--gold);
  margin-left: 0; margin-top: 10px;
}
.btn-outline:hover {
  background: var(--gold); color: var(--dark);
}

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.container { max-width: 600px; margin: 0 auto; padding: 0 16px; }
.section-header { text-align: center; margin-bottom: 32px; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dark); font-weight: 700;
}

/* ===== LUCKY DRAW ===== */
.lucky-draw {
  background: linear-gradient(135deg, #0A1F0A 0%, #1A2F1A 50%, #0D1F0D 100%);
  padding: 48px 0;
  position: relative; overflow: hidden;
}
.lucky-draw::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.lucky-draw-inner {
  display: flex; flex-direction: column; gap: 28px;
  align-items: center; position: relative; z-index: 1;
}
.lucky-draw-img {
  width: 100%; max-width: 320px;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.15);
  margin: 0 auto; display: block;
}
.lucky-draw-text { text-align: center; }
.lucky-draw-badge {
  display: inline-block;
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  padding: 5px 14px; border-radius: 20px;
  font-weight: 700; margin-bottom: 12px;
}
.lucky-draw-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white); margin-bottom: 4px;
}
.lucky-draw-text h3 {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.95rem; color: var(--gold);
  font-weight: 500; margin-bottom: 20px;
}
.lucky-draw-rules {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px; text-align: left;
}
.rule {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.rule-icon { font-size: 1.3rem; flex-shrink: 0; }
.rule strong { display: block; color: var(--white); font-size: 0.85rem; }
.rule p {
  font-family: 'Noto Sans SC', sans-serif;
  color: var(--gold-light); font-size: 0.75rem;
  margin-top: 2px; opacity: 0.8;
}
.btn-lucky {
  display: inline-block; padding: 12px 28px;
  border-radius: 30px; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 1px;
  background: linear-gradient(135deg, var(--gold) 0%, #E8C252 100%);
  color: var(--dark); border: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  transition: all 0.3s; cursor: pointer;
}
.btn-lucky:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid {
  display: flex; flex-direction: column; gap: 28px;
  align-items: center;
}
.about-image { text-align: center; }
.about-img {
  width: 100%; max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.about-text { text-align: center; }
.about-lead {
  font-size: 1rem; line-height: 1.8;
  color: var(--text); margin-bottom: 10px;
}
.about-text > p:last-of-type {
  font-family: 'Noto Sans SC', sans-serif;
  color: var(--text-light); margin-bottom: 28px;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.pillar {
  text-align: center; padding: 16px 8px;
  background: var(--cream); border-radius: var(--radius);
}
.pillar-icon { font-size: 1.6rem; margin-bottom: 6px; }
.pillar strong { display: block; font-size: 0.8rem; color: var(--dark); }
.pillar span {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.7rem; color: var(--text-light);
}

/* ===== GALLERY ===== */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer; margin: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  aspect-ratio: 1 / 1;
}
.gallery-item--tall { grid-column: span 2; aspect-ratio: 16 / 11; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78));
  color: var(--white);
}
.gallery-item figcaption strong {
  display: block; font-size: 0.85rem; font-weight: 700;
}
.gallery-item figcaption span {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.72rem; color: var(--gold-light);
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 130;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox img {
  max-width: 100%; max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: #fff;
  font-size: 2.4rem; line-height: 1; cursor: pointer;
}

/* ===== MENU ===== */
.menu-section { background: var(--dark); color: var(--cream); }
.menu-section .section-tag { color: var(--gold); }
.menu-section .section-header h2 { color: var(--white); }
.menu-subtitle {
  color: var(--text-light); font-size: 0.8rem;
  margin-top: 8px; line-height: 1.5;
}

/* category chips */
.menu-catnav {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  position: sticky; top: 48px; z-index: 40;
  padding: 12px 0; margin-bottom: 8px;
  background: rgba(13,13,13,0.92); backdrop-filter: blur(8px);
}
.menu-cat-chip {
  font-size: 0.72rem; letter-spacing: 0.5px;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 6px 12px; border-radius: 20px;
  transition: all 0.2s; white-space: nowrap;
}
.menu-cat-chip:hover { background: var(--gold); color: var(--dark); }

/* groups */
.menu-group { margin-bottom: 32px; scroll-margin-top: 96px; }
.menu-group-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding-bottom: 8px; margin-bottom: 8px;
}
.menu-group-title span {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.95rem; color: var(--cream-dim); font-weight: 400;
}

/* item row */
.menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-name {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 700; color: var(--white); font-size: 0.98rem;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.menu-item-en { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }
.menu-item-note {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.72rem; color: var(--gold-light); opacity: 0.75; margin-top: 3px;
}
.menu-badge {
  font-size: 0.6rem; letter-spacing: 0.5px; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  padding: 2px 7px; border-radius: 10px; font-weight: 700;
}
.menu-item-actions {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  flex-shrink: 0;
}
.menu-price { font-weight: 700; color: var(--gold-light); font-size: 0.95rem; }
.menu-size {
  background: var(--dark-card); color: var(--cream);
  border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-sm);
  padding: 5px 8px; font-size: 0.78rem; font-family: inherit;
}
.menu-add {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold); border-radius: 20px;
  padding: 6px 16px; font-size: 0.78rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; min-width: 84px;
}
.menu-add:hover { background: var(--gold); color: var(--dark); }
.menu-add.added { background: #2e7d32; border-color: #2e7d32; color: #fff; }

/* ===== CART ===== */
.cart-fab {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 90;
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, #E8C252 100%);
  color: var(--dark); border: none;
  padding: 13px 24px; border-radius: 30px;
  font-weight: 700; font-size: 0.92rem; cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 4px rgba(201,168,76,0.15);
}
.cart-fab-icon { font-size: 1.2rem; }
.cart-backdrop {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(0,0,0,0.55);
}
.cart-drawer {
  position: fixed; z-index: 120;
  top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: var(--dark-warm); color: var(--cream);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid rgba(201,168,76,0.2);
}
.cart-head h3 {
  font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.2rem;
}
.cart-close {
  background: none; border: none; color: var(--cream);
  font-size: 1.8rem; line-height: 1; cursor: pointer; padding: 0 4px;
}
.cart-items { flex: 1; overflow-y: auto; padding: 8px 20px; }
.cart-empty { padding: 40px 20px; text-align: center; color: var(--text-light); line-height: 1.7; }
.cart-line {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-name { font-family: 'Noto Sans SC', sans-serif; font-weight: 600; font-size: 0.9rem; }
.cart-line-en { font-size: 0.72rem; color: var(--text-light); }
.cart-line-qty { display: flex; align-items: center; gap: 8px; }
.cart-line-qty button {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--gold); background: transparent; color: var(--gold);
  font-size: 1rem; line-height: 1; cursor: pointer;
}
.cart-line-qty span { min-width: 18px; text-align: center; font-weight: 600; }
.cart-line-price { font-weight: 700; color: var(--gold-light); font-size: 0.88rem; min-width: 58px; text-align: right; }
.cart-foot { padding: 16px 20px 22px; border-top: 1px solid rgba(201,168,76,0.2); }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 1rem; margin-bottom: 6px;
}
.cart-total-row strong { font-size: 1.3rem; color: var(--gold); }
.cart-note { font-size: 0.72rem; color: var(--text-light); line-height: 1.5; margin-bottom: 14px; }
.cart-send {
  display: block; text-align: center; width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #E8C252 100%);
  color: var(--dark); border: none; font-weight: 700;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.cart-secondary { display: flex; gap: 10px; margin-top: 10px; }
.cart-secondary .btn { flex: 1; text-align: center; padding: 10px; }

/* ===== SPECIALS ===== */
.specials { background: var(--cream); }
.specials-card {
  max-width: 100%; margin: 0 auto;
  display: flex; flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--red);
  box-shadow: 0 12px 40px rgba(178,34,34,0.08);
}
.specials-image { }
.specials-img {
  width: 100%; height: auto;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  max-height: 500px;
}
.specials-content {
  padding: 24px 20px;
}
.specials-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--red);
  margin-bottom: 12px;
}
.specials-content p {
  font-size: 0.9rem; line-height: 1.7;
  margin-bottom: 10px;
}
.specials-offer {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px; margin: 16px 0;
  border-left: 4px solid var(--red);
}
.specials-offer strong {
  font-size: 1rem; color: var(--red);
}

/* Footer logo */
.footer-logo-img {
  max-width: 180px; height: auto;
  margin: 0 auto 12px;
}

/* ===== VISIT ===== */
.visit { background: var(--white); }
.visit-grid {
  display: flex; flex-direction: column; gap: 28px;
}
.visit-item { margin-bottom: 16px; }
.visit-item strong {
  display: block; font-size: 0.95rem;
  color: var(--dark); margin-bottom: 4px;
}
.visit-item p {
  font-size: 0.9rem; color: var(--text); line-height: 1.6;
}
.visit-item a { color: var(--gold); font-weight: 600; }
.visit-map iframe { border-radius: var(--radius); }
.visit-directions { margin-top: 14px; width: 100%; text-align: center; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--cream-dim);
  padding: 40px 0 24px;
}
.footer-inner {
  display: flex; flex-direction: column;
  gap: 24px; margin-bottom: 24px;
  text-align: center;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--gold);
  letter-spacing: 4px; margin-bottom: 6px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }
.footer-halal { color: var(--gold); margin-top: 6px; }
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}
.footer-links a {
  font-size: 0.85rem; color: var(--cream-dim);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { text-align: center; }
.footer-contact p { font-size: 0.85rem; line-height: 1.8; }
.footer-contact a { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 16px; text-align: center;
  font-size: 0.75rem; color: var(--text-light);
}
.footer-credit { color: var(--gold); margin-top: 4px; }

/* ===== DESKTOP (min-width: 768px) ===== */
@media (min-width: 768px) {
  .container { max-width: 960px; padding: 0 32px; }
  .section { padding: 80px 0; }

  .nav-inner { max-width: 960px; justify-content: center; }
  .nav-toggle { display: none; }
  .nav-links {
    display: flex; position: static;
    background: none; flex-direction: row;
    padding: 0; gap: 28px;
  }

  .hero-content { padding: 120px 32px 80px; }
  .hero-banner { max-width: 500px; }
  .hero-subtitle { font-size: 2.2rem; letter-spacing: 3px; }
  .hero-cn { font-size: 1rem; }
  .hero-features { flex-direction: row; gap: 24px; }
  .hero-cta { flex-direction: row; justify-content: center; gap: 14px; }
  .hero-bg-img { width: 45%; max-width: 400px; }
  .btn-outline { margin-left: 0; margin-top: 0; }

  .lucky-draw { padding: 80px 0; }
  .lucky-draw-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .lucky-draw-img { max-width: 400px; }
  .lucky-draw-text { text-align: left; }

  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .about-text { text-align: left; }
  .about-pillars { grid-template-columns: repeat(4, 1fr); }

  .section-header { margin-bottom: 48px; }
  .section-header h2 { font-size: 2.2rem; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gallery-item--tall { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .gallery-item figcaption strong { font-size: 0.95rem; }

  #menuList { max-width: 760px; margin: 0 auto; }
  .menu-catnav { top: 56px; }
  .menu-item-actions { flex-direction: row; align-items: center; gap: 10px; }
  .cart-fab { left: auto; right: 28px; transform: none; }

  .specials-card {
    flex-direction: row; max-width: 900px;
  }
  .specials-image { flex: 1; }
  .specials-img {
    border-radius: var(--radius) 0 0 var(--radius);
    height: 100%; max-height: none;
  }
  .specials-content { flex: 1; padding: 36px; }
  .specials-content h3 { font-size: 1.6rem; }

  .visit-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  }

  .footer-inner {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    text-align: left; gap: 32px;
  }
  .footer-logo-img { margin: 0 0 12px; }
}

/* ===== LARGE DESKTOP (min-width: 1200px) ===== */
@media (min-width: 1200px) {
  .container { max-width: 1100px; }
  .nav-inner { max-width: 1100px; }
  .hero-banner { max-width: 560px; }
  #menuList { max-width: 820px; }
}
