/* =========================================================
   NOOR TANDOORI : stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0b0b0d;
  --bg-alt: #131315;
  --surface: #1a1a1d;
  --surface-2: #202023;
  --border: rgba(201, 164, 76, 0.18);
  --gold: #c9a44c;
  --gold-light: #e8cd8a;
  --gold-dim: rgba(201, 164, 76, 0.55);
  --red: #b23a2a;
  --text: #f4efe4;
  --text-dim: #b3ac9d;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --ease: cubic-bezier(.65, 0, .35, 1);
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

::selection { background: var(--gold); color: #0b0b0d; }

/* subtle scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 10px; border: 2px solid var(--bg); }

/* =========================================================
   TYPOGRAPHY HELPERS
   ========================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}

.gold-text {
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 45%, var(--gold-light) 65%, var(--gold));
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer {
  to { background-position: -240% center; }
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease), transform .35s var(--ease);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-102%);
  transition: transform .5s var(--ease);
}
.btn:active { transform: scale(.96); }

.btn-primary {
  background: var(--gold);
  color: #14120b;
  border: 1px solid var(--gold);
}
.btn-primary::before { background: var(--gold-light); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: #0b0a06; }

.btn-outline {
  border: 1px solid var(--gold-dim);
  color: var(--text);
}
.btn-outline::before { background: var(--gold); }
.btn-outline:hover::before { transform: translateX(0); }
.btn-outline:hover { color: #14120b; border-color: var(--gold); }

.btn ion-icon, .btn i { font-size: 17px; position: relative; transition: transform .4s var(--ease); }
.btn:hover ion-icon, .btn:hover i { transform: translateX(3px); }

/* =========================================================
   HEADER / NAV
   ========================================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 650;
  display: flex;
  flex-direction: column;
}

/* --- top information bar (desktop only) --- */
.topbar {
  overflow: hidden;
  max-height: 40px;
  opacity: 1;
  border-bottom: 1px solid var(--border);
  background: #08080a;
  transition: max-height .45s var(--ease), opacity .35s var(--ease), border-color .35s var(--ease);
}
.site-header.scrolled .topbar {
  max-height: 0;
  opacity: 0;
  border-color: transparent;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  height: 40px;
  font-size: 12px;
  letter-spacing: .03em;
  color: var(--text-dim);
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.topbar-item i { color: var(--gold); font-size: 13px; }
.topbar-sep {
  width: 1px;
  height: 12px;
  background: var(--border);
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 4px;
}
.topbar-social a {
  color: var(--text-dim);
  font-size: 14.5px;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.topbar-social a:hover { color: var(--gold); transform: translateY(-2px); }
.topbar-link { transition: color .3s var(--ease); }
.topbar-link:hover { color: var(--gold-light); }

/* --- main nav row --- */
.main-nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 11, 13, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .45s var(--ease), height .45s var(--ease), border-color .45s var(--ease), backdrop-filter .45s var(--ease);
}
.site-header.scrolled .main-nav {
  height: 68px;
  background: rgba(11, 11, 13, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.7);
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  z-index: 620;
  flex-shrink: 0;
}
.brand-logo {
  height: 42px;
  width: auto;
  display: block;
  transition: height .45s var(--ease);
}
.site-header.scrolled .brand-logo { height: 34px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-desktop a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 9px 18px;
  border-radius: 999px;
  transition: color .35s var(--ease), background .35s var(--ease);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 18px; bottom: 6px;
  height: 1px;
  width: calc(100% - 36px);
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--text); background: rgba(201,164,76,0.08); }
.nav-desktop a:hover::after,
.nav-desktop a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.nav-cta .btn { padding: 12px 26px; }

/* hamburger */
.hamburger {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  z-index: 620;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hamburger span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform .45s var(--ease), opacity .3s var(--ease), background .3s;
}
.hamburger span:nth-child(1) { transform: translateY(-7px); }
.hamburger span:nth-child(3) { transform: translateY(7px); }
.hamburger.active span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* mobile nav overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 600;
  background:
    radial-gradient(circle at 85% 12%, rgba(201,164,76,0.10), transparent 55%),
    #0b0b0d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12vw;
  clip-path: circle(2.4% at calc(100% - 40px) 42px);
  transition: clip-path .7s var(--ease);
  pointer-events: none;
}
.nav-mobile.open {
  clip-path: circle(150% at calc(100% - 40px) 42px);
  pointer-events: auto;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 6px; }
.nav-mobile li {
  overflow: hidden;
}
.nav-mobile a {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 9vw, 54px);
  font-weight: 700;
  color: var(--text);
  padding: 10px 0;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .6s var(--ease), color .3s;
  transition-delay: 0s;
}
.nav-mobile.open a {
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile li:nth-child(1) a { transition-delay: .12s; }
.nav-mobile li:nth-child(2) a { transition-delay: .2s; }
.nav-mobile li:nth-child(3) a { transition-delay: .28s; }
.nav-mobile li:nth-child(4) a { transition-delay: .36s; }
.nav-mobile a small {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .1em;
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile-footer {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease) .5s, transform .6s var(--ease) .5s;
  color: var(--text-dim);
  font-size: 13.5px;
}
.nav-mobile.open .nav-mobile-footer { opacity: 1; transform: translateY(0); }
.nav-mobile-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-dim);
  padding: 0;
  transition: color .3s;
}
.nav-mobile-footer a:hover { color: var(--gold); }
.nav-mobile-footer span { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 1150px) {
  .nav-desktop { gap: 0; }
  .nav-desktop a { padding: 9px 13px; }
  .nav-cta .btn { padding: 12px 20px; }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .nav-desktop, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
}

body.nav-open { overflow: hidden; }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(201,164,76,0.10), transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(178,58,42,0.12), transparent 50%),
    #0b0b0d;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,164,76,0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at 60% 40%, black, transparent 72%);
  opacity: .5;
}

.embers { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.embers span {
  position: absolute;
  bottom: -20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(201,164,76,0.7);
  opacity: 0;
  animation: rise 9s ease-in infinite;
}
.embers span:nth-child(1) { left: 8%; animation-delay: 0s; }
.embers span:nth-child(2) { left: 22%; animation-delay: 1.4s; width:3px; height:3px;}
.embers span:nth-child(3) { left: 38%; animation-delay: 2.8s; }
.embers span:nth-child(4) { left: 52%; animation-delay: .6s; width:4px; height:4px;}
.embers span:nth-child(5) { left: 67%; animation-delay: 3.6s; }
.embers span:nth-child(6) { left: 80%; animation-delay: 2s; width:3px; height:3px;}
.embers span:nth-child(7) { left: 91%; animation-delay: 4.4s; }
.embers span:nth-child(8) { left: 15%; animation-delay: 5.2s; }
.embers span:nth-child(9) { left: 60%; animation-delay: 6s; width:4px;height:4px;}
.embers span:nth-child(10) { left: 73%; animation-delay: 1s; }
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: .9; }
  50% { transform: translateY(-45vh) translateX(12px); }
  90% { opacity: 0; }
  100% { transform: translateY(-85vh) translateX(-8px); opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.hero-logo {
  width: clamp(90px, 11vw, 130px);
  opacity: 0;
  animation: heroFade .9s var(--ease) forwards .1s;
}

.hero h1 {
  font-size: clamp(46px, 9vw, 108px);
  line-height: .98;
  letter-spacing: -0.01em;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block;
  transform: translateY(115%);
  animation: lineUp .9s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: .25s; }
.hero h1 .line:nth-child(2) span { animation-delay: .4s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero p.subtitle {
  max-width: 520px;
  color: var(--text-dim);
  font-size: 16.5px;
  opacity: 0;
  animation: heroFade .9s var(--ease) forwards .6s;
}

.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroFade .9s var(--ease) forwards .75s;
}

.hero-eyebrow {
  opacity: 0;
  animation: heroFade .9s var(--ease) forwards 0s;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFade .9s var(--ease) forwards 1s;
}
.scroll-hint .stick {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-hint .stick::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: var(--gold-light);
  animation: dropline 2s ease-in-out infinite;
}
@keyframes dropline {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* =========================================================
   SECTIONS : general
   ========================================================= */

section { position: relative; padding: 120px 0; }
.section-alt { background: var(--bg-alt); }
.section-head {
  max-width: 620px;
  margin-bottom: 60px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-top: 14px; }
.section-head p { color: var(--text-dim); margin-top: 16px; font-size: 15.5px; }

/* divider strip */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg-alt);
}
.strip-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 26s linear infinite;
}
.strip-track span {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.strip-track span i { color: var(--gold); font-size: 14px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 22px;
  background: linear-gradient(155deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(201,164,76,0.18), transparent 60%);
}
.about-media img { width: 46%; opacity: .92; position: relative; z-index: 1; filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); }
.about-media .ring {
  position: absolute;
  inset: 22px;
  border: 1px solid var(--gold-dim);
  border-radius: 16px;
}
.about-text p { color: var(--text-dim); margin-top: 18px; font-size: 15.5px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-stats div { border-top: 1px solid var(--border); padding-top: 16px; }
.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
}
.about-stats span { font-size: 12.5px; color: var(--text-dim); letter-spacing: .05em; text-transform: uppercase; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media { aspect-ratio: 16/10; max-width: 480px; margin: 0 auto; }
}

/* =========================================================
   HIGHLIGHT / SIGNATURE CARDS
   ========================================================= */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.dish-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.dish-card::before {
  content: '';
  position: absolute;
  top: -60%; left: -20%;
  width: 60%; height: 220%;
  background: linear-gradient(120deg, transparent, rgba(201,164,76,0.13), transparent);
  transform: rotate(20deg) translateX(-140%);
  transition: transform .8s var(--ease);
}
.dish-card:hover::before { transform: rotate(20deg) translateX(140%); }
.dish-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dim);
  background: var(--surface-2);
}
.dish-card .ic {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,164,76,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 26px;
  transition: transform .5s var(--ease), background .5s var(--ease);
}
.dish-card:hover .ic { transform: scale(1.1) rotate(-6deg); background: rgba(201,164,76,0.18); }
.dish-card h3 { font-size: 21px; margin-bottom: 10px; }
.dish-card p { color: var(--text-dim); font-size: 14.5px; }
.dish-card .tag {
  margin-top: 18px;
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* =========================================================
   INFO / LOCATION
   ========================================================= */

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}
.info-panel {
  padding: 60px 50px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.info-row { display: flex; gap: 18px; align-items: flex-start; }
.info-row .ic {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201,164,76,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 19px;
}
.info-row h4 { font-size: 15.5px; margin-bottom: 4px; }
.info-row p, .info-row a { color: var(--text-dim); font-size: 14.5px; }
.info-row a { transition: color .3s; }
.info-row a:hover { color: var(--gold); }
.info-row a[href^="tel:"] { color: var(--gold-light); font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.info-row a[href^="tel:"]:hover { color: var(--gold); }
.info-note { font-size: 12.5px; margin-top: 3px; }
.info-map { position: relative; min-height: 360px; filter: grayscale(.4) contrast(1.1); }
.info-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; position: absolute; inset: 0; }

@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-map { min-height: 280px; }
}

/* =========================================================
   CTA BAND
   ========================================================= */

.cta-band {
  text-align: center;
  padding: 100px 0;
  position: relative;
}
.cta-band h2 { font-size: clamp(32px, 5vw, 56px); margin: 18px 0 34px; }

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 40px; }
.footer-brand span { font-family: var(--font-display); font-size: 19px; font-weight: 700; }
footer p { color: var(--text-dim); font-size: 14px; max-width: 320px; }
footer h5 { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
footer ul li { margin-bottom: 12px; }
footer ul a { color: var(--text-dim); font-size: 14.5px; transition: color .3s, padding-left .3s; }
footer ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all .35s var(--ease);
}
.footer-social a:hover { color: #0b0a06; background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-dim);
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* =========================================================
   MENU PAGE
   ========================================================= */

.menu-hero {
  padding: calc(var(--header-h) + 70px) 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,164,76,0.12), transparent 55%),
    #0b0b0d;
}
.menu-hero h1 { font-size: clamp(38px, 7vw, 72px); margin-top: 14px; }
.menu-hero p { color: var(--text-dim); max-width: 480px; margin: 16px auto 0; }

.menu-tabs-wrap {
  position: sticky;
  top: 68px;
  z-index: 100;
  background: rgba(11,11,13,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: top .45s var(--ease);
}
.menu-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 18px 0;
  position: relative;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-dim);
  border-radius: 999px;
  white-space: nowrap;
  transition: color .35s var(--ease), background .35s var(--ease);
}
.menu-tab:hover { color: var(--text); }
.menu-tab.active { color: #0b0a06; background: var(--gold); }

.menu-category { padding: 70px 0 20px; scroll-margin-top: 148px; }
.menu-category:first-of-type { padding-top: 90px; }
.menu-cat-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.menu-cat-head h2 { font-size: clamp(26px, 4vw, 38px); }
.menu-cat-head .count { color: var(--text-dim); font-size: 13px; letter-spacing: .05em; }
.menu-cat-head .note { color: var(--gold); font-size: 13.5px; margin-left: auto; }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
@media (max-width: 760px) { .menu-list { grid-template-columns: 1fr; } }

.menu-item {
  display: flex;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.menu-item.has-photo { cursor: pointer; }
.menu-item.has-photo:hover,
.menu-item.has-photo:focus-visible {
  transform: translateY(-5px);
  border-color: var(--gold-dim);
  box-shadow: 0 18px 34px -22px rgba(0,0,0,.7);
}
.menu-item.has-photo:focus-visible { outline: 1px solid var(--gold-dim); outline-offset: 3px; }
.menu-item.has-photo:active { transform: translateY(-2px); }

.menu-item-photo {
  position: relative;
  width: 128px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--surface-2);
}
.menu-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.menu-item.has-photo:hover .menu-item-photo img,
.menu-item.has-photo:focus-visible .menu-item-photo img { transform: scale(1.09); }
.menu-item-zoom {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(11,11,13,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 13px;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.menu-item.has-photo:hover .menu-item-zoom,
.menu-item.has-photo:focus-visible .menu-item-zoom { opacity: 1; transform: scale(1); }
.menu-item-cam-empty {
  width: 128px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  color: var(--border);
  font-size: 22px;
}

.menu-item-body { flex: 1; min-width: 0; padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.menu-item-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.menu-item-name-wrap { display: flex; align-items: center; gap: 8px; min-width: 0; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 600;
  color: var(--text);
}
.menu-item-badges { display: inline-flex; gap: 6px; flex-shrink: 0; }
.menu-item-badges i { font-size: 13px; }
.badge-veg { color: #6fae6a; }
.badge-spicy { color: var(--red); }
.menu-item-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  font-size: 16.5px;
  flex-shrink: 0;
}
.menu-item-desc { color: var(--text-dim); font-size: 13.5px; }

@media (max-width: 480px) {
  .menu-item-photo, .menu-item-cam-empty { width: 96px; }
}

/* legend */
.menu-legend {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 12.5px;
  margin-top: 10px;
}
.menu-legend span { display: inline-flex; align-items: center; gap: 6px; }

/* photo modal */
.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.photo-modal.open { opacity: 1; pointer-events: auto; }
.photo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,6,7,0.88);
  backdrop-filter: blur(6px);
}
.photo-modal-box {
  position: relative;
  max-width: 620px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transform: scale(.88) translateY(16px);
  transition: transform .45s var(--ease);
}
.photo-modal.open .photo-modal-box { transform: scale(1) translateY(0); }
.photo-modal-box img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.photo-modal-caption {
  padding: 20px 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.photo-modal-caption h4 { font-size: 18px; }
.photo-modal-caption span { color: var(--gold); font-family: var(--font-display); font-weight: 600; }
.photo-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(11,11,13,0.6);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background .3s, transform .3s;
}
.photo-modal-close:hover { background: var(--red); transform: rotate(90deg); }

/* utility */
.mt-lg { margin-top: 90px; }
.center-btn { display:flex; justify-content:center; margin-top: 50px; }
