/* ─────────────────────────────────────────
   INDIAN BRASSERIE — MODERN REDESIGN
   Aesthetic: Luxury Spice · Dark & Gold
   ───────────────────────────────────────── */

:root {
  --gold:       #C9972A;
  --gold-light: #E8B84B;
  --gold-dim:   rgba(201,151,42,0.15);
  --saffron:    #E07B28;
  --deep:       #0D0A07;
  --surface:    #141008;
  --surface2:   #1C1610;
  --surface3:   #241E14;
  --text:       #F2EBD9;
  --text-muted: #A89880;
  --cream:      #FAF3E0;
  --border:     rgba(201,151,42,0.2);
  --radius:     6px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── LOGO IMAGES ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.nav-emblem {
  height: 36px;
  width: auto;
  
  filter: brightness(1.1);
}
.nav-wordmark {
  height: 22px;
  width: auto;
  
  filter: brightness(1.05);
}
.hero-emblem {
  display: block;
  height: 90px;
  width: auto;
  margin: 0 auto 0.75rem;
  
  filter: brightness(1.1);
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-wordmark {
  display: block;
  max-width: min(520px, 90vw);
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
  
  filter: brightness(1.05);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.footer-emblem {
  display: block;
  height: 50px;
  width: auto;
  
  filter: brightness(0.9);
  margin-bottom: 0.5rem;
}
.footer-wordmark {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
  
  filter: brightness(0.85);
  margin-bottom: 1rem;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--deep);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-eyebrow.center { text-align: center; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.center { text-align: center; }
.section-title.light { color: #fff; }

/* ── LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 6rem 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--deep);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,151,42,0.4);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.full-width { width: 100%; }

/* ──────────────────────────
   NAVBAR
────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,10,7,0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--deep);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 500;
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--deep);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────────────────────────
   HERO
────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(13,10,7,0.85) 0%, rgba(40,20,5,0.7) 100%),
    url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1600&q=80') center/cover no-repeat fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(201,151,42,0.07) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 2rem 1.5rem;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 300;
  line-height: 0.92;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s ease forwards;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollLine 1.5s ease infinite;
}

/* ──────────────────────────
   BANNER STRIP
────────────────────────── */
.banner-strip {
  background: var(--gold);
  padding: 0.85rem 1.5rem;
}
.strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: 0.05em;
  text-align: center;
}
.strip-inner .divider {
  opacity: 0.4;
  display: none;
}
@media (min-width: 600px) {
  .strip-inner .divider { display: inline; }
}

/* ──────────────────────────
   ABOUT
────────────────────────── */
.about { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.img-frame {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
}
.img-frame--large {
  width: 78%;
  height: 420px;
  top: 0; left: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.img-frame--small {
  width: 50%;
  height: 240px;
  bottom: 0; right: 0;
  border: 4px solid var(--surface);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.about-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.about-badges {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.badge { text-align: center; }
.badge-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.badge-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ──────────────────────────
   MENU CTA
────────────────────────── */
.menu-cta {
  position: relative;
  background:
    linear-gradient(135deg, rgba(13,10,7,0.92) 0%, rgba(60,30,5,0.88) 100%),
    url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=1600&q=80') center/cover no-repeat;
}
.menu-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(224,123,40,0.08) 0%, transparent 70%);
}
.menu-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.menu-cta-body {
  max-width: 520px;
  margin: 0 auto 3.5rem;
  color: rgba(255,255,255,0.65);
}
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.menu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.menu-card.visible {
  opacity: 1;
  transform: none;
}
.menu-card:hover {
  background: rgba(201,151,42,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.menu-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.menu-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.menu-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.menu-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.menu-card-link:hover { color: var(--gold-light); }

/* ──────────────────────────
   GALLERY
────────────────────────── */
.gallery { background: var(--deep); padding-bottom: 0; }
.gallery .container { padding-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery-item.visible { opacity: 1; }
.gallery-item img {
  transition: transform 0.6s ease;
  height: 100%;
}
.gallery-item:hover img { transform: scale(1.06); }
.g1 { grid-column: 1 / 3; grid-row: 1 / 2; }
.g2 { grid-column: 3 / 4; grid-row: 1 / 3; }
.g3 { grid-column: 4 / 5; grid-row: 1 / 2; }
.g4 { grid-column: 1 / 3; grid-row: 2 / 3; }

/* ──────────────────────────
   REVIEWS
────────────────────────── */
.reviews { background: var(--surface); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
}
.review-card.visible {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i, 0) * 0.08s);
}
.review-card:hover {
  border-color: var(--gold);
  background: var(--surface3);
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.review-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.reviewer {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ──────────────────────────
   OPENING TIMES
────────────────────────── */
.opening { background: var(--deep); }
.opening-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.opening-body {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.opening-table-wrap {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.opening-table {
  width: 100%;
  border-collapse: collapse;
}
.opening-table tr {
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.opening-table tr.visible {
  opacity: 1;
  transform: none;
}
.opening-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
}
.opening-table td:first-child { color: var(--text-muted); }
.opening-table td:last-child {
  text-align: right;
  color: var(--cream);
  font-weight: 400;
}
.opening-table tr.highlight {
  background: var(--gold-dim);
}
.opening-table tr.highlight td { color: var(--gold-light); }
.opening-note {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
}

/* ──────────────────────────
   CONTACT
────────────────────────── */
.contact {
  background:
    linear-gradient(135deg, rgba(13,10,7,0.96) 0%, rgba(30,20,8,0.98) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ci-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-list strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-list p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-list a { color: var(--text-muted); transition: color 0.2s; }
.contact-list a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--surface3); }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.form-note a { color: var(--gold); }

/* ──────────────────────────
   MAP
────────────────────────── */
.map-wrap {
  filter: grayscale(40%) sepia(20%);
  line-height: 0;
}

/* ──────────────────────────
   FOOTER
────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-main {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 2px;
}
.footer-brand .logo-sub {
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.6;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-contact a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ──────────────────────────
   ANIMATIONS
────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ──────────────────────────
   RESPONSIVE — TABLET
────────────────────────── */
@media (max-width: 1024px) {
  .about-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .about-images   { height: 360px; }
  .img-frame--large { width: 70%; height: 320px; }
  .img-frame--small { width: 45%; height: 200px; }
  .reviews-grid   { grid-template-columns: 1fr 1fr; }
  .opening-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
  .menu-cards     { grid-template-columns: 1fr; }
  .gallery-grid   {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g1, .g2, .g3, .g4 { grid-column: auto; grid-row: auto; }
  .gallery-item { height: 220px; }
}

/* ──────────────────────────
   RESPONSIVE — MOBILE
────────────────────────── */
@media (max-width: 700px) {
  .section { padding: 4rem 0; }

  /* Navbar */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    padding: 0.9rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-links .nav-cta {
    margin-top: 1rem;
    background: var(--gold);
    text-align: center;
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    border-bottom: none;
  }

  /* Hero */
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 80%; max-width: 260px; }

  /* About */
  .about-images { height: 280px; }
  .img-frame--large { width: 80%; height: 230px; }
  .img-frame--small { width: 52%; height: 160px; }
  .about-badges { gap: 1rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { height: 160px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }

  /* Strip */
  .strip-inner { gap: 0.5rem; flex-direction: column; }
}
