:root {
  --gold: #c9963a;
  --gold-light: #e8b85a;
  --gold-pale: #f5dfa0;
  --dark: #1a1008;
  --dark-brown: #2c1a0a;
  --medium-brown: #4a2e14;
  --warm-cream: #f7f0e3;
  --cream: #efe4cc;
  --text-muted: #8b7355;
  --text-light: #c4a97d;
  --green-dark: #0d3d2b;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Jost", sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(26, 16, 8, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 150, 58, 0.2);
  padding: 0.8rem 2.5rem;
}
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
}
.nav-logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.15;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  opacity: 0.8;
}
.nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}
.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
  font-weight: 600 !important;
  opacity: 1 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  display: block;
  transition: 0.3s;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: background-image 0.3s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 16, 8, 0.6) 0%,
    rgba(26, 16, 8, 0.3) 40%,
    rgba(26, 16, 8, 0.75) 80%,
    rgba(26, 16, 8, 0.97) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 1.5rem;
  animation: heroReveal 1.2s ease forwards;
}
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-logo-wrap {
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.2s both;
}
.hero-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201, 150, 58, 0.5);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.2rem;
  animation: fadeUp 1s 0.35s both;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 0.3rem;
  animation: fadeUp 1s 0.5s both;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}
.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  opacity: 0.9;
  margin-bottom: 0.5rem;
  animation: fadeUp 1s 0.65s both;
}
.hero-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 1s 0.75s both;
}
.hero-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
  animation: fadeUp 1s 0.8s both;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.9s both;
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.rating-num {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-pale);
}
.rating-text {
  font-size: 0.85rem;
  color: var(--text-light);
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 1.05s both;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 150, 58, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 0.9rem 2rem;
  border: 1px solid rgba(201, 150, 58, 0.5);
  border-radius: 2px;
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  animation: fadeUp 1s 1.4s both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── SECTION BASE ─── */
section {
  padding: 5.5rem 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.7rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 1.4rem 0;
}
.gold-line.centered {
  margin: 1.4rem auto;
}
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ABOUT ─── */
#about {
  background: var(--dark-brown);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 58, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 115px;
  height: 115px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--dark);
  font-family: "Playfair Display", serif;
  border: 3px solid rgba(255, 255, 255, 0.15);
}
.about-img-badge .num {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}
.about-img-badge .lbl {
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  font-weight: 600;
}
.about-text p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 150, 58, 0.15);
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ─── DISHES ─── */
#dishes {
  background: var(--dark);
}
.dishes-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.dish-card {
  background: rgba(44, 26, 10, 0.7);
  border: 1px solid rgba(201, 150, 58, 0.15);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}
.dish-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 150, 58, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.dish-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #2c1a0a;
}
.dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dish-card:hover .dish-img img {
  transform: scale(1.08);
}
.dish-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  z-index: 2;
}
.dish-body {
  padding: 1.2rem 1.3rem 0.5rem;
}
.dish-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.dish-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.65;
}
.dish-footer {
  padding: 0.8rem 1.3rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dish-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}
.dish-badge {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── IFTAR / SPECIAL OFFERS ─── */
#iftar {
  background: linear-gradient(160deg, #0a2018 0%, #0d3d2b 50%, #0a2018 100%);
  position: relative;
  overflow: hidden;
}
#iftar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(201, 150, 58, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(201, 150, 58, 0.06) 0%,
      transparent 40%
    );
}
.iftar-header {
  text-align: center;
  margin-bottom: 3rem;
}
.iftar-header .section-title {
  color: var(--gold-pale);
}
.iftar-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
  color: rgba(239, 228, 204, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}
.iftar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.iftar-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(201, 150, 58, 0.15);
}
.iftar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 150, 58, 0.4);
}
.iftar-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.iftar-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 61, 43, 0.9) 0%,
    rgba(13, 61, 43, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.iftar-card-title {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-pale);
  line-height: 1.3;
}
.iftar-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.3rem;
}
.iftar-grid2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* ─── DINING ─── */
#dining {
  background: linear-gradient(135deg, #2c1a0a 0%, #1a1008 100%);
  position: relative;
  overflow: hidden;
}
#dining::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9963A' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.dining-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.feature-item {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 150, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border-radius: 4px;
  background: rgba(201, 150, 58, 0.07);
}
.feature-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.feature-content p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.7;
}
.dining-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.dining-mosaic-img {
  border-radius: 5px;
  overflow: hidden;
  background: #2c1a0a;
}
.dining-mosaic-img:first-child {
  grid-column: 1/-1;
}
.dining-mosaic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.dining-mosaic-img:hover img {
  transform: scale(1.04);
}
.dining-wide {
  aspect-ratio: 16/7;
}
.dining-sq {
  aspect-ratio: 1;
}
.service-modes {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(201, 150, 58, 0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--gold-pale);
  background: rgba(201, 150, 58, 0.05);
}

/* ─── GALLERY ─── */
#gallery {
  background: var(--dark);
}
.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 0.5rem;
}
.g-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--dark-brown);
  border-radius: 2px;
}
.g-item:nth-child(1) {
  grid-column: 1/3;
}
.g-item:nth-child(6) {
  grid-column: 3/5;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.g-item:hover img {
  transform: scale(1.07);
}
.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 16, 8, 0.55) 0%,
    transparent 50%
  );
  transition: opacity 0.3s;
}
.g-item:hover::after {
  opacity: 0.4;
}
.g-label {
  position: absolute;
  bottom: 0.8rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0;
  transition: opacity 0.3s;
}
.g-item:hover .g-label {
  opacity: 1;
}

/* ─── REVIEWS ─── */
#reviews {
  background: var(--dark-brown);
}
.reviews-header {
  text-align: center;
  margin-bottom: 1rem;
}
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem auto 3.5rem;
  padding: 1.8rem 2.5rem;
  border: 1px solid rgba(201, 150, 58, 0.2);
  background: rgba(201, 150, 58, 0.05);
  max-width: 420px;
  border-radius: 6px;
}
.big-rating {
  font-family: "Playfair Display", serif;
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.rating-details .stars {
  font-size: 1.2rem;
}
.rating-details p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: rgba(26, 16, 8, 0.6);
  border: 1px solid rgba(201, 150, 58, 0.1);
  border-radius: 6px;
  padding: 1.8rem;
  transition: border-color 0.3s;
}
.review-card:hover {
  border-color: rgba(201, 150, 58, 0.35);
}
.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.review-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.author-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ─── CONTACT ─── */
#contact {
  background: var(--dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(201, 150, 58, 0.1);
  border: 1px solid rgba(201, 150, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 3px;
}
.contact-detail h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-detail p,
.contact-detail a {
  font-size: 0.93rem;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.6;
}
.contact-detail a:hover {
  color: var(--gold);
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1.5rem;
  margin-top: 0.4rem;
}
.hours-grid span:nth-child(odd) {
  font-size: 0.87rem;
  color: var(--text-light);
}
.hours-grid span:nth-child(even) {
  font-size: 0.87rem;
  color: var(--cream);
}
.map-container {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201, 150, 58, 0.2);
}
.map-container iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
  filter: sepia(25%) saturate(0.8) brightness(0.9);
}
.map-footer {
  padding: 0.9rem 1.2rem;
  background: rgba(44, 26, 10, 0.8);
  border-top: 1px solid rgba(201, 150, 58, 0.12);
}
.map-footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── FOOTER ─── */
footer {
  background: #0e0806;
  border-top: 1px solid rgba(201, 150, 58, 0.12);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.footer-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 4px;
}
.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.footer-brand-name span {
  display: block;
  font-size: 0.62rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 270px;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 150, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-light);
  font-size: 0.85rem;
  transition: all 0.3s;
  text-decoration: none;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 150, 58, 0.1);
}
.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-col address {
  font-style: normal;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.5rem;
  margin: 1rem 0 2.5rem;
  opacity: 0.45;
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 16, 8, 0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  color: var(--cream);
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 600;
  transition: color 0.3s;
}
.mobile-nav a:hover {
  color: var(--gold);
}
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--cream);
  cursor: pointer;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .iftar-grid,
  .iftar-grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-grid,
  .dining-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-main {
    aspect-ratio: 16/9;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }
  .g-item:nth-child(1),
  .g-item:nth-child(6) {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  section {
    padding: 4rem 0;
  }
}
@media (max-width: 480px) {
  .dishes-grid {
    grid-template-columns: 1fr;
  }
  .iftar-grid,
  .iftar-grid2 {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
