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

:root {
  --bg: #14100d;
  --bg-elev: #1a1512;
  --card: #1d1712;
  --card-hover: #221b15;
  --yellow: #e8d44d;
  --yellow-soft: rgba(232, 212, 77, 0.12);
  --teal: #2d6a4f;
  --teal-soft: rgba(45, 106, 79, 0.22);
  --text: #f5f1e8;
  --text-muted: #a99c8c;
  --text-faint: #7a6f61;
  --border: rgba(232, 212, 77, 0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(232, 212, 77, 0.05) 0%, transparent 60%);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  background: rgba(20, 16, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yellow);
  letter-spacing: 0.02em;
}

.nav__sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-left: 0.15rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(20, 16, 13, 0.35) 0%, rgba(20, 16, 13, 0.55) 55%, var(--bg) 100%),
    linear-gradient(to right, rgba(20, 16, 13, 0.75) 0%, transparent 55%);
}

.hero__inner {
  padding: 3.5rem 1.25rem 5rem;
  max-width: 760px;
}

.hero__brandline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(232, 212, 77, 0.35);
}

.hero__brandtext {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--yellow);
  letter-spacing: 0.02em;
}

.hero__brandsub {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 0.2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #dcd3c4;
  max-width: 34rem;
  line-height: 1.6;
  margin: 0;
}

.hero__rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(to right, var(--yellow), transparent);
  margin-top: 1.75rem;
}

/* ---------- Tabs ---------- */
.tabs-wrap {
  position: sticky;
  top: 58px;
  z-index: 30;
  background: rgba(20, 16, 13, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.tabs {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.85rem 1.25rem;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar { display: none; }

.tab {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab:hover {
  color: var(--text);
  border-color: rgba(232, 212, 77, 0.25);
}

.tab--active {
  background: var(--yellow);
  color: #1a1512;
  border-color: var(--yellow);
}

/* ---------- Sections ---------- */
main {
  padding-bottom: 4rem;
}

.section {
  padding: 2.25rem 1.25rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.fade-in { animation: fadeUp 0.4s ease; }

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

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.9rem;
  margin-bottom: 0.4rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--yellow);
  margin: 0;
}

.section__count {
  font-size: 0.78rem;
  color: var(--text-faint);
  white-space: nowrap;
}

.section__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0.75rem 0 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  text-align: left;
  background: linear-gradient(150deg, var(--card) 0%, #171310 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  color: inherit;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 212, 77, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-elev);
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.5;
  background: radial-gradient(circle at center, var(--teal-soft), transparent 70%);
}

.card__body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.card__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
}

.card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.tag {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-top: 0.2rem;
}

.tag--veg { background: var(--teal-soft); color: #7fd8ac; }
.tag--non-veg { background: rgba(200, 90, 60, 0.18); color: #e8977a; }
.tag--special { background: var(--yellow-soft); color: var(--yellow); }

/* ---------- Visit strip ---------- */
.visit {
  position: relative;
  margin: 4rem 1.25rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.visit__img {
  position: relative;
  min-height: 260px;
}

.visit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.visit__text {
  padding: 2.25rem 2rem;
  background: linear-gradient(150deg, var(--card) 0%, #171310 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.visit__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

.visit__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--yellow);
  margin: 0;
}

.visit__text p {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .visit__grid { grid-template-columns: 1fr; }
  .visit__img { min-height: 220px; }
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem 3rem;
  margin-top: 3rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.footer__logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.footer__brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--yellow);
}

footer p {
  color: var(--text-faint);
  font-size: 0.85rem;
  margin: 0.2rem 0;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.modal--open { display: flex; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.7);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 20px 20px 0 0;
  animation: slideUp 0.25s ease;
}

@media (min-width: 640px) {
  .modal { align-items: center; }
  .modal__panel { border-radius: var(--radius-lg); margin: 1rem; }
}

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

.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 16, 13, 0.7);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__img { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.modal__img img { width: 100%; height: 100%; object-fit: cover; }

.modal__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.modal__top h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin: 0;
}

.modal__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
}

.modal__content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
