/* ============================================
   POLLO DJ — Premium Landing Page Styles
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --yellow: #FFB800;
  --yellow-dark: #E5A600;
  --red: #E63946;
  --red-dark: #C62828;
  --white: #FAFAFA;
  --gray: #b0b0b0;
  --gray-dark: #2a2a2a;

  --ff-heading: 'Montserrat', sans-serif;
  --ff-body: 'Poppins', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, .35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .5);
  --shadow-yellow: 0 4px 20px rgba(255, 184, 0, .35);
  --shadow-red: 0 4px 20px rgba(230, 57, 70, .30);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: .2s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--ff-body);
}

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}

/* ---------- Scroll animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

.reveal-delay-5 {
  transition-delay: .5s;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
  padding: .65rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--yellow);
}

.navbar__logo img {
  height: 44px;
  width: auto;
}

.navbar__logo span {
  background: linear-gradient(135deg, var(--yellow), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop menu */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__menu a {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--white);
  position: relative;
  transition: color var(--transition-fast);
}

.navbar__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}

.navbar__menu a:hover {
  color: var(--yellow);
}

.navbar__menu a:hover::after {
  width: 100%;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 600;
  font-size: .85rem;
  padding: .6rem 1.3rem;
  border-radius: 50px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  padding: 4px;
}

.navbar__hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, .98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 1050;
  transition: right .4s cubic-bezier(.77, 0, .18, 1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--yellow);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero-bg.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.15);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, .7) 0%,
      rgba(10, 10, 10, .5) 40%,
      rgba(10, 10, 10, .8) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  animation: fadeInUp 1s ease .3s both;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 184, 0, .15);
  border: 1px solid rgba(255, 184, 0, .3);
  color: var(--yellow);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__slogan {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-yellow);
  background: var(--yellow-dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .25);
}

.btn--outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-3px);
}

.btn--red {
  background: var(--red);
  color: var(--white);
}

.btn--red:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
  background: var(--red-dark);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
}

.btn--lg {
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
}

/* ============================================
   SPECIALTIES
   ============================================ */
.specialties {
  padding: 6rem 0;
  text-align: center;
  background: var(--black);
}

.specialties__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.specialty-card {
  background: var(--black-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.specialty-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .5s ease;
}

.specialty-card:hover .specialty-card__img {
  transform: scale(1.06);
}

.specialty-card__img-wrap {
  overflow: hidden;
}

.specialty-card__body {
  padding: 1.3rem 1.2rem;
}

.specialty-card__name {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: .4rem;
}

.specialty-card__desc {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================
   COMBOS
   ============================================ */
.combos {
  padding: 6rem 0;
  text-align: center;
  background: var(--black-light);
}

.combos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.combo-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.combo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(255, 184, 0, .15);
}

.combo-card__img-wrap {
  overflow: hidden;
}

.combo-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .5s ease;
}

.combo-card:hover .combo-card__img {
  transform: scale(1.05);
}

.combo-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 1.1rem;
  padding: .45rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-red);
}

.combo-card__body {
  padding: 1.5rem;
  text-align: left;
}

.combo-card__name {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.combo-card__desc {
  font-size: .9rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.combo-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.combo-card__price {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--yellow);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 6rem 0;
  background: var(--black);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__img-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  border: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__content {}

.about__text {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.about__stat-number {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--yellow);
}

.about__stat-label {
  font-size: .85rem;
  color: var(--gray);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 6rem 0;
  background: var(--black-light);
  text-align: center;
}

.testimonials__slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.testimonials__slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 300px;
  max-width: 360px;
  flex-shrink: 0;
  scroll-snap-align: center;
  background: var(--black-card);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: left;
  border: 1px solid var(--gray-dark);
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: var(--yellow);
}

.testimonial-card__stars {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.testimonial-card__author {
  font-weight: 600;
  font-size: .9rem;
}

.testimonial-card__role {
  font-size: .8rem;
  color: var(--gray);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-dark);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.testimonials__dot.active {
  background: var(--yellow);
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
  padding: 6rem 0;
  background: var(--black);
  text-align: center;
}

.menu-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.menu-category {
  background: var(--black-card);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-dark);
  transition: border-color var(--transition), transform var(--transition);
}

.menu-category:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.menu-category__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.menu-category__title {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.menu-category__items {
  text-align: left;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .9rem;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__name {
  color: var(--white);
}

.menu-item__price {
  color: var(--yellow);
  font-weight: 600;
  font-family: var(--ff-heading);
}

.menu-item--promo .menu-item__name {
  color: var(--yellow);
  font-weight: 600;
}

.menu-item--highlight .menu-item__name {
  font-weight: 500;
}

.menu-item__divider {
  height: 1px;
  background: rgba(255, 184, 0, .15);
  margin: .5rem 0;
}

/* ---------- Menu Category Images (framed) ---------- */
.menu-category__img-wrap {
  margin: 0 -1.5rem 1.2rem;
  padding: .5rem;
  border: 2px solid rgba(255, 184, 0, .35);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: rgba(255, 184, 0, .05);
  box-shadow: 0 0 18px rgba(255, 184, 0, .08), inset 0 0 12px rgba(255, 184, 0, .04);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.menu-category:hover .menu-category__img-wrap {
  border-color: var(--yellow);
  box-shadow: 0 0 24px rgba(255, 184, 0, .18), inset 0 0 16px rgba(255, 184, 0, .06);
}

.menu-category__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
  transition: transform .5s ease;
}

.menu-category:hover .menu-category__img {
  transform: scale(1.05);
}

.menu-category__img-label {
  display: block;
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  color: var(--yellow);
  margin-top: .5rem;
  letter-spacing: .5px;
}

.menu-category__subtitle {
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: .8rem;
  line-height: 1.5;
  text-align: left;
}

/* Menu category variants */
.menu-category--featured {
  border-color: rgba(255, 184, 0, .25);
}

.menu-category--promo {
  border-color: rgba(229, 57, 53, .25);
  background: linear-gradient(145deg, var(--black-card), rgba(229, 57, 53, .04));
}

.menu-category--promo:hover {
  border-color: var(--red);
}

.menu-category--shop {
  border-color: rgba(255, 184, 0, .15);
}

.menu-category--almuerzo {
  border-color: rgba(255, 184, 0, .2);
}

.menu-category--cafe {
  border-color: rgba(255, 184, 0, .15);
}

.menu-category--chorrillana {
  border-color: rgba(255, 184, 0, .3);
  background: linear-gradient(145deg, var(--black-card), rgba(255, 184, 0, .04));
}

.menu-category--chorrillana:hover {
  border-color: var(--yellow);
}

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: 6rem 0;
  background: var(--black-light);
  text-align: center;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location__info {
  text-align: left;
}

.location__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.location__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 184, 0, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.2rem;
}

.location__label {
  font-weight: 600;
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: .25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location__value {
  font-size: 1rem;
}

.location__cta {
  margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gray-dark);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand-name {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--yellow);
  margin-bottom: .75rem;
}

.footer__brand-desc {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__links a {
  font-size: .9rem;
  color: var(--gray);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--yellow);
}

.footer__social {
  display: flex;
  gap: .75rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.footer__social a:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid var(--gray-dark);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: var(--gray);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, .6);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .7), 0 0 0 12px rgba(37, 211, 102, .12);
  }
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }

  .location__grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .specialties__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .navbar__hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .combos__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-section__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   RESPONSIVE — MOBILE (<1024px)
   ============================================ */
@media (max-width: 1023px) {
  .navbar__menu {
    display: none;
  }

  .navbar__cta-desktop {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .specialties__grid {
    grid-template-columns: 1fr;
  }

  .combos__grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: 260px;
  }
}