.cursor {
  border-color: var(--warm-gold);
}

.cursor-dot {
  background: var(--warm-gold);
}

.cursor.hover {
  background: rgba(239, 184, 27, 0.2);
  border-color: var(--warm-gold);
}

.scroll-progress {
  background: linear-gradient(
    90deg,
    var(--warm-gold),
    var(--coral-red),
    var(--vibrant-magenta)
  );
}

.section-label {
  color: var(--warm-gold);
}

.section-label::before {
  background: var(--warm-gold);
}

.section-title em {
  color: var(--warm-gold);
}

.section-title.light {
  color: var(--white);
}

.section-text.light {
  color: rgba(255, 255, 255, 0.7);
}

.floating-shape {
  opacity: 0.08;
}

.floating-shape.circle {
  border-color: var(--warm-gold);
}

.floating-shape.line {
  background: linear-gradient(
    90deg,
    transparent,
    var(--warm-gold),
    transparent
  );
}

.floating-shape.star {
  width: 3px;
  height: 3px;
  background: var(--warm-gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--warm-gold);
}

/* ═══════════════════════════════════════
           HERO — Immersive dining hero
        ═══════════════════════════════════════ */
.dining-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dining-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.dining-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 26, 26, 0.85) 0%,
    rgba(15, 26, 26, 0.4) 30%,
    rgba(15, 26, 26, 0.3) 50%,
    rgba(15, 26, 26, 0.7) 80%,
    rgba(15, 26, 26, 0.95) 100%
  );
  z-index: 2;
}

.dining-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.dining-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
}

.dining-hero-eyebrow.animate {
  animation: fadeUp 1s var(--transition-smooth) 0.3s forwards;
}

.dining-hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.dining-hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100px) rotateX(-70deg);
  transform-origin: center bottom;
}

.dining-hero-title .word.animate {
  animation: wordReveal3D 1.3s var(--transition-smooth) forwards;
}

.dining-hero-title .word:nth-child(1).animate {
  animation-delay: 0.5s;
}

.dining-hero-stars {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.dining-hero-stars.animate {
  animation: fadeUp 1s var(--transition-smooth) 1s forwards;
}

.hero-star {
  width: 8px;
  height: 8px;
  background: var(--warm-gold);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.dining-hero-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
}

.dining-hero-subtitle.animate {
  animation: fadeUp 1s var(--transition-smooth) 1.2s forwards;
}

.dining-hero-cta {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
}

.dining-hero-cta.animate {
  animation: fadeUp 1s var(--transition-smooth) 1.5s forwards;
}

.hero-btn {
  padding: 15px 30px;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--transition-smooth);
}

.hero-btn-primary {
  background: var(--warm-gold);
  color: var(--charcoal);
}

.hero-btn-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(239, 184, 27, 0.3);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
  border-color: var(--warm-gold);
  color: var(--warm-gold);
  transform: translateY(-3px);
}

@keyframes wordReveal3D {
  0% {
    opacity: 0;
    transform: translateY(100px) rotateX(-70deg);
    filter: blur(10px);
  }
  50% {
    opacity: 0.8;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dining-hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--warm-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ═══════════════════════════════════════
           PHILOSOPHY — About the restaurant
        ═══════════════════════════════════════ */
.philosophy-section {
  background: var(--white);
  position: relative;
}

.philosophy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23EFB81B' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.philosophy-text {
  padding-right: 30px;
}

.philosophy-text .section-label {
  color: var(--deep-teal);
}

.philosophy-text .section-label::before {
  background: var(--deep-teal);
}

.philosophy-image {
  position: relative;
}

.image-triptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  height: 600px;
}

.triptych-img {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.6s var(--transition-smooth);
}

.triptych-img:hover {
  transform: scale(1.02);
}

.triptych-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.triptych-img:nth-child(1) {
  grid-row: 1 / 3;
  background: #1a1a1a;
}

.triptych-img:nth-child(2) {
  background: #1a1a1a;
}

.triptych-img:nth-child(3) {
  background: #1a1a1a;
}

.triptych-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(15, 26, 26, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.triptych-img:hover .triptych-overlay {
  opacity: 1;
}

/* ═══════════════════════════════════════
           CUISINE CATEGORIES — Marquee + Grid
        ═══════════════════════════════════════ */
.cuisine-marquee {
  overflow: hidden;
  padding: 60px 0;
  background: var(--charcoal);
}

.marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 35s linear infinite;
}

.marquee-item {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239, 184, 27, 0.3);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.marquee-item:hover {
  color: var(--warm-gold);
  -webkit-text-stroke: 1px var(--warm-gold);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════
           SIGNATURE DISHES — Showpiece cards
        ═══════════════════════════════════════ */
.dishes-section {
  background: var(--midnight);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.dishes-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(239, 184, 27, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.dishes-header {
  text-align: center;
  margin-bottom: 100px;
}

.dishes-header .section-label {
  justify-content: center;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  perspective: 1000px;
}

.dish-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.37);
  overflow: hidden;
  transition:
    transform 0.4s var(--transition-smooth),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.dish-card:hover {
  border-color: rgba(239, 184, 27, 0.3);
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(239, 184, 27, 0.08);
}

.dish-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.dish-card:hover .dish-image img {
  transform: scale(1.1);
}

.dish-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(15, 26, 26, 0.9), transparent);
}

.dish-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
}

.dish-tag.signature {
  background: var(--warm-gold);
  color: var(--charcoal);
}

.dish-tag.veg {
  background: var(--fresh-green);
  color: var(--white);
}

.dish-tag.new {
  background: var(--vibrant-magenta);
  color: var(--white);
}

.dish-content {
  padding: 35px;
}

.dish-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 10px;
}

.dish-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.dish-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.dish-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dish-price {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.3rem;
  color: var(--warm-gold);
}

.dish-icons {
  display: flex;
  gap: 10px;
}

.dish-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dish-icon svg {
  width: 14px;
  height: 14px;
  fill: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════
           DINING EXPERIENCES — Ambience cards
        ═══════════════════════════════════════ */
.experiences-section {
  background: var(--white);
  position: relative;
}

.experiences-header {
  text-align: center;
  margin-bottom: 100px;
}

.experiences-header .section-label {
  justify-content: center;
  color: var(--deep-teal);
}

.experiences-header .section-label::before {
  background: var(--deep-teal);
}

.experiences-header .section-title {
  max-width: 700px;
  margin: 0 auto 30px;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.exp-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.exp-card-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--transition-smooth);
}

.exp-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-card:hover .exp-card-bg {
  transform: scale(1.15);
}

.exp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(15, 26, 26, 0.92) 100%
  );
  z-index: 1;
}

.exp-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s var(--transition-smooth);
}

.exp-card:hover .exp-card-content {
  transform: translateY(0);
}

.exp-card-time {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: var(--warm-gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.exp-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.exp-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--transition-smooth) 0.1s;
  line-height: 1.7;
}

.exp-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
           COLOR SHIFT QUOTE
        ═══════════════════════════════════════ */
.quote-section {
  position: relative;
  padding: 250px 0;
  background: var(--deep-teal);
  overflow: hidden;
  transition: background 1s ease;
}

.quote-section.phase-1 {
  background: var(--deep-teal);
}
.quote-section.phase-2 {
  background: var(--deep-purple);
}
.quote-section.phase-3 {
  background: var(--vibrant-magenta);
}

.giant-quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  line-height: 1.25;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 50px;
}

.giant-quote em {
  font-style: italic;
  position: relative;
  display: inline-block;
}

.giant-quote em::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--warm-gold);
}

.quote-author {
  text-align: center;
  margin-top: 50px;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════
   MENU PREVIEW — Premium Luxury Style
═══════════════════════════════════════ */
.menu-section {
  background: linear-gradient(180deg, #f9f7f2 0%, #f4f1eb 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: "MENU";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Playfair Display", serif;
  font-size: 20vw;
  font-weight: 900;
  letter-spacing: 12px;
  color: rgba(35, 170, 166, 0.035);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.menu-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.menu-header .section-label {
  justify-content: center;
  color: var(--deep-teal);
}

.menu-header .section-label::before {
  background: var(--deep-teal);
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.menu-tab {
  padding: 14px 26px;
  border-radius: 0px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.menu-tab:hover{
  background-color: #000;
  transition: all 0.5s ease;
  color: #fff !important;
}
.menu-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 170, 166, 0.3);
  color: var(--deep-teal);
  box-shadow: 0 8px 25px rgba(35, 170, 166, 0.12);
}

.menu-tab.active {
  background: linear-gradient(135deg, var(--charcoal), #1d1d1d);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;

  min-height: 850px;
  align-items: start;
  align-content: start;
}

.menu-item {
  position: relative;
  padding: 10px 30px;
  background: transparent;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--deep-teal),
    rgba(35, 170, 166, 0.2)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.menu-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.menu-item:hover::before {
  opacity: 1;
}

.menu-item-info {
  flex: 1;
}

.menu-item-info h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}

.menu-item-info p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.75;
  max-width: 90%;
}

.menu-item-veg,
.menu-item-nonveg {
  flex-shrink: 0;
  margin-top: 7px;
  width: 16px;
  height: 16px;
}

.menu-item-veg {
  border: 2px solid #2fa44f;
  position: relative;
}

.menu-item-veg::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #2fa44f;
}

.menu-item-nonveg {
  border: 2px solid #b23a3a;
  position: relative;
}

.menu-item-nonveg::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 7px solid #b23a3a;
}

@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .menu-item-info p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .menu-section {
    padding: 120px 0;
  }

  .menu-categories {
    gap: 10px;
  }

  .menu-tab {
    padding: 12px 18px;
    font-size: 0.68rem;
  }

  .menu-item {
    padding: 24px;
  }

  .menu-item-info h4 {
    font-size: 1.1rem;
  }

  .menu-item-info p {
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════
           CHEF SECTION — Spotlight
        ═══════════════════════════════════════ */
.chef-section {
  background: var(--midnight);
  padding: 200px 0;
  position: relative;
  overflow: hidden;
}

.chef-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(239, 184, 27, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.chef-visual {
  position: relative;
}

.chef-image {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(239, 184, 27, 0.15);
}

.chef-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--warm-gold), var(--coral-red));
  opacity: 0.15;
  z-index: -1;
}

.chef-text .section-label {
  color: var(--warm-gold);
}

.chef-text .section-label::before {
  background: var(--warm-gold);
}

.chef-text .section-title {
  color: var(--white);
}

.chef-text .section-text {
  color: rgba(255, 255, 255, 0.7);
}

.chef-signature {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--warm-gold);
  margin-top: 40px;
  opacity: 0.7;
}

/* ═══════════════════════════════════════
           TIMINGS & INFO
        ═══════════════════════════════════════ */
.info-section {
  background: var(--charcoal);
  padding: 120px 0;
  position: relative;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
  z-index: 1;
}

.info-card {
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.348);
  transition: all 0.4s var(--transition-smooth);
}

.info-card:hover {
  border-color: rgba(239, 184, 27, 0.3);
  transform: translateY(-5px);
}

.info-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--warm-gold);
}

.info-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 15px;
}

.info-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
}

.info-card .time {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.1rem;
  color: var(--warm-gold);
  display: block;
  margin-top: 10px;
}

/* ═══════════════════════════════════════
           RESERVATION CTA
        ═══════════════════════════════════════ */
.reservation-section {
  background: linear-gradient(135deg, var(--warm-gold), var(--coral-red));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.reservation-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.reservation-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.reservation-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 45px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 25px;
}

.reservation-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.reservation-phone {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.reservation-phone:hover {
  transform: scale(1.05);
}

.reservation-btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--charcoal);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--transition-smooth);
}

.reservation-btn:hover {
  background: var(--midnight);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════
           CELESTIAL — Footer warm-gold overrides
        ═══════════════════════════════════════ */
.footer-social a:hover {
  background: var(--warm-gold);
  border-color: var(--warm-gold);
  color: var(--charcoal);
}

.footer-links a:hover {
  color: var(--warm-gold);
}

/* ═══════════════════════════════════════
           CELESTIAL — Particle & loader overrides
        ═══════════════════════════════════════ */
.particle {
  width: 6px;
  height: 6px;
  background: var(--warm-gold);
  opacity: 0.5;
  animation: particleFade 1.2s ease-out forwards;
}

.loader-bar::after {
  background: linear-gradient(90deg, var(--warm-gold), var(--coral-red));
}

/* ═══════════════════════════════════════
           RESPONSIVE — Page-specific
        ═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .philosophy-text {
    padding-right: 0;
  }

  .chef-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-item:nth-child(odd) {
    border-right: none;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dining-hero-title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .dishes-grid {
    grid-template-columns: 1fr;
  }

  .exp-grid {
    grid-template-columns: 1fr;
  }
  .exp-card {
    height: 350px;
  }

  .image-triptych {
    height: 400px;
  }

  .dining-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .menu-categories {
    gap: 6px;
  }
  .menu-tab {
    padding: 10px 20px;
    font-size: 0.65rem;
  }
}


.menu-item {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
}
