/* ========================================
   Restaurant Page Styles
   ======================================== */

/* Hero Section */
.restaurant-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.restaurant-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Slideshow images */
.restaurant-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.restaurant-hero__slide.active {
  opacity: 1;
  z-index: 1;
}

/* Individual slide backgrounds with overlay */
.restaurant-hero__slide:nth-child(1) {
  background-image: linear-gradient(135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.6) 100%),
    url('/uploads/restaurant/1.jpg');
}

.restaurant-hero__slide:nth-child(2) {
  background-image: linear-gradient(135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.6) 100%),
    url('/uploads/restaurant/2.jpg');
}

.restaurant-hero__slide:nth-child(3) {
  background-image: linear-gradient(135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.6) 100%),
    url('/uploads/restaurant/3.jpg');
}

.restaurant-hero__slide:nth-child(4) {
  background-image: linear-gradient(135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.6) 100%),
    url('/uploads/restaurant/4.jpg');
}

.restaurant-hero__slide:nth-child(5) {
  background-image: linear-gradient(135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.6) 100%),
    url('/uploads/restaurant/5.jpg');
}

/* Add a subtle texture overlay for depth */
.restaurant-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  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="%23ffffff" fill-opacity="0.02"%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');
  pointer-events: none;
  z-index: 2;
}

.restaurant-hero .container {
  position: relative;
  z-index: 3;
}

.restaurant-hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.restaurant-hero .eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.restaurant-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.restaurant-hero .lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.restaurant-hero__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.info-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.info-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.info-card__content {
  flex: 1;
  text-align: left;
}

.info-card__content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.info-card__content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Menu Section */
.menu-section {
  padding: var(--space-3xl) 0;
  background: var(--warm-white);
}

.menu-category {
  margin-bottom: var(--space-3xl);
}

.menu-category__title {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--sage-light);
}

.menu-category__title i {
  color: var(--gold);
  font-size: 1.5rem;
}

.menu-items {
  display: grid;
  gap: var(--space-lg);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pearl);
  transition: all 0.3s ease;
}

.menu-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.menu-item__content {
  flex: 1;
}

.menu-item__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.menu-item__description {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.menu-item__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Drinks Grid */
.drinks-grid {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .drinks-grid {
    grid-template-columns: 1fr 1fr;
  }
}

max-width: 800px;
margin: 0 auto;
text-align: center;
}

.restaurant-hero .eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.restaurant-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.restaurant-hero .lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.restaurant-hero__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.info-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.info-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.info-card__content {
  flex: 1;
  text-align: left;
}

.info-card__content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.info-card__content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Menu Section */
.menu-section {
  padding: var(--space-3xl) 0;
  background: var(--warm-white);
}

.menu-category {
  margin-bottom: var(--space-3xl);
}

.menu-category__title {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--sage-light);
}

.menu-category__title i {
  color: var(--gold);
  font-size: 1.5rem;
}

.menu-items {
  display: grid;
  gap: var(--space-lg);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pearl);
  transition: all 0.3s ease;
}

.menu-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.menu-item__content {
  flex: 1;
}

.menu-item__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.menu-item__description {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.menu-item__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Drinks Grid */
.drinks-grid {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .drinks-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.drinks-category h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--sage-light);
}

/* CTA Section */
.restaurant-cta {
  position: relative;
  background: #2b2b31;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

/* SVG Pattern Background */
.restaurant-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='a' width='100' height='100' patternTransform='scale(2)' patternUnits='userSpaceOnUse'%3E%3Crect width='100%25' height='100%25' fill='%232b2b31'/%3E%3Cpath fill='%23d5b76d' d='M100 20.234v41.641q-6.719 7.656-10.234 17.812-3.36 9.766-3.125 20.313h-3.438v-4.531q0-2.657.39-4.532l.626-3.359.703-3.281 2.265-7.656q1.329-4.22 2.813-7.344.781-1.719 2.812-4.453l2.891-4.297.86-2.578.312-2.735q.156-5-.547-13.203l-2.344-20.937Q92.656 8.516 92.422 0h6.797q-.078 6.172.078 10.156.156 5.547.703 10.078m0 49.532v20.468q-.469 2.11-.703 4.844L99.063 100H92.5l-.078-8.594q0-5.156.547-8.515.469-3.047 2.89-6.797zM79.219 100h-3.672l.39-8.36.938-8.359q1.016-6.953 1.875-10.781 1.328-5.86 3.36-10.313l2.5-6.015 1.562-6.328.547-5q.078-2.813-.703-4.844l-3.282-9.531-3.28-9.531q-1.876-6.094-2.735-10.313Q75.547 4.922 75.547 0h3.672q.078 8.516 2.422 17.031 2.343 8.282 6.718 15.782l-2.03-11.016-1.876-11.016-.86-5.312L83.126 0h3.516l.234 4.531.547 4.532 2.5 16.25 2.422 16.328q1.015 8.125.156 15.625l-.625 3.28q-.547 1.798-1.562 2.97l-1.875 1.953q-1.094 1.172-1.641 2.187-1.64 2.735-2.89 7.813l-2.423 8.047q-1.406 3.515-1.875 8.125-.39 3.125-.39 8.359m-6.406 0H64.53q-2.11-9.922-1.718-18.828.39-4.922 1.796-8.203l2.97-7.5q1.405-4.219 1.718-7.89.312-2.735-.39-5.313-.704-2.657-2.345-4.844-2.343-3.125-5.78-6.328l-.938 2.5-.86 2.656q-2.343 6.797-4.922 11.953-3.125 6.25-7.03 10.86-1.485 2.265-2.579 5.312-.781 2.344-1.484 5.781Q41.25 88.75 41.25 100h-6.484l.312-12.266q.39-6.718 1.64-12.265 1.72-7.344 4.844-11.407l2.344-2.5 2.344-2.5q2.5-2.968 3.906-6.875 1.328-3.671 1.485-7.734.156-5.156-.86-12.5L48.906 19.61Q47.578 8.516 47.97 0h10.078q-.625 12.188 1.875 22.11 2.422 9.218 8.515 16.25l5 5.234q3.047 3.203 4.375 5.781 2.657 4.922.938 12.266-1.016 4.609-3.906 10.859-1.172 2.578-1.797 5.86-.547 2.5-.781 6.093-.391 7.266.546 15.547m-14.765 0H47.969V89.453q.312-5.937 1.718-10.39 4.297-12.657 10.157-22.813l1.797-3.047 2.109-2.812q1.25 4.687-1.094 11.562-5.625 16.953-4.61 38.047m-29.296 0H17.969l.234-5.781.469-5.782L21.25 65.86l2.422-22.578q1.172-12.031-1.875-21.797-1.719 3.047-2.969 7.5l-2.031 7.813q-.469 1.719-.547 4.219l.078 4.218-.547 11.094-1.797 10.469Q12.5 74.062 12.11 77.266q-.39 2.734-.312 6.406l.234 6.406.39 5q.235 2.813.704 4.922H5.781V81.25l-.078-6.016Q1.563 81.797 0 89.844v-20.39q5.86-10.47 7.422-22.657 1.25-9.14.078-23.36L6.406 11.72Q5.86 4.844 5.781 0h7.344l1.406 11.328 1.094 11.328q1.25-2.422 1.797-6.015l.625-6.25.078-5.157L17.969 0h10.86q.077 2.969.702 6.953l1.172 6.797 1.64 11.094q.626 6.172.157 11.172-.547 4.297-2.031 9.687L27.5 55.078q-2.031 6.719-2.344 14.531-.078 3.75.625 8.36l1.563 8.203.703-2.422 4.531-18.672q2.344-10.312 3.594-18.828.625-3.984.625-9.062l-.313-9.141-1.093-13.984Q34.688 5.547 34.766 0h6.484q-.078 8.984 1.953 19.688l1.64 8.75q.938 5.078.938 8.75 0 3.828-1.015 7.5-.938 3.671-2.813 6.874-4.61 9.375-7.812 20.47-2.813 9.687-4.766 21.405-.703 3.75-.625 6.563M0 61.797V19.766l.781 4.375.703 4.453 2.344 13.984.235 1.563.234 2.343Q5.078 54.61 0 61.797M64.61 0h8.202q-.39 7.266.157 11.953l.86 4.531 1.25 4.532 3.593 13.672 3.36 13.671.546 2.657.156 2.656-2.343-6.406q-1.407-3.516-3.047-6.172l-4.14-6.64-4.298-6.563q-1.172-1.953-1.875-4.61-.547-1.875-.937-4.922Q64.844 9.453 64.609 0'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='800%25' height='800%25' fill='url(%23a)'/%3E%3C/svg%3E");
  opacity: 0.3; /* CHANGED: Reduced from 0.7 to 0.3 */
  z-index: 0;
}

/* Dark Overlay for Better Text Readability */
.restaurant-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,      /* Even lighter */
    rgba(0, 0, 0, 0.2) 50%,     /* Even lighter */
    rgba(0, 0, 0, 0.3) 100%     /* Even lighter */
  );
  z-index: 1;
  pointer-events: none;
}

.restaurant-cta .container {
  position: relative;
  z-index: 2; /* CHANGED: Increased from 1 to 2 to be above overlay */
}

.restaurant-cta__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5e5b8; /* CHANGED: Made lighter for better contrast */
  background: rgba(212, 182, 108, 0.2); /* CHANGED: Increased opacity */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(212, 182, 108, 0.4); /* CHANGED: Increased opacity */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* NEW: Added shadow */
}

.restaurant-cta__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8); /* CHANGED: Stronger shadow */
}

.restaurant-cta__content p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95); /* CHANGED: Brighter text */
  margin-bottom: var(--space-xl);
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6); /* NEW: Added shadow */
}

.restaurant-cta__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.restaurant-cta__actions .btn {
  min-width: 200px;
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  transition: all 0.3s ease;
}

.restaurant-cta__actions .btn i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.restaurant-cta__actions .btn-primary {
  background: #d4b66c;
  color: #1a1a1a; /* CHANGED: Darker text for better contrast */
  border: 2px solid #d4b66c;
  box-shadow: 0 4px 16px rgba(212, 182, 108, 0.4); /* CHANGED: Stronger shadow */
}

.restaurant-cta__actions .btn-primary:hover {
  background: #e4c67c;
  border-color: #e4c67c;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 182, 108, 0.5); /* CHANGED: Stronger shadow */
}

.restaurant-cta__actions .btn-primary:hover i {
  transform: scale(1.1);
}

.restaurant-cta__actions .btn-outline-light {
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8); /* CHANGED: More opaque border */
  background: rgba(255, 255, 255, 0.1); /* CHANGED: More opaque background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* NEW: Added shadow */
}

.restaurant-cta__actions .btn-outline-light:hover {
  background: white;
  color: #2b2b31;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.restaurant-cta__actions .btn-outline-light:hover i {
  transform: rotate(5deg) scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .restaurant-hero {
    min-height: 60vh;
    padding: 5rem 0 3rem;
  }

  .restaurant-hero h1 {
    font-size: 2rem;
  }

  .restaurant-hero .lead {
    font-size: 1.125rem;
  }

  .restaurant-hero__info {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .info-card {
    padding: var(--space-md);
  }

  .info-card__icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .menu-item__price {
    font-size: 1.125rem;
    align-self: flex-end;
  }

  .restaurant-cta__content h2 {
    font-size: 1.875rem;
  }

  .restaurant-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .restaurant-cta__actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (min-width: 768px) {
  .info-card {
    padding: var(--space-xl);
  }
}

/* New Menu Styles */
.menu-subcategory-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
  border-left: 3px solid var(--charcoal);
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.section-divider {
  height: 1px;
  background: var(--sage-light);
  margin: var(--space-3xl) 0;
  position: relative;
}

.section-divider::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--warm-white);
  padding: 0 1rem;
  color: var(--gold);
  font-size: 1.5rem;
}


/* ========================================
   COMPREHENSIVE RESPONSIVE MEDIA QUERIES
   RESTAURANT PAGE OPTIMIZATIONS
   ======================================== */

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
  .restaurant-hero {
    min-height: 55vh;
    padding: 4.5rem 0 2rem;
  }

  .restaurant-hero__content {
    max-width: 100%;
    padding: 0 0.875rem;
  }

  .restaurant-hero .eyebrow {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .restaurant-hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.875rem;
  }

  .restaurant-hero .lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .restaurant-hero__info {
    gap: 0.875rem;
    margin-top: 1.5rem;
  }

  .info-card {
    padding: 0.875rem;
    gap: 0.875rem;
    border-radius: 12px;
  }

  .info-card__icon {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .info-card__content h4 {
    font-size: 0.9rem;
  }

  .info-card__content p {
    font-size: 0.85rem;
  }

  .menu-section {
    padding: 2rem 0;
  }

  .menu-category {
    margin-bottom: 2.5rem;
  }

  .menu-category__title {
    font-size: 1.4rem;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
  }

  .menu-category__title i {
    font-size: 1.25rem;
  }

  .menu-items {
    gap: 1rem;
  }

  .menu-item {
    padding: 1rem;
    gap: 0.875rem;
  }

  .menu-item__name {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .menu-item__description {
    font-size: 0.875rem;
  }

  .menu-item__price {
    font-size: 1.05rem;
  }

  .drinks-grid {
    gap: 2rem;
  }

  .drinks-category h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .menu-subcategory-title {
    font-size: 1.1rem;
    margin-bottom: 0.875rem;
  }

  .restaurant-cta {
    padding: 3rem 0;
  }

  .restaurant-cta__content {
    padding: 0 0.875rem;
  }

  .cta-eyebrow {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .restaurant-cta__content h2 {
    font-size: 1.65rem;
    margin-bottom: 0.875rem;
  }

  .restaurant-cta__content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .restaurant-cta__actions {
    gap: 0.875rem;
  }

  .restaurant-cta__actions .btn {
    min-width: auto;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-divider {
    margin: 2.5rem 0;
  }

  .section-divider::after {
    font-size: 1.25rem;
    padding: 0 0.75rem;
  }
}

/* Small Mobile Portrait (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
  .restaurant-hero {
    min-height: 58vh;
    padding: 4.75rem 0 2.25rem;
  }

  .restaurant-hero__content {
    padding: 0 1rem;
  }

  .restaurant-hero h1 {
    font-size: 1.9rem;
  }

  .restaurant-hero .lead {
    font-size: 1rem;
  }

  .restaurant-hero__info {
    gap: 1rem;
  }

  .info-card {
    padding: 1rem;
  }

  .info-card__icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .menu-section {
    padding: 2.25rem 0;
  }

  .menu-category__title {
    font-size: 1.5rem;
  }

  .menu-item {
    padding: 1.125rem;
  }

  .menu-item__name {
    font-size: 1.05rem;
  }

  .menu-item__price {
    font-size: 1.1rem;
  }

  .restaurant-cta {
    padding: 3.25rem 0;
  }

  .restaurant-cta__content h2 {
    font-size: 1.75rem;
  }

  .restaurant-cta__content p {
    font-size: 0.95rem;
  }

  .restaurant-cta__actions .btn {
    padding: 0.9rem 1.65rem;
    font-size: 0.95rem;
  }
}

/* Mobile Landscape */
@media (max-width: 767px) and (orientation: landscape) {
  .restaurant-hero {
    min-height: 85vh;
    padding: 4rem 0 2rem;
  }

  .restaurant-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .restaurant-hero .lead {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .restaurant-hero__info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.75rem;
  }

  .menu-section {
    padding: 2.5rem 0;
  }

  .restaurant-cta {
    padding: 3rem 0;
  }

  .restaurant-cta__content h2 {
    font-size: 2rem;
  }

  .restaurant-cta__actions {
    flex-direction: row;
  }

  .restaurant-cta__actions .btn {
    width: auto;
    min-width: 180px;
  }
}

/* Medium Mobile (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
  .restaurant-hero {
    min-height: 62vh;
    padding: 5rem 0 2.5rem;
  }

  .restaurant-hero__content {
    padding: 0 1.125rem;
  }

  .restaurant-hero .eyebrow {
    font-size: 0.8rem;
    padding: 0.45rem 1.15rem;
  }

  .restaurant-hero h1 {
    font-size: 2.15rem;
  }

  .restaurant-hero .lead {
    font-size: 1.05rem;
    margin-bottom: 1.85rem;
  }

  .restaurant-hero__info {
    gap: 1.15rem;
    margin-top: 1.85rem;
  }

  .info-card {
    padding: 1.125rem;
    gap: 1rem;
  }

  .info-card__icon {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }

  .info-card__content h4 {
    font-size: 0.975rem;
  }

  .info-card__content p {
    font-size: 0.9rem;
  }

  .menu-section {
    padding: 2.5rem 0;
  }

  .menu-category {
    margin-bottom: 2.75rem;
  }

  .menu-category__title {
    font-size: 1.6rem;
    margin-bottom: 1.35rem;
  }

  .menu-items {
    gap: 1.15rem;
  }

  .menu-item {
    padding: 1.15rem;
  }

  .menu-item__name {
    font-size: 1.075rem;
  }

  .menu-item__description {
    font-size: 0.9rem;
  }

  .menu-item__price {
    font-size: 1.15rem;
  }

  .drinks-grid {
    gap: 2.25rem;
  }

  .drinks-category h4 {
    font-size: 1.15rem;
  }

  .menu-subcategory-title {
    font-size: 1.15rem;
  }

  .restaurant-cta {
    padding: 3.5rem 0;
  }

  .restaurant-cta__content {
    padding: 0 1.125rem;
  }

  .cta-eyebrow {
    font-size: 0.8rem;
  }

  .restaurant-cta__content h2 {
    font-size: 1.95rem;
  }

  .restaurant-cta__content p {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .restaurant-cta__actions {
    gap: 1rem;
  }

  .restaurant-cta__actions .btn {
    padding: 0.95rem 1.75rem;
    font-size: 0.975rem;
  }

  .section-divider {
    margin: 2.75rem 0;
  }
}

/* Large Mobile / Phablet (640px - 767px) */
@media (min-width: 640px) and (max-width: 767px) {
  .restaurant-hero {
    min-height: 65vh;
    padding: 5.25rem 0 2.75rem;
  }

  .restaurant-hero__content {
    padding: 0 1.25rem;
    max-width: 650px;
  }

  .restaurant-hero .eyebrow {
    font-size: 0.825rem;
    padding: 0.475rem 1.2rem;
  }

  .restaurant-hero h1 {
    font-size: 2.35rem;
  }

  .restaurant-hero .lead {
    font-size: 1.075rem;
    margin-bottom: 2rem;
  }

  .restaurant-hero__info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .info-card {
    padding: 1.25rem;
  }

  .info-card__icon {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
  }

  .menu-section {
    padding: 2.75rem 0;
  }

  .menu-category {
    margin-bottom: 3rem;
  }

  .menu-category__title {
    font-size: 1.65rem;
    margin-bottom: 1.45rem;
  }

  .menu-items {
    gap: 1.25rem;
  }

  .menu-item {
    padding: 1.25rem;
  }

  .menu-item__name {
    font-size: 1.1rem;
  }

  .menu-item__description {
    font-size: 0.925rem;
  }

  .menu-item__price {
    font-size: 1.175rem;
  }

  .drinks-grid {
    gap: 2.5rem;
  }

  .drinks-category h4 {
    font-size: 1.2rem;
  }

  .menu-subcategory-title {
    font-size: 1.2rem;
  }

  .restaurant-cta {
    padding: 3.75rem 0;
  }

  .cta-eyebrow {
    font-size: 0.825rem;
  }

  .restaurant-cta__content h2 {
    font-size: 2.15rem;
  }

  .restaurant-cta__content p {
    font-size: 1.05rem;
  }

  .restaurant-cta__actions .btn {
    width: auto;
    min-width: 190px;
  }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .restaurant-hero {
    min-height: 68vh;
    padding: 5.5rem 0 3rem;
  }

  .restaurant-hero__content {
    max-width: 720px;
    padding: 0 1.5rem;
  }

  .restaurant-hero .eyebrow {
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
  }

  .restaurant-hero h1 {
    font-size: 2.65rem;
  }

  .restaurant-hero .lead {
    font-size: 1.15rem;
    margin-bottom: 2.25rem;
  }

  .restaurant-hero__info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.25rem;
    max-width: 100%;
  }

  .info-card {
    padding: 1.5rem;
  }

  .info-card__icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .info-card__content h4 {
    font-size: 1.025rem;
  }

  .info-card__content p {
    font-size: 0.95rem;
  }

  .menu-section {
    padding: 3.25rem 0;
  }

  .menu-category {
    margin-bottom: 3.25rem;
  }

  .menu-category__title {
    font-size: 1.75rem;
    gap: 1rem;
    margin-bottom: 1.65rem;
    padding-bottom: 1rem;
  }

  .menu-category__title i {
    font-size: 1.5rem;
  }

  .menu-items {
    gap: 1.5rem;
  }

  .menu-item {
    padding: 1.5rem;
    gap: 1.25rem;
    flex-direction: row;
  }

  .menu-item__name {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }

  .menu-item__description {
    font-size: 0.95rem;
  }

  .menu-item__price {
    font-size: 1.25rem;
  }

  .drinks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
  }

  .drinks-category h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .menu-subcategory-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .restaurant-cta {
    padding: 4.5rem 0;
  }

  .restaurant-cta__content {
    max-width: 750px;
    padding: 0 1.5rem;
  }

  .cta-eyebrow {
    font-size: 0.875rem;
  }

  .restaurant-cta__content h2 {
    font-size: 2.5rem;
  }

  .restaurant-cta__content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .restaurant-cta__actions {
    gap: 1.25rem;
  }

  .restaurant-cta__actions .btn {
    min-width: 210px;
    padding: 1.05rem 2.15rem;
    font-size: 1.025rem;
  }

  .section-divider {
    margin: 3.25rem 0;
  }

  .section-divider::after {
    font-size: 1.5rem;
  }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
  .restaurant-hero {
    min-height: 80vh;
  }

  .restaurant-hero__info {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Desktop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .restaurant-hero {
    min-height: 70vh;
    padding: clamp(6.5rem, 11vw, 8.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  }

  .restaurant-hero__content {
    max-width: 820px;
  }

  .restaurant-hero .eyebrow {
    font-size: 0.875rem;
    padding: 0.525rem 1.3rem;
  }

  .restaurant-hero h1 {
    font-size: 3rem;
  }

  .restaurant-hero .lead {
    font-size: 1.2rem;
    margin-bottom: 2.35rem;
  }

  .restaurant-hero__info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.65rem;
    margin-top: 2.35rem;
    max-width: 750px;
  }

  .info-card {
    padding: 1.65rem;
  }

  .info-card__icon {
    width: 50px;
    height: 50px;
    font-size: 1.55rem;
  }

  .info-card__content h4 {
    font-size: 1.05rem;
  }

  .menu-section {
    padding: 3.75rem 0;
  }

  .menu-category {
    margin-bottom: 3.5rem;
  }

  .menu-category__title {
    font-size: 1.85rem;
    margin-bottom: 1.75rem;
  }

  .menu-items {
    gap: 1.65rem;
  }

  .menu-item {
    padding: 1.65rem;
  }

  .menu-item__name {
    font-size: 1.175rem;
  }

  .menu-item__description {
    font-size: 0.975rem;
  }

  .menu-item__price {
    font-size: 1.3rem;
  }

  .drinks-grid {
    gap: 3rem;
  }

  .drinks-category h4 {
    font-size: 1.3rem;
    margin-bottom: 1.35rem;
  }

  .menu-subcategory-title {
    font-size: 1.3rem;
  }

  .restaurant-cta {
    padding: 5rem 0;
  }

  .restaurant-cta__content {
    max-width: 780px;
  }

  .restaurant-cta__content h2 {
    font-size: 2.75rem;
  }

  .restaurant-cta__content p {
    font-size: 1.125rem;
  }

  .restaurant-cta__actions {
    gap: 1.35rem;
  }

  .restaurant-cta__actions .btn {
    min-width: 220px;
    padding: 1.1rem 2.25rem;
    font-size: 1.05rem;
  }

  .section-divider {
    margin: 3.5rem 0;
  }
}

/* Medium Desktop (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
  .restaurant-hero {
    min-height: 72vh;
    padding: clamp(7rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
  }

  .restaurant-hero__content {
    max-width: 850px;
  }

  .restaurant-hero .eyebrow {
    font-size: 0.9rem;
    padding: 0.55rem 1.35rem;
  }

  .restaurant-hero h1 {
    font-size: 3.25rem;
  }

  .restaurant-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .restaurant-hero__info {
    gap: 1.75rem;
    margin-top: 2.5rem;
    max-width: 780px;
  }

  .info-card {
    padding: 1.75rem;
  }

  .info-card__icon {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }

  .info-card__content h4 {
    font-size: 1.075rem;
  }

  .info-card__content p {
    font-size: 0.975rem;
  }

  .menu-section {
    padding: 4rem 0;
  }

  .menu-category {
    margin-bottom: 3.75rem;
  }

  .menu-category__title {
    font-size: 1.95rem;
    gap: 1.15rem;
    margin-bottom: 1.85rem;
    padding-bottom: 1.15rem;
  }

  .menu-category__title i {
    font-size: 1.6rem;
  }

  .menu-items {
    gap: 1.75rem;
  }

  .menu-item {
    padding: 1.75rem;
  }

  .menu-item__name {
    font-size: 1.2rem;
  }

  .menu-item__description {
    font-size: 1rem;
  }

  .menu-item__price {
    font-size: 1.35rem;
  }

  .drinks-grid {
    gap: 3.25rem;
  }

  .drinks-category h4 {
    font-size: 1.35rem;
    margin-bottom: 1.4rem;
  }

  .menu-subcategory-title {
    font-size: 1.35rem;
  }

  .restaurant-cta {
    padding: 5.5rem 0;
  }

  .restaurant-cta__content {
    max-width: 800px;
  }

  .cta-eyebrow {
    font-size: 0.9rem;
    padding: 0.55rem 1.35rem;
  }

  .restaurant-cta__content h2 {
    font-size: 2.9rem;
  }

  .restaurant-cta__content p {
    font-size: 1.15rem;
    margin-bottom: 2.15rem;
  }

  .restaurant-cta__actions {
    gap: 1.4rem;
  }

  .restaurant-cta__actions .btn {
    min-width: 230px;
    padding: 1.15rem 2.35rem;
    font-size: 1.075rem;
  }

  .section-divider {
    margin: 3.75rem 0;
  }

  .section-divider::after {
    font-size: 1.6rem;
  }
}

/* Large Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  .restaurant-hero {
    min-height: 74vh;
    padding: clamp(7.5rem, 13vw, 9.5rem) 0 clamp(4.5rem, 9vw, 6.5rem);
  }

  .restaurant-hero__content {
    max-width: 880px;
  }

  .restaurant-hero .eyebrow {
    font-size: 0.925rem;
    padding: 0.575rem 1.4rem;
  }

  .restaurant-hero h1 {
    font-size: 3.5rem;
  }

  .restaurant-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 2.65rem;
    line-height: 1.65;
  }

  .restaurant-hero__info {
    gap: 1.85rem;
    margin-top: 2.65rem;
    max-width: 800px;
  }

  .info-card {
    padding: 1.85rem;
    border-radius: 14px;
  }

  .info-card__icon {
    width: 54px;
    height: 54px;
    font-size: 1.65rem;
    border-radius: 12px;
  }

  .info-card__content h4 {
    font-size: 1.1rem;
  }

  .info-card__content p {
    font-size: 1rem;
  }

  .menu-section {
    padding: 4.5rem 0;
  }

  .menu-category {
    margin-bottom: 4rem;
  }

  .menu-category__title {
    font-size: 2.05rem;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
  }

  .menu-category__title i {
    font-size: 1.7rem;
  }

  .menu-items {
    gap: 1.85rem;
  }

  .menu-item {
    padding: 1.85rem;
    border-radius: 14px;
  }

  .menu-item__name {
    font-size: 1.225rem;
    margin-bottom: 0.55rem;
  }

  .menu-item__description {
    font-size: 1.025rem;
    line-height: 1.65;
  }

  .menu-item__price {
    font-size: 1.4rem;
  }

  .drinks-grid {
    gap: 3.5rem;
  }

  .drinks-category h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.65rem;
  }

  .menu-subcategory-title {
    font-size: 1.4rem;
    margin-bottom: 1.15rem;
  }

  .restaurant-cta {
    padding: 6rem 0;
  }

  .restaurant-cta__content {
    max-width: 820px;
  }

  .cta-eyebrow {
    font-size: 0.925rem;
    padding: 0.575rem 1.4rem;
  }

  .restaurant-cta__content h2 {
    font-size: 3.1rem;
    margin-bottom: 1.15rem;
  }

  .restaurant-cta__content p {
    font-size: 1.175rem;
    margin-bottom: 2.25rem;
  }

  .restaurant-cta__actions {
    gap: 1.5rem;
  }

  .restaurant-cta__actions .btn {
    min-width: 240px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }

  .restaurant-cta__actions .btn i {
    font-size: 1.2rem;
  }

  .section-divider {
    margin: 4rem 0;
  }

  .section-divider::after {
    font-size: 1.7rem;
    padding: 0 1.15rem;
  }

  .mt-4 {
    margin-top: 1.75rem;
  }

  .mb-4 {
    margin-bottom: 1.75rem;
  }
}

/* Extra Large Desktop / 1080p (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
  .restaurant-hero {
    min-height: 76vh;
    padding: clamp(8.5rem, 14vw, 10.5rem) 0 clamp(5rem, 10vw, 7rem);
  }

  .restaurant-hero__content {
    max-width: 960px;
  }

  .restaurant-hero .eyebrow {
    font-size: 1rem;
    padding: 0.65rem 1.55rem;
    margin-bottom: 1.75rem;
  }

  .restaurant-hero h1 {
    font-size: 3.85rem;
    margin-bottom: 1.35rem;
  }

  .restaurant-hero .lead {
    font-size: 1.45rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 680px;
  }

  .restaurant-hero__info {
    gap: 2.15rem;
    margin-top: 3rem;
    max-width: 880px;
  }

  .info-card {
    padding: 2.15rem;
    gap: 1.35rem;
    border-radius: 16px;
  }

  .info-card__icon {
    width: 60px;
    height: 60px;
    font-size: 1.85rem;
    border-radius: 14px;
  }

  .info-card__content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .info-card__content p {
    font-size: 1.1rem;
  }

  .menu-section {
    padding: 5.5rem 0;
  }

  .menu-category {
    margin-bottom: 4.75rem;
  }

  .menu-category__title {
    font-size: 2.3rem;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom-width: 3px;
  }

  .menu-category__title i {
    font-size: 1.95rem;
  }

  .menu-items {
    gap: 2.15rem;
  }

  .menu-item {
    padding: 2.15rem;
    gap: 1.5rem;
    border-radius: 16px;
  }

  .menu-item__name {
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
  }

  .menu-item__description {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .menu-item__price {
    font-size: 1.6rem;
  }

  .drinks-grid {
    gap: 4.25rem;
  }

  .drinks-category h4 {
    font-size: 1.6rem;
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
  }

  .menu-subcategory-title {
    font-size: 1.6rem;
    margin-bottom: 1.35rem;
    padding-left: 1rem;
    border-left-width: 4px;
  }

  .restaurant-cta {
    padding: 7rem 0;
  }

  .restaurant-cta::before {
    opacity: 0.35;
  }

  .restaurant-cta__content {
    max-width: 900px;
  }

  .cta-eyebrow {
    font-size: 1rem;
    padding: 0.65rem 1.55rem;
    margin-bottom: 1.75rem;
  }

  .restaurant-cta__content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.35rem;
  }

  .restaurant-cta__content p {
    font-size: 1.3rem;
    margin-bottom: 2.75rem;
    line-height: 1.65;
  }

  .restaurant-cta__actions {
    gap: 1.75rem;
  }

  .restaurant-cta__actions .btn {
    min-width: 270px;
    padding: 1.4rem 2.85rem;
    font-size: 1.2rem;
  }

  .restaurant-cta__actions .btn i {
    font-size: 1.35rem;
  }

  .section-divider {
    margin: 4.75rem 0;
    height: 1.5px;
  }

  .section-divider::after {
    font-size: 2rem;
    padding: 0 1.35rem;
  }

  .mt-4 {
    margin-top: 2rem;
  }

  .mb-4 {
    margin-bottom: 2rem;
  }
}

/* Ultra-Wide / 4K (2560px+) */
@media (min-width: 2560px) {
  .restaurant-hero {
    min-height: 78vh;
    padding: clamp(10rem, 16vw, 12rem) 0 clamp(6rem, 12vw, 8rem);
  }

  .restaurant-hero__content {
    max-width: 1120px;
  }

  .restaurant-hero .eyebrow {
    font-size: 1.15rem;
    padding: 0.75rem 1.8rem;
    margin-bottom: 2rem;
    border-width: 1.5px;
  }

  .restaurant-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.65rem;
    letter-spacing: -0.02em;
  }

  .restaurant-hero .lead {
    font-size: 1.7rem;
    margin-bottom: 3.75rem;
    line-height: 1.75;
    max-width: 800px;
  }

  .restaurant-hero__info {
    gap: 2.75rem;
    margin-top: 3.75rem;
    max-width: 1040px;
  }

  .info-card {
    padding: 2.75rem;
    gap: 1.75rem;
    border-radius: 20px;
    border-width: 1.5px;
  }

  .info-card__icon {
    width: 72px;
    height: 72px;
    font-size: 2.25rem;
    border-radius: 16px;
  }

  .info-card__content h4 {
    font-size: 1.45rem;
    margin-bottom: 0.4rem;
  }

  .info-card__content p {
    font-size: 1.3rem;
  }

  .menu-section {
    padding: 6.5rem 0;
  }

  .menu-category {
    margin-bottom: 5.75rem;
  }

  .menu-category__title {
    font-size: 2.75rem;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 1.85rem;
    border-bottom-width: 3px;
  }

  .menu-category__title i {
    font-size: 2.35rem;
  }

  .menu-items {
    gap: 2.75rem;
  }

  .menu-item {
    padding: 2.75rem;
    gap: 2rem;
    border-radius: 20px;
    border-width: 1.5px;
  }

  .menu-item__name {
    font-size: 1.65rem;
    margin-bottom: 0.8rem;
  }

  .menu-item__description {
    font-size: 1.35rem;
    line-height: 1.75;
  }

  .menu-item__price {
    font-size: 2rem;
  }

  .drinks-grid {
    gap: 5.5rem;
  }

  .drinks-category h4 {
    font-size: 2rem;
    margin-bottom: 2.25rem;
    padding-bottom: 1rem;
    border-bottom-width: 1.5px;
  }

  .menu-subcategory-title {
    font-size: 2rem;
    margin-bottom: 1.75rem;
    padding-left: 1.35rem;
    border-left-width: 5px;
  }

  .restaurant-cta {
    padding: 8.5rem 0;
  }

  .restaurant-cta__content {
    max-width: 1080px;
  }

  .cta-eyebrow {
    font-size: 1.15rem;
    padding: 0.75rem 1.8rem;
    margin-bottom: 2rem;
    border-width: 1.5px;
  }

  .restaurant-cta__content h2 {
    font-size: 4.25rem;
    margin-bottom: 1.75rem;
  }

  .restaurant-cta__content p {
    font-size: 1.6rem;
    margin-bottom: 3.5rem;
    line-height: 1.75;
  }

  .restaurant-cta__actions {
    gap: 2.25rem;
  }

  .restaurant-cta__actions .btn {
    min-width: 320px;
    padding: 1.75rem 3.5rem;
    font-size: 1.45rem;
    border-width: 2.5px;
  }

  .restaurant-cta__actions .btn i {
    font-size: 1.65rem;
  }

  .section-divider {
    margin: 5.75rem 0;
    height: 2px;
  }

  .section-divider::after {
    font-size: 2.5rem;
    padding: 0 1.75rem;
  }

  .mt-4 {
    margin-top: 2.5rem;
  }

  .mb-4 {
    margin-bottom: 2.5rem;
  }
}

/* Ultra-Ultra-Wide (3440px+) */
@media (min-width: 3440px) {
  .restaurant-hero {
    min-height: 80vh;
    padding: clamp(11rem, 18vw, 14rem) 0 clamp(7rem, 14vw, 10rem);
  }

  .restaurant-hero__content {
    max-width: 1320px;
  }

  .restaurant-hero .eyebrow {
    font-size: 1.35rem;
    padding: 0.9rem 2.15rem;
  }

  .restaurant-hero h1 {
    font-size: 5.25rem;
    margin-bottom: 2rem;
  }

  .restaurant-hero .lead {
    font-size: 2rem;
    margin-bottom: 4.5rem;
    max-width: 960px;
  }

  .restaurant-hero__info {
    gap: 3.5rem;
    margin-top: 4.5rem;
    max-width: 1240px;
  }

  .info-card {
    padding: 3.5rem;
    gap: 2.25rem;
    border-radius: 24px;
  }

  .info-card__icon {
    width: 88px;
    height: 88px;
    font-size: 2.75rem;
    border-radius: 20px;
  }

  .info-card__content h4 {
    font-size: 1.75rem;
  }

  .info-card__content p {
    font-size: 1.6rem;
  }

  .menu-section {
    padding: 8rem 0;
  }

  .menu-category {
    margin-bottom: 7rem;
  }

  .menu-category__title {
    font-size: 3.25rem;
    gap: 2.5rem;
    margin-bottom: 3.75rem;
    padding-bottom: 2.25rem;
  }

  .menu-category__title i {
    font-size: 2.85rem;
  }

  .menu-items {
    gap: 3.5rem;
  }

  .menu-item {
    padding: 3.5rem;
    gap: 2.5rem;
    border-radius: 24px;
  }

  .menu-item__name {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .menu-item__description {
    font-size: 1.65rem;
  }

  .menu-item__price {
    font-size: 2.5rem;
  }

  .drinks-grid {
    gap: 7rem;
  }

  .drinks-category h4 {
    font-size: 2.5rem;
    margin-bottom: 2.85rem;
  }

  .menu-subcategory-title {
    font-size: 2.5rem;
    margin-bottom: 2.25rem;
    padding-left: 1.75rem;
  }

  .restaurant-cta {
    padding: 10.5rem 0;
  }

  .restaurant-cta__content {
    max-width: 1320px;
  }

  .cta-eyebrow {
    font-size: 1.35rem;
    padding: 0.9rem 2.15rem;
  }

  .restaurant-cta__content h2 {
    font-size: 5rem;
    margin-bottom: 2.25rem;
  }

  .restaurant-cta__content p {
    font-size: 2rem;
    margin-bottom: 4.5rem;
  }

  .restaurant-cta__actions {
    gap: 2.85rem;
  }

  .restaurant-cta__actions .btn {
    min-width: 380px;
    padding: 2.15rem 4.25rem;
    font-size: 1.75rem;
  }

  .restaurant-cta__actions .btn i {
    font-size: 2rem;
  }

  .section-divider {
    margin: 7rem 0;
  }

  .section-divider::after {
    font-size: 3rem;
    padding: 0 2.25rem;
  }
}

/* Height-based adjustments for short screens */
@media (max-height: 600px) {
  .restaurant-hero {
    min-height: 90vh;
    padding: 4rem 0 2rem;
  }

  .restaurant-hero h1 {
    margin-bottom: 0.75rem;
  }

  .restaurant-hero .lead {
    margin-bottom: 1.5rem;
  }

  .restaurant-hero__info {
    margin-top: 1.5rem;
  }

  .menu-section {
    padding: 2rem 0;
  }

  .restaurant-cta {
    padding: 2.5rem 0;
  }
}

@media (min-height: 900px) {
  .restaurant-hero {
    padding-bottom: 4.5rem;
  }

  .menu-section {
    padding: 5rem 0;
  }

  .restaurant-cta {
    padding: 7.5rem 0;
  }
}

@media (min-height: 1080px) {
  .restaurant-hero {
    padding-bottom: 5.5rem;
  }

  .menu-section {
    padding: 6rem 0;
  }

  .restaurant-cta {
    padding: 9rem 0;
  }
}

/* Specific device optimizations */

/* iPhone SE / Small phones */
@media (max-width: 375px) and (max-height: 667px) {
  .restaurant-hero h1 {
    font-size: 1.7rem;
  }

  .restaurant-hero__info {
    grid-template-columns: 1fr;
  }

  .menu-item {
    padding: 0.95rem;
  }
}

/* iPad Mini Portrait */
@media (min-width: 768px) and (max-width: 768px) and (orientation: portrait) {
  .restaurant-hero__info {
    grid-template-columns: repeat(2, 1fr);
  }

  .drinks-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* iPad Pro 11" Portrait */
@media (min-width: 834px) and (max-width: 834px) and (orientation: portrait) {
  .restaurant-hero__info {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* iPad Pro 12.9" Portrait */
@media (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .restaurant-hero__info {
    grid-template-columns: repeat(2, 1fr);
  }

  .drinks-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Surface Pro / 2-in-1 devices */
@media (min-width: 1280px) and (min-height: 900px) {
  .restaurant-hero {
    min-height: 74vh;
  }

  .menu-section {
    padding: 5rem 0;
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .info-card:active {
    transform: scale(0.98);
  }

  .menu-item:active {
    transform: scale(0.99);
  }

  .restaurant-cta__actions .btn:active {
    transform: scale(0.96);
  }
}

/* High resolution displays */
@media (min-resolution: 192dpi) and (min-width: 1024px) {
  .restaurant-hero__slide {
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
  }

  .menu-item,
  .info-card {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .restaurant-hero__slide {
    transition: none;
  }

  .info-card,
  .menu-item,
  .restaurant-cta__actions .btn,
  .restaurant-cta__actions .btn i {
    transition: none !important;
  }

  .info-card:hover,
  .menu-item:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .restaurant-hero .eyebrow,
  .cta-eyebrow {
    border-width: 2px;
  }

  .info-card,
  .menu-item {
    border-width: 2px;
  }

  .menu-category__title {
    border-bottom-width: 3px;
  }

  .restaurant-cta__actions .btn {
    border-width: 3px;
  }
}

/* Print styles */
@media print {
  .restaurant-hero {
    min-height: auto;
    padding: 2rem 0;
    page-break-after: avoid;
  }

  .restaurant-hero__bg,
  .restaurant-hero__slide {
    display: none;
  }

  .restaurant-hero__content,
  .info-card__content h4,
  .info-card__content p,
  .restaurant-hero h1,
  .restaurant-hero .lead {
    color: #000 !important;
    text-shadow: none;
  }

  .restaurant-hero .eyebrow,
  .cta-eyebrow {
    background: #f0f0f0;
    color: #333;
    border-color: #ccc;
  }

  .restaurant-hero__info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .info-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    box-shadow: none;
    page-break-inside: avoid;
  }

  .info-card:hover {
    transform: none;
  }

  .menu-section {
    padding: 2rem 0;
  }

  .menu-category {
    page-break-inside: avoid;
    margin-bottom: 2rem;
  }

  .menu-category__title {
    color: #000;
    border-bottom-color: #ccc;
  }

  .menu-item {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }

  .menu-item:hover {
    transform: none;
  }

  .drinks-grid {
    grid-template-columns: 1fr 1fr;
  }

  .restaurant-cta {
    background: #333 !important;
    padding: 2rem 0;
    page-break-before: always;
  }

  .restaurant-cta::before,
  .restaurant-cta::after {
    display: none;
  }

  .restaurant-cta__content h2,
  .restaurant-cta__content p {
    color: #fff !important;
  }

  .restaurant-cta__actions {
    display: none;
  }

  .section-divider::after {
    background: #fff;
  }
}