/* -------- Base / Reset -------- */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #e5e7eb; /* slate-200 */
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(33, 37, 47, 0.6), rgba(0,0,0,0) 70%),
    radial-gradient(900px 500px at 110% 10%, rgba(36, 40, 52, 0.55), rgba(0,0,0,0) 70%),
    linear-gradient(180deg, #0b0f14, #0b1016 55%, #0a0e14 100%);
}
:root {
  --container: 1100px;
  --radius: 14px;
  --gap: 20px;
  --brand: #d4af37; /* luxe gold */
  --brand-2: #9e7b1f; /* deep gold */
  --accent: linear-gradient(135deg, #d4af37 0%, #f1d06a 50%, #fff0a3 100%);
  --ink: #e5e7eb; /* text */
  --muted: #94a3b8; /* slate-400 */
  --surface: #0f172a; /* slate-900-ish */
  --surface-2: #111827; /* slate-800 */
  --border: #1f2937; /* slate-700 */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { margin: 0 0 12px; line-height: 1.2; }
p { margin: 0 0 12px; color: var(--muted); }
ul { margin: 0; padding-left: 1.2rem; color: var(--muted); }
a { color: inherit; text-decoration: none; }

/* -------- Header / Nav -------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 800; letter-spacing: .3px; background: var(--accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-nav { display: flex; gap: 18px; align-items: center; }
.site-nav a { padding: 8px 10px; border-radius: 10px; color: #cbd5e1; transition: background .2s ease, color .2s ease, transform .2s ease; }
.site-nav a.active, .site-nav a:hover { background: #111827; color: #fff; transform: translateY(-1px); box-shadow: inset 0 0 0 1px #1f2937; }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 22px; }

/* Header Play badge */
.header-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--border); color: #e5e7eb; background: #0b111a; text-decoration: none; box-shadow: 0 6px 16px rgba(0,0,0,.35); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.header-badge:hover { transform: translateY(-1px); background: #0e1622; box-shadow: 0 10px 24px rgba(0,0,0,.45); }
.header-badge .icon { width: 18px; height: 18px; display: grid; place-items: center; }
.header-badge .icon-img { width: 18px; height: 18px; display: block; }
.header-badge .txt { font-size: 12px; letter-spacing: .2px; }
.header-badge[aria-disabled="true"] { cursor: not-allowed; opacity: .85; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 64px; right: 12px; left: 12px; display: none; flex-direction: column; background: #0b111a; border: 1px solid var(--border); border-radius: 12px; padding: 10px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .header-badge { display: inline-flex; width: 100%; justify-content: center; margin-top: 8px; }
}

/* -------- Hero / Image Dashboard -------- */
.hero { padding-top: 8px; }
.hero-media { position: relative; border-radius: calc(var(--radius) + 6px); overflow: hidden; margin: 16px; }
.hero-media { will-change: transform; }
.hero-media::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 60% at 50% -10%, rgba(255,255,255,.06), rgba(255,255,255,0) 60%), linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); }
.hero-overlay { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; color: white; padding: 24px; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.25) 30%, rgba(0,0,0,.65)); }
.hero-overlay h1 { font-size: clamp(28px, 5vw, 52px); text-shadow: 0 6px 30px rgba(0,0,0,.5); }
.hero-overlay p { color: #f1f5f9; font-size: clamp(14px, 2.5vw, 18px); margin-bottom: 18px; }
.hero-actions { display: flex; gap: 10px; justify-content: center; }

/* Hero ticker */
.hero-ticker { display: block; width: min(92%, 780px); margin: 6px auto 10px; overflow: hidden; border: 1px solid var(--border); background: rgba(11,17,26,.6); border-radius: 999px; }
.hero-ticker .ticker-track { display: inline-flex; gap: 28px; padding: 8px 18px; white-space: nowrap; animation: ticker 18s linear infinite; }
.hero-ticker span { color: #d1d5db; font-size: 12px; letter-spacing: .3px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-55%); } }

/* Store badges */
.store-badges { margin-top: 12px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.store-badge { position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 12px; background: #0b111a; color: #e5e7eb; border: 1px solid var(--border); text-decoration: none; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.store-badge .label strong { font-weight: 700; margin-right: 6px; color: #cbd5e1; }
.store-badge .label em { font-style: normal; font-weight: 800; background: var(--accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.store-badge .icon { display: grid; place-items: center; width: 28px; height: 28px; }
.store-badge .icon-img { width: 26px; height: 26px; display: block; }
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.5); background: #0e1622; }
.store-badge[aria-disabled="true"] { cursor: not-allowed; }
.store-badge[aria-disabled="true"]:hover { transform: none; box-shadow: var(--shadow); }
.store-badge[data-soon="true"]::after { content: "SOON"; position: absolute; top: 6px; right: -26px; transform: rotate(35deg); background: var(--brand); color: #0b0f14; padding: 2px 22px; font-size: 10px; letter-spacing: 1px; border-radius: 4px; box-shadow: 0 6px 14px rgba(0,0,0,.4); }
.store-badge.privacy { border-color: #2a3544; }
.store-badge.privacy:hover { background: #0e1520; }
.soon-note { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.soon-note .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--brand); box-shadow: 0 0 0 0 rgba(212,175,55,.6); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(212,175,55,.6);} 70% { box-shadow: 0 0 0 12px rgba(212,175,55,0);} 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0);} }
.icon-credit { font-size: 11px; color: #94a3b8; }
.icon-credit a { color: #94a3b8; text-decoration: underline; }

.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; border: 1px solid #1f2937; color: #e5e7eb; background: #0b111a; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; box-shadow: 0 8px 22px rgba(0,0,0,.35); }
.btn:hover { transform: translateY(-2px); background: #0e1622; box-shadow: 0 10px 30px rgba(0,0,0,.45); }
.btn.primary { background: var(--brand); border-color: #f1d06a; color: #0b0f14; }
.btn.primary:hover { filter: brightness(1.05); }
/* spacing when multiple buttons inline */
.btn + .btn { margin-left: 8px; }
/* Button shimmer on primary */
.btn.primary { position: relative; overflow: hidden; }
.btn.primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 10%, rgba(255,255,255,0) 20%); transform: translateX(-120%); }
.btn.primary:hover::after { transition: transform .8s ease; transform: translateX(140%); }

.image-dashboard {
  height: clamp(340px, 55vw, 560px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "a b c"
    "a d e";
  gap: 10px;
  perspective: 800px;
}
.tile { position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45); border: 1px solid #0f172a; transition: transform .7s cubic-bezier(.2,.8,.2,1), box-shadow .4s, filter .4s, opacity .4s; transform-style: preserve-3d; will-change: transform; }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.02); animation: kenburns 18s ease-in-out infinite; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.0) 50%, rgba(0,0,0,.15)); pointer-events: none; }
.tile:hover { transform: translateY(-6px) scale(1.03) rotateX(1.2deg) rotateY(-1.2deg); box-shadow: 0 18px 40px rgba(0,0,0,.6); }
.tile.swap-anim { animation: swapIn 680ms cubic-bezier(.2,.8,.2,1); }
.tile.featured { box-shadow: 0 20px 50px rgba(0,0,0,.7); }
.tile.featured::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(212,175,55,.65), rgba(241,208,106,.15)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.tile.featured { animation: featuredGlow 6s ease-in-out infinite alternate; }
@keyframes featuredGlow { 0% { box-shadow: 0 16px 42px rgba(0,0,0,.6); } 100% { box-shadow: 0 26px 64px rgba(0,0,0,.75); } }

/* Tile captions */
.tile .caption { position: absolute; left: 10px; bottom: 10px; padding: 6px 10px; border-radius: 999px; background: rgba(11,17,26,.68); color: #e5e7eb; border: 1px solid rgba(212,175,55,.45); font-size: 12px; letter-spacing: .2px; display: inline-flex; align-items: center; gap: 6px; transform: translateY(8px); opacity: 0; transition: transform .35s ease, opacity .35s ease; backdrop-filter: blur(4px); }
.tile:focus-within .caption, .tile:hover .caption { transform: none; opacity: 1; }
.tile:focus { outline: none; }

.tile.featured { grid-area: a; }
.tile.pos-b { grid-area: b; }
.tile.pos-c { grid-area: c; }
.tile.pos-d { grid-area: d; }
.tile.pos-e { grid-area: e; }

@keyframes kenburns { /* default fallback */
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  50% { transform: scale(1.08) translate3d(2%, 2%, 0); }
  100% { transform: scale(1.02) translate3d(0, 0, 0); }
}
@keyframes kb-ltr {
  0% { transform: scale(1.05) translate3d(-2%, -1%, 0); }
  50% { transform: scale(1.09) translate3d(2%, 2%, 0); }
  100% { transform: scale(1.05) translate3d(-2%, -1%, 0); }
}
@keyframes kb-rtl {
  0% { transform: scale(1.05) translate3d(2%, 1%, 0); }
  50% { transform: scale(1.09) translate3d(-2%, -2%, 0); }
  100% { transform: scale(1.05) translate3d(2%, 1%, 0); }
}
@keyframes kb-zoom-out {
  0% { transform: scale(1.12) translate3d(0, 0, 0); }
  50% { transform: scale(1.06) translate3d(0.5%, 0.5%, 0); }
  100% { transform: scale(1.12) translate3d(0, 0, 0); }
}
.kb-ltr { animation: kb-ltr 18s ease-in-out infinite; }
.kb-rtl { animation: kb-rtl 18s ease-in-out infinite; }
.kb-zoom-out { animation: kb-zoom-out 18s ease-in-out infinite; }

@keyframes swapIn {
  0% { opacity: .75; transform: scale(.96); }
  100% { opacity: 1; transform: scale(1); }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .tile img, .kb-ltr, .kb-rtl, .kb-zoom-out, .tile.swap-anim, .tile.featured { animation: none !important; }
  .tile, .btn, .store-badge, .header-badge { transition: none !important; }
  .hero-ticker .ticker-track { animation: none !important; }
}

/* Small screens: stack and keep animation */
@media (max-width: 720px) {
  .image-dashboard { grid-template-columns: 1fr; grid-template-rows: repeat(5, 1fr); grid-template-areas: none; height: auto; }
  .tile, .tile.featured, .tile.pos-b, .tile.pos-c, .tile.pos-d, .tile.pos-e { grid-area: auto; height: 42vh; }
}

/* -------- Sections -------- */
.section { padding: 64px 0; }
.section.alt { background: #0b111a; }

/* Headings accents */
.section h2 { position: relative; display: inline-block; }
.section h2::after { content: ""; display: block; height: 3px; width: 64px; margin-top: 8px; background: var(--accent); border-radius: 999px; }
.page-hero h1 { position: relative; display: inline-block; }
.page-hero h1::after { content: ""; display: block; height: 3px; width: 82px; margin: 10px auto 0; background: var(--accent); border-radius: 999px; }

/* Page hero (for standalone pages) */
.page-hero { padding: 80px 0 24px; text-align: center; }
.page-hero h1 { font-size: clamp(28px, 5vw, 40px); margin-bottom: 6px; }
.page-hero p { max-width: 720px; margin: 0 auto; }

.grid.two { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--gap); align-items: start; }
.grid.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }

@media (max-width: 980px) {
  .grid.two, .grid.three { grid-template-columns: 1fr; }
}

.about-highlights { list-style: none; padding: 0; display: grid; gap: 10px; }
.about-highlights li { background: #0b111a; border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; color: var(--ink); }

.menu-grid .card { background: #0b111a; border: 1px solid var(--border); border-radius: 14px; padding: 16px; box-shadow: var(--shadow); color: var(--ink); }
.menu-grid .note { color: #e2e8f0; font-weight: 500; }
.menu-grid .span-2 { grid-column: span 2; }
@media (max-width: 980px) { .menu-grid .span-2 { grid-column: auto; } }

.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; box-shadow: 0 8px 22px rgba(0,0,0,.6); border: 1px solid #0f172a; }
@media (max-width: 1020px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid img { height: 160px; } }

.reviews { display: grid; gap: 12px; margin-bottom: 10px; }
.reviews blockquote { margin: 0; padding: 14px 16px; background: #0b111a; border-left: 4px solid var(--brand); border-radius: 8px; box-shadow: 0 6px 16px rgba(0,0,0,.35); color: #e5e7eb; }
.ratings { display: flex; gap: 24px; color: #e5e7eb; font-weight: 600; }

.hours { list-style: none; padding: 0; }
.cta-card { background: #0b111a; border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }

/* -------- Footer -------- */
.site-footer { padding: 24px 0; border-top: 1px solid var(--border); background: #0b0f14; color: #94a3b8; }

/* -------- Menu Page -------- */
.menu-nav { position: sticky; top: 66px; z-index: 10; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; background: rgba(11,17,26,.85); border: 1px solid var(--border); border-radius: 12px; padding: 8px; box-shadow: var(--shadow); backdrop-filter: blur(6px) saturate(1.1); margin: 12px 0 18px; }
.menu-nav a { display: inline-block; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border); color: #cbd5e1; text-decoration: none; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.menu-nav a:hover { background: #0e1622; color: #e5e7eb; }
.menu-nav a.active, .menu-nav a[aria-current="true"] { background: #111827; color: #fff; border-color: var(--brand); }
@media (max-width: 860px) { .menu-nav { overflow-x: auto; white-space: nowrap; flex-wrap: nowrap; } }
.menu-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; }
.menu-toolbar .btn { border-color: var(--border); color: #e5e7eb; background: #0b111a; }
.menu-toolbar .btn:hover { background: #0e1622; }
.menu-grid-100 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.menu-item { background: #0b111a; border: 1px solid var(--border); border-radius: 14px; padding: 14px; box-shadow: var(--shadow); display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 72px; }
.menu-item .name { font-weight: 600; color: #e5e7eb; }
.menu-item .price { font-weight: 700; color: var(--brand); }
@media (max-width: 1200px) { .menu-grid-100 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) { .menu-grid-100 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .menu-grid-100 { grid-template-columns: 1fr; } }

/* Menu catalogue cards */
.menu-section { margin-top: 22px; }
.menu-section { scroll-margin-top: 110px; }
.menu-section h3 { margin: 6px 0 10px; font-size: 20px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.menu-card { position: relative; background: #0b111a; border: 1px solid var(--border); border-radius: 14px; padding: 14px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.menu-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,.5); background: #0e1520; }
.menu-card .title { font-weight: 700; color: #e5e7eb; letter-spacing: .2px; }
.menu-card .desc { font-size: 13px; color: #94a3b8; margin-top: 4px; }
.menu-card .price { position: absolute; right: 12px; top: 12px; padding: 4px 10px; border-radius: 999px; background: #111827; color: var(--brand); border: 1px solid var(--border); font-weight: 700; font-size: 12px; }
@media (max-width: 980px) { .catalog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .catalog-grid { grid-template-columns: 1fr; } }

/* -------- Utilities -------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
/* Scroll reveal */
.will-reveal { opacity: 0; transform: translateY(16px) scale(.98); }
.reveal { opacity: 1; transform: none; transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1); }
/* -------- Hero Footer (Map) -------- */
.hero-footer { margin: 12px 16px 0; }
.map-embed { background: #0b111a; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 21/9; }
.map-embed iframe { width: 100%; height: 100%; display: block; filter: saturate(1.05) contrast(1.03); }
/* small map variant for content sections */
.map-embed.small { aspect-ratio: 16/10; margin-top: 12px; }

/* -------- Reviews Page (random list) -------- */
.review-toolbar { display: flex; align-items: center; margin-top: 12px; }
.review-list { margin-top: 14px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.review-item { background: #0b111a; border: 1px solid var(--border); border-radius: 12px; padding: 12px; box-shadow: var(--shadow); }
.review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-head .who { display: flex; align-items: center; gap: 10px; }
.review-head .avatar { width: 34px; height: 34px; border-radius: 999px; background: #111827; color: #e5e7eb; display: grid; place-items: center; font-weight: 700; border: 1px solid var(--border); }
.review-head .meta .name { font-weight: 700; color: #e5e7eb; }
.review-head .meta .city { font-size: 12px; color: #94a3b8; }
.review-head .stars { font-size: 14px; color: #facc15; letter-spacing: 1px; }
.review-body { color: #cbd5e1; }
@media (max-width: 860px) { .review-list { grid-template-columns: 1fr; } }

/* Mini map overlay */
.mini-map { position: absolute; right: 16px; bottom: 16px; width: clamp(180px, 22vw, 260px); height: clamp(120px, 16vw, 160px); background: #0b111a; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: 0 14px 32px rgba(0,0,0,.55); animation: popIn .6s cubic-bezier(.2,.8,.2,1) both; }
.mini-map iframe { width: 100%; height: 100%; display: block; filter: saturate(1.05) contrast(1.03); }
@keyframes popIn { 0% { opacity: 0; transform: translateY(10px) scale(.96);} 100% { opacity: 1; transform: none; } }

/* Dashboard controls */
.dash-controls { position: absolute; left: 16px; bottom: 16px; }
.dash-btn { appearance: none; border: 1px solid var(--border); background: #0b111a; color: #e5e7eb; padding: 6px 12px; border-radius: 999px; cursor: pointer; box-shadow: 0 6px 16px rgba(0,0,0,.35); transition: background .2s ease, transform .2s ease; font-size: 12px; }
.dash-btn:hover { background: #0e1622; transform: translateY(-1px); }

@media (max-width: 720px) {
  .mini-map { right: 12px; bottom: 12px; width: 44vw; height: 28vw; }
  .dash-controls { left: 12px; bottom: 12px; }
}
