body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  color: #333;
}

/* HEADER */
.main-header {
  position: relative;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.header-content { position: relative; z-index: 2; }

/* Barra superior */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(135deg,#e0e0e0,#f5f5f5);
  flex-wrap: wrap;
  max-width: 1600px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}
.header-top .logo { height: 65px; }
.search-wrap input {
  padding: 8px 14px 8px 30px;
  border-radius: 25px;
  border: 1px solid #ccc;
}
.social-icons img {
  width: 50px; height: 50px;
  margin-left: 15px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.social-icons img:hover { opacity: 0.8; }

/* Nav principal */
.nav-main {
  display: flex;
  justify-content: space-around;
  background: #2d2d2d;
  padding: 12px 0;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  max-width: 1600px;
}
.nav-main .nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.nav-main .nav-btn img {
  width: 50px; height: 50px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.nav-main .nav-btn.blog img { width: 100px; height: 100px; }
.nav-main .nav-btn:hover img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(20%) saturate(1500%) hue-rotate(360deg) brightness(95%) contrast(95%);
  transform: scale(1.1);
}

/* Categorías */
.nav-categories {
  background: #d4a93f;
  margin: 0 auto 25px auto;
  border-radius: 8px;
  max-width: 1600px;
}
.nav-categories ul {
  display: flex;
  justify-content: space-around;
  margin: 0; padding: 12px 0;
  list-style: none;
}
.nav-categories li {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  cursor: pointer;
  transition: color .3s;
}
.nav-categories li:hover { color: #000; }

/* Hero */
.hero {
  background: url('https://source.unsplash.com/1600x600/?pizza,restaurant') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.hero-content h1 {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
}
.hero-content p { font-size: 20px; margin: 10px 0 20px; }
.btn-primary {
  background: #d4a93f;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.8); /* sombra negra profunda */
}

.btn-primary:hover {
  background: #b88d2f;
  transform: scale(1.08);
  box-shadow: 4px 4px 14px rgba(0,0,0,0.9); /* más intensa en hover */
}

/* Secciones */
.about, .info, .gallery, .menu-preview, .testimonials {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}
.about h2, .info h2, .gallery h2, .menu-preview h2, .testimonials h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

/* Info */
.info p { margin: 5px 0; }

/* Galería */
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.grid-gallery img { width: 100%; border-radius: 8px; }

/* Menú Preview */
.menu-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.menu-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 15px;
  width: 250px;
}
.menu-item img { width: 100%; border-radius: 8px; }
.menu-item h3 { margin: 10px 0 5px; }
.menu-item span { color: #d4a93f; font-weight: bold; }
.btn-secondary {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #2d2d2d;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
}
.btn-secondary:hover { background: #444; }

/* Testimonios */
.testimonials blockquote {
  font-style: italic;
  margin: 15px auto;
  max-width: 800px;
  background: #f9f9f9;
  padding: 15px;
  border-left: 5px solid #d4a93f;
}

/* Footer */
.footer-premium {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 18px; }
  .menu-items { flex-direction: column; align-items: center; }
  .nav-categories ul { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .header-top { flex-direction: column; gap: 15px; text-align: center; }
  .search-wrap input { width: 90%; }
  .nav-main { flex-wrap: wrap; gap: 10px; }
  .nav-main .nav-btn { flex: 1 1 45%; justify-content: center; }
  .nav-categories ul {
    overflow-x: auto; white-space: nowrap;
    justify-content: flex-start; padding: 10px;
  }
  .nav-categories li { margin-right: 20px; }
  .hero { padding: 60px 15px; }
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 16px; }
  .grid-gallery { grid-template-columns: 1fr; }
  .menu-item { width: 100%; max-width: 350px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 22px; }
  .hero-content p { font-size: 14px; }
  .btn-primary, .btn-secondary { padding: 10px 18px; font-size: 14px; }
  .testimonials blockquote { font-size: 14px; padding: 10px; }
}

/* === HOVER CAROUSEL === */
.hover-carousel {
  max-width: 1250px;
  margin: 70px auto;
  padding: 10px 20px;
  overflow: hidden;
  position: relative;
}

.carousel-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 30px;
  color: #1f1f1f;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.carousel-track {
  display: flex;
  gap: 22px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding: 18px 10px 28px;
}

.carousel-item {
  flex: 0 0 auto;
  width: 260px;
  height: 325px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  transition: transform .35s ease, box-shadow .35s ease;
}

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

.carousel-item:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 28px 60px rgba(0,0,0,.28);
}

.carousel-track {
  display: flex;
  gap: 15px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding: 10px;
}

.carousel-item {
  flex: 0 0 auto;
  width: 240px;   /* 4:5 relación → si width=240px, height≈300px */
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.carousel-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Scrollbar bonito */
.carousel-track::-webkit-scrollbar {
  height: 8px;
}
.carousel-track::-webkit-scrollbar-thumb {
  background: goldenrod;
  border-radius: 4px;
}

.carousel-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 25px;
  color: #d4a93f; /* dorado */
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}



/* Hero Section with Video */
.hero {
  position: relative;
  height: 25vh; /* ocupa la mitad de la pantalla */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; /* centrado */
  text-align: center;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55); /* oscurece el video */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 20px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #d4a93f;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-style: italic;
  margin-bottom: 30px;
  color: #f5f5f5;
  letter-spacing: 1px;
}

/* About Us Section */
.about {
  background: #f8f8f8;
  padding: 80px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #d4a93f;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px; /* espacio entre párrafos */
  text-align: justify;
}

.about-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.btn-directions {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: #d4a93f;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.7);
}

.btn-directions:hover {
  background: #b88d2f;
  transform: scale(1.05);
  box-shadow: 4px 4px 14px rgba(0,0,0,0.9);
}
/* Contact / General Info Section */
.contact-info {
  background: #f8f8f8;
  padding: 80px 20px;
  color: #333;
}

.contact-info h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #d4a93f;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.info-grid {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.map-container {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.info-box {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.info-list li {
  margin-bottom: 18px;
}

.info-list a {
  color: #d4a93f;
  text-decoration: none;
  font-weight: bold;
}

.info-list a:hover {
  text-decoration: underline;
}

/* Botones */
.info-buttons {
  text-align: center;
  margin-top: 40px;
}

.btn-directions,
.btn-call {
  display: inline-block;
  margin: 10px 15px;
  padding: 14px 32px;
  background: #d4a93f;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.7);
}

.btn-directions:hover,
.btn-call:hover {
  background: #b88d2f;
  transform: scale(1.05);
  box-shadow: 4px 4px 14px rgba(0,0,0,0.9);
}

/* ============================= */
/* HOME PREMIUM REDESIGN */
/* ============================= */

.hero-premium {
  position: relative;
  min-height: 680px;
  padding: 120px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.78)),
    radial-gradient(circle at center, rgba(212,169,63,.18), transparent 55%);
  z-index: 1;
}



.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  color: #fff;
  border: 2px solid rgba(255,255,255,.75);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: .3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
  transform: scale(1.06);
}

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


@keyframes logoFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}
/* ========================= */
/* PREMIUM HERO */
/* ========================= */

.hero-premium {
  position: relative;
  min-height: 950px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 20px;
  background: #000;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
  linear-gradient(to bottom,
  rgba(0,0,0,.55),
  rgba(0,0,0,.72)),
  radial-gradient(circle at center,
  rgba(212,169,63,.10),
  transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.hero-logo {
  width: 380px;
  max-width: 85%;
  margin-bottom: 40px;

  filter:
  drop-shadow(0 10px 30px rgba(0,0,0,.65));

  animation: floatLogo 4s ease-in-out infinite;
}

.hero-title {
  margin: 0;
  color: white;

  font-family: 'Playfair Display', serif;
  font-size: clamp(58px, 7vw, 110px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: 2px;

  text-transform: uppercase;

  text-shadow:
  0 5px 20px rgba(0,0,0,.55);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  margin: 28px auto 22px;
}

.hero-divider span {
  width: 220px;
  height: 2px;
  background:
  linear-gradient(to right,
  transparent,
  #c89b3c,
  transparent);
}

.hero-divider i {
  color: #c89b3c;
  font-size: 18px;
}

.hero-subtitle {
  margin: 0 0 30px;

  color: #d4a93f;

  font-size: clamp(24px, 3vw, 42px);

  font-family: 'Playfair Display', serif;

  font-weight: 500;

  letter-spacing: 4px;

  text-transform: uppercase;
}

.hero-description {
  max-width: 850px;

  margin: 0 auto 45px;

  color: rgba(255,255,255,.92);

  font-size: 24px;

  line-height: 1.7;

  text-shadow:
  0 2px 12px rgba(0,0,0,.45);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  min-width: 260px;
  padding: 18px 34px;

  border-radius: 60px;

  font-size: 18px;

  font-weight: 700;

  letter-spacing: 1px;

  transition: .35s ease;
}

.btn-primary {
  background: linear-gradient(135deg,#d4a93f,#b8861b);
  color: white;
  border: none;

  box-shadow:
  0 12px 30px rgba(0,0,0,.35);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,.75);
  color: white;
  background: rgba(0,0,0,.25);

  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: white;
  color: black;

  transform: translateY(-4px);
}

@keyframes floatLogo {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {

  .hero-premium {
    min-height: 820px;
    padding: 100px 20px;
  }

  .hero-logo {
    width: 260px;
  }

  .hero-divider span {
    width: 90px;
  }

  .hero-description {
    font-size: 18px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 340px;
  }

}

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

.about-premium {
  position: relative;
  padding: 140px 20px;
  overflow: hidden;

  background:
  linear-gradient(to bottom,
  #f8f8f8,
  #ffffff);
}

.about-background {
  position: absolute;
  inset: 0;

  background:
  radial-gradient(circle at top right,
  rgba(212,169,63,.08),
  transparent 35%);

  pointer-events: none;
}

.about-container-premium {
  position: relative;
  z-index: 2;

  max-width: 1450px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

.about-image-premium {
  position: relative;
}

.about-image-premium img {
  width: 100%;

  border-radius: 28px;

  object-fit: cover;

  box-shadow:
  0 35px 80px rgba(0,0,0,.18);

  transition: transform .45s ease;
}

.about-image-premium:hover img {
  transform: scale(1.02);
}

.about-content-premium {
  max-width: 650px;
}

.section-kicker {
  display: inline-block;

  margin-bottom: 22px;

  color: #c89b3c;

  font-size: 15px;

  font-weight: 700;

  letter-spacing: 4px;

  text-transform: uppercase;
}

.about-content-premium h2 {

  margin: 0 0 24px;

  color: #111;

  font-family: 'Playfair Display', serif;

  font-size: clamp(40px, 5vw, 68px);

  line-height: 1.05;
}

.gold-divider {
  width: 120px;
  height: 3px;

  margin-bottom: 34px;

  border-radius: 999px;

  background:
  linear-gradient(to right,
  #d4a93f,
  #f0d58a);
}

.about-content-premium p {

  margin-bottom: 26px;

  color: #555;

  font-size: 21px;

  line-height: 1.9;
}

.about-features {

  display: flex;

  gap: 18px;

  flex-wrap: wrap;

  margin-top: 45px;
}

.feature-box {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 16px 22px;

  background: white;

  border-radius: 18px;

  box-shadow:
  0 15px 35px rgba(0,0,0,.08);

  transition: .35s ease;
}

.feature-box:hover {

  transform: translateY(-5px);

  box-shadow:
  0 20px 40px rgba(0,0,0,.12);
}

.feature-box i {

  color: #c89b3c;

  font-size: 22px;
}

.feature-box span {

  font-weight: 600;

  color: #222;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 992px) {

  .about-container-premium {

    grid-template-columns: 1fr;

    gap: 60px;
  }

  .about-content-premium {

    max-width: 100%;
  }

}

@media (max-width: 768px) {

  .about-premium {

    padding: 90px 20px;
  }

  .about-content-premium h2 {

    font-size: 42px;
  }

  .about-content-premium p {

    font-size: 18px;
  }

}

/* ========================= */
/* PREMIUM SECTIONS GLOBAL */
/* ========================= */

.section-heading {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 18px;
  color: #111;
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
}

.section-heading p {
  margin: 0 auto;
  max-width: 720px;
  color: #666;
  font-size: 20px;
  line-height: 1.7;
}

/* ========================= */
/* FEATURED DISHES PREMIUM */
/* ========================= */

.hover-carousel {
  max-width: 1350px;
  margin: 110px auto;
  padding: 0 20px;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 8px 35px;
  scroll-snap-type: x mandatory;
}

.carousel-item {
  flex: 0 0 auto;
  width: 285px;
  height: 360px;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
  transition: transform .35s ease, box-shadow .35s ease;
  background: #111;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.carousel-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 70px rgba(0,0,0,.28);
}

.carousel-item:hover img {
  transform: scale(1.08);
  filter: brightness(.88);
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: #c89b3c;
  border-radius: 999px;
}

/* ========================= */
/* GALLERY PREMIUM */
/* ========================= */

.gallery-premium {
  padding: 120px 20px;
  background:
    linear-gradient(to bottom, #fff, #f7f7f7);
}

.gallery-premium-grid {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 24px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
  background: #111;
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: brightness(.88) saturate(1.1);
}

/* ========================= */
/* MENU PREVIEW PREMIUM */
/* ========================= */

.menu-preview-premium {
  padding: 130px 20px;
  background:
    radial-gradient(circle at top left, rgba(212,169,63,.08), transparent 35%),
    linear-gradient(to bottom, #f7f7f7, #fff);
}

.premium-menu-grid {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.premium-menu-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,.13);
  transition: transform .35s ease, box-shadow .35s ease;
}

.premium-menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 38px 90px rgba(0,0,0,.2);
}

.premium-menu-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.premium-menu-card-body {
  padding: 34px;
}

.premium-menu-card-body span {
  display: inline-block;
  margin-bottom: 14px;
  color: #c89b3c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.premium-menu-card-body h3 {
  margin: 0 0 16px;
  color: #111;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.1;
}

.premium-menu-card-body p {
  margin: 0 0 24px;
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}

.premium-menu-card-body a {
  color: #111;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid #c89b3c;
}

.menu-preview-action {
  text-align: center;
  margin-top: 55px;
}

.btn-secondary-premium {
  display: inline-block;
  padding: 17px 40px;
  border-radius: 60px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transition: .35s ease;
}

.btn-secondary-premium:hover {
  background: #c89b3c;
  color: #111;
  transform: translateY(-4px);
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 992px) {
  .gallery-premium-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card.large,
  .gallery-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .premium-menu-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .hover-carousel {
    margin: 80px auto;
  }

  .carousel-item {
    width: 245px;
    height: 315px;
  }

  .gallery-premium,
  .menu-preview-premium {
    padding: 85px 20px;
  }

  .gallery-premium-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .section-heading p {
    font-size: 18px;
  }



}

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

.menu-footer-premium {

  margin-top: 80px;

  padding: 90px 20px 50px;

  text-align: center;

  background:
  radial-gradient(circle at top,
  rgba(212,169,63,.10),
  transparent 35%),
  linear-gradient(to bottom,
  #111,
  #050505);

  color: #fff;
}

.menu-footer-premium img {

  width: 180px;

  max-width: 80%;

  margin-bottom: 24px;

  filter:
  drop-shadow(0 12px 30px rgba(0,0,0,.55));
}

.menu-footer-premium h3 {

  margin: 0 0 18px;

  font-family: 'Playfair Display', serif;

  font-size: 42px;

  color: #fff;
}

.menu-footer-premium p {

  max-width: 700px;

  margin: 0 auto 34px;

  color: rgba(255,255,255,.75);

  font-size: 19px;

  line-height: 1.8;
}

.menu-footer-links {

  display: flex;

  justify-content: center;

  gap: 16px;

  flex-wrap: wrap;

  margin-bottom: 38px;
}

.menu-footer-links a {

  padding: 13px 24px;

  border-radius: 999px;

  border: 1px solid rgba(212,169,63,.5);

  color: #fff;

  text-decoration: none;

  font-weight: 700;

  transition: .3s ease;
}

.menu-footer-links a:hover {

  background: #d4a93f;

  color: #111;
}

.menu-footer-copy {

  display: block;

  color: rgba(255,255,255,.55);

  font-size: 14px;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {

  .menu-footer-premium {

    padding: 70px 20px 40px;
  }

  .menu-footer-premium h3 {

    font-size: 34px;
  }

  .menu-footer-premium p {

    font-size: 17px;
  }

}

/* ========================= */
/* COMING SOON POPUP */
/* ========================= */

.coming-soon-popup {

  position: fixed;

  top: 0;
  left: 0;

  width: 100vw;
  height: 100vh;

  display: flex;

  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,.72);

  backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;

  transition: .35s ease;

  z-index: 999999;
}

.coming-soon-popup.active {

  opacity: 1;
  visibility: visible;
}

.coming-soon-box {
  margin: auto;

  width: min(92vw, 520px);

  padding: 50px 40px;

  border-radius: 30px;

  text-align: center;

  background:
  linear-gradient(to bottom,
  #1a1a1a,
  #0d0d0d);

  border: 1px solid rgba(212,169,63,.35);

  box-shadow:
  0 35px 90px rgba(0,0,0,.45);

  color: white;

  transform: translateY(30px);

  transition: .35s ease;
}

.coming-soon-popup.active .coming-soon-box {

  transform: translateY(0);
}

.coming-soon-box i {

  font-size: 54px;

  color: #d4a93f;

  margin-bottom: 24px;
}

.coming-soon-box h3 {

  margin: 0 0 18px;

  font-family: 'Playfair Display', serif;

  font-size: 42px;

  line-height: 1.1;
}

.coming-soon-box p {

  margin: 0 0 34px;

  color: rgba(255,255,255,.78);

  font-size: 18px;

  line-height: 1.7;
}

.coming-soon-box button {

  padding: 14px 34px;

  border: none;

  border-radius: 999px;

  background:
  linear-gradient(135deg,
  #d4a93f,
  #b8861b);

  color: white;

  font-weight: 800;

  cursor: pointer;

  transition: .3s ease;
}

.coming-soon-box button:hover {

  transform: translateY(-3px);
}

.coming-soon-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .35s ease;
  z-index: 99999;
}

.coming-soon-popup.active {
  opacity: 1;
  visibility: visible;
}

.coming-soon-box {
  width: min(92vw, 520px);
  padding: 50px 40px;
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
  border: 1px solid rgba(212,169,63,.35);
  box-shadow: 0 35px 90px rgba(0,0,0,.45);
  color: white;
}

.coming-soon-box i {
  font-size: 54px;
  color: #d4a93f;
  margin-bottom: 24px;
}

.coming-soon-box h3 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
}

.coming-soon-box p {
  margin: 0 0 34px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.7;
}

.coming-soon-box button {
  padding: 14px 34px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4a93f, #b8861b);
  color: white;
  font-weight: 800;
  cursor: pointer;
}