:root {
	--gold: #d4af37;
	--fg: #fff;
	--bg: #000
}

* {
	box-sizing: border-box
}

html,
body {
	height: 100%
}

body {
	margin: 0;
	color: var(--fg);
	background: var(--bg);
	font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
	overflow-x: hidden
}

.bg-gradient {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: radial-gradient(1200px 800px at 20% 20%, #2a1b4a 0%, transparent 50%),
		radial-gradient(900px 700px at 80% 30%, #0d3a5a 0%, transparent 55%),
		radial-gradient(900px 700px at 40% 80%, #3d1c1c 0%, transparent 55%), #000;
	filter: saturate(1.1) blur(.5px);
	animation: auraShift 18s ease-in-out infinite alternate
}

@keyframes auraShift {
	0% {
		background-position: 20% 20%, 80% 30%, 40% 80%
	}

	100% {
		background-position: 25% 25%, 75% 35%, 45% 75%
	}
}

.smoke-video {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	pointer-events: none;
	opacity: .55;
	mix-blend-mode: screen;
	filter: contrast(1.05) brightness(.95)
}

.logo {
	font-weight: 800;
	letter-spacing: .5px
}

.logo span {
	font-weight: 500;
	opacity: .9
}

.main-header ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 24px
}

.main-header a {
	text-decoration: none;
	color: #fff;
	font-weight: 500;
	transition: .25s
}

.main-header a:hover {
	color: var(--gold)
}

.hero {
	position: relative;
	z-index: 2;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 16px
}

.hero p {
	max-width: 640px;
	margin: 0 auto 28px;
	opacity: .9
}

.btn {
	padding: 12px 30px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	margin: 5px;
	display: inline-block;
	transition: .25s
}

.btn.gold {
	background: var(--gold);
	color: #000
}

.btn.gold:hover {
	transform: translateY(-1px);
	filter: brightness(.95)
}

.btn.outline {
	border: 2px solid var(--gold);
	color: var(--gold)
}

.btn.outline:hover {
	background: var(--gold);
	color: #000
}

.menu-preview .wrap {
	max-width: 1100px;
	margin: 0 auto
}

.menu-head {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px
}

.menu-head h2 {
	margin: 0
}

#menuSearch {
	flex: 0 1 360px;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid #222;
	background: #121214;
	color: #fff;
	outline: none
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 14px
}

.menu-card {
	background: #141416;
	border: 1px solid #242424;
	border-radius: 16px;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 6px
}

.menu-card__top {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	align-items: baseline
}

.menu-card__name {
	font-weight: 700
}

.menu-card__price {
	font-variant-numeric: tabular-nums
}

.menu-card__cat {
	opacity: .75;
	font-size: .9rem
}

.menu-card__actions {
	display: flex;
	gap: 8px;
	margin-top: 6px
}

.btn-icon {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 10px;
	border-radius: 10px;
	border: 1px solid #2a2a2b;
	background: #161618;
	color: #e7e7e7;
	cursor: pointer
}

.btn-icon:hover {
	background: #1c1c1e
}

.badge {
	padding: 2px 8px;
	border: 1px solid #2e2e2f;
	border-radius: 999px;
	font-size: .75rem;
	opacity: .85
}

.menu-card--header {
	grid-column: 1 / -1;
	background: none;
	padding: 0;
	border: none;
	box-shadow: none;
	margin-top: 24px
}

.menu-card--header .menu-card__cat {
	font-size: 1.5rem;
	color: #fff;
	padding-bottom: .35rem;
	border-bottom: 2px solid rgba(255, 255, 255, .35)
}

.modal {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 5
}

.modal[aria-hidden="false"] {
	display: block
}

.modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .55)
}

.modal__dialog {
	position: relative;
	z-index: 1;
	max-width: 520px;
	margin: 10vh auto;
	background: #121214;
	border: 1px solid #272729;
	border-radius: 14px;
	padding: 18px
}

.modal__title {
	margin: 0 0 8px
}

.modal__body {
	margin: 0;
	color: #ddd
}

.modal__close {
	position: absolute;
	right: 10px;
	top: 8px;
	background: transparent;
	color: #fff;
	border: 0;
	font-size: 22px;
	cursor: pointer
}

.reviews {
	background: #0c0c0d;
	padding: 80px 20px;
	text-align: center;
	position: relative;
	z-index: 2
}

.reviews h2 {
	margin-bottom: 40px
}

footer {
	background: #0a0a0a;
	text-align: center;
	padding: 40px 10px;
	font-size: .9rem;
	position: relative;
	z-index: 2
}

footer a {
	color: var(--gold);
	text-decoration: none
}

footer a:hover {
	text-decoration: underline
}

.main-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 3;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	align-items: center;
	padding: 14px 18px;
	background: rgba(0, 0, 0, .45);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 22px
}

.main-nav a {
	text-decoration: none;
	color: #fff;
	font-weight: 500;
	transition: .25s
}

.main-nav a:hover {
	color: var(--gold)
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .25);
	color: #fff;
	border-radius: 8px;
	padding: 8px 10px
}

@media (max-width: 880px) {
	.nav-toggle {
		display: block
	}

	.main-nav {
		position: fixed;
		top: 28px;
		left: 0;
		right: 0;
		background: rgba(0, 0, 0, .9);
		transform: translateY(-120%);
		transition: .25s;
		padding: 12px 16px
	}

	.main-nav.open {
		transform: translateY(0)
	}

	.main-nav ul {
		flex-direction: column;
		gap: 12px
	}
}

.wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 16px
}

.hero h1 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	letter-spacing: 2px;
	margin: 0 0 12px
}

.features {
	position: relative;
	z-index: 2;
	padding: 60px 0;
	background: rgba(0, 0, 0, .5);
	backdrop-filter: blur(15px)
}

.features h2 {
	text-align: center;
	margin: 0 0 20px
}

.features .cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px
}

.features .card {
	background: #141416;
	border: 1px solid #242424;
	border-radius: 16px;
	padding: 16px
}

.menu-preview {
	background: rgba(0, 0, 0, .55);
	backdrop-filter: blur(15px);
	padding: 70px 0;
	position: relative;
	z-index: 2
}

.hours {
	position: relative;
	z-index: 2;
	padding: 60px 0
}

.grid-2 {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 20px
}

@media (max-width: 900px) {
	.grid-2 {
		grid-template-columns: 1fr
	}
}

.hours-list {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: grid;
	gap: 10px
}

.hours-list li {
	display: flex;
	justify-content: space-between;
	background: #141416;
	border: 1px solid #242424;
	border-radius: 12px;
	padding: 10px 12px
}

.map-wrap iframe {
	width: 100%;
	height: 300px;
	border: 0;
	border-radius: 12px;
	filter: saturate(1.1) contrast(1.05)
}

.gallery {
	position: relative;
	z-index: 2;
	padding: 60px 0;
	background: rgba(0, 0, 0, .5)
}

.gallery h2 {
	text-align: center;
	margin: 0 0 20px
}

.snap-row {
	display: flex;
	gap: 10px;
overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
	padding: 4px
}

.snap-row img {
	height: 220px;
	flex: 0 0 auto;
	border-radius: 14px;
	scroll-snap-align: center;
	object-fit: cover
}

.contact {
	position: relative;
	z-index: 2;
	padding: 60px 0
}

.contact .hint {
	opacity: .8;
	margin-top: 10px
}

.gallery-wrapper {
  position: relative;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.5rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.gallery-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.gallery-btn.prev {
  left: 10px;
}

.gallery-btn.next {
  right: 10px;
}

.snap-row a {
  height: 220px;
  flex: 0 0 auto;
  border-radius: 14px;
  scroll-snap-align: center;
  overflow: hidden;
  cursor: pointer;
}
.snap-row a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gallery-btn {
    display: none;
  }
}

.menu-card__info {
  font-size: 0.85rem;
  color: #bbb; 
  opacity: 0.9;
  padding-top: 4px;
  white-space: normal; 
  word-break: break-word;
}
.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  padding-bottom: 16px;

}

.cat-btn {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.cat-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.cat-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.item-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.item-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.item-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(5px);
}

.item-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 100%;
  background: #121214;
  border: 1px solid #272729;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.item-modal[aria-hidden="false"] .item-modal__dialog {
  transform: scale(1);
}

.item-modal__image {
  width: 100%;
  height: 50%;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #272729;
}

.item-modal__content {
  padding: 1.5rem;
}

.item-modal__title {
  margin: 0 0 0.5rem;
  color: var(--gold);
}

.item-modal__body {
  margin: 0;
  color: #ddd;
  line-height: 1.6;
}

.item-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.item-modal__close:hover {
  background: rgba(0,0,0,0.8);
}
.menu-card__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 6px;
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #2a2a2b;
  background: #1c1c1e;
  color: #e7e7e7;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-icon:hover {
  background: #252527;
}
.menu-card--image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.menu-card--image .menu-card__img {
  width: 100%;
  height: clamp(160px, 26vw, 280px);
  background: #111;
  border-radius: 12px 12px 0 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.menu-card--image .menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.menu-card--image .menu-card__body {
  padding: 14px;
}
#map-consent-placeholder {
position: relative;
  background-color: #1a1a1c;
  border: 1px solid #242424;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 1em;
}

.map-consent-content p {
  margin-bottom: 16px;
  color: #fff;
}

.map-consent-content .map-consent-notice {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 16px;
  margin-bottom: 0;
}

.map-consent-content a {
  color: #d4af37;
  text-decoration: underline;
}

.map-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  margin-bottom: 1em;
}