@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Playwrite+IE:wght@100..400&display=swap');

@font-face {
  font-family: 'Tay Birdie';
  src: url('assets/Fonts/Birdie%20400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

:root {
  --font-primary: 'Tay Birdie', serif;
  --font-secondary: 'Overpass', sans-serif;
  --green: #0E3B2D;
  --green-deep: #0a2d22;
  --green-mid: #174d3b;
  --green-glow: rgba(14, 59, 45, 0.3);
  --gold: #C9A050;
  --gold-light: #e8c88a;
  --gold-glow: rgba(201, 160, 80, 0.25);
  --cream: #FAF8F3;
  --cream-dark: #F0ECE3;
  --white: #FFFFFF;
  --charcoal: #1a1a1a;
  --muted: #6b6b6b;
  --smoke: rgba(255, 255, 255, 0.65);
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 3rem;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 20px 60px rgba(201, 160, 80, 0.25);
  --trans-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --trans-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  line-height: 1.75;
  cursor: default;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
  h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {
      /* font-family: 'IBM Plex Sans', sans-serif !important; */
       font-family: "IBM Plex Sans", sans-serif;
        text-transform: capitalize;
        letter-spacing: 0;
    }
p {
  font-family: var(--font-secondary);
  
  line-height: 1.75;
}

img {
  display: block;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  opacity: 0.6;
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#pageLoader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-img {
  width: 180px;
  max-width: 80vw;
  height: auto;
  animation: pulseLoader 1.5s ease-in-out infinite alternate;
}

@keyframes pulseLoader {
  from {
    transform: scale(0.95);
  }

  to {
    transform: scale(1.05);
  }
}

.loader-progress-wrap {
  width: 200px;
  height: 3px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.2s ease-out;
}

.loader-percentage {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.py-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.ls-wide {
  letter-spacing: 0.25em;
}

.text-gold {
  color: var(--gold) !important;
}

.bg-green {
  background-color: var(--green);
}

.bg-cream {
  background-color: var(--cream);
}

.reveal-text {
  overflow: hidden;
}

.reveal-text span {
  display: block;
  transform: translateY(100%);
  animation: revealUp 0.8s ease forwards;
}

@keyframes revealUp {
  to {
    transform: translateY(0);
  }
}

/* Section Label */
.section-label {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* Gold Divider */
.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1rem 0 1.8rem;
}

.divider-gold.mx-auto {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  padding: 22px 0;
  transition: var(--trans-slow);
  z-index: 999;
}

#mainNav.nav-scrolled {
  background: rgb(240 236 227) !important;
  backdrop-filter: blur(18px);
  padding: 13px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

#mainNav.nav-scrolled .nav-link {
  color: var(--charcoal) !important;
}

#mainNav.nav-scrolled .nav-link:after {
  background: var(--charcoal);
}

#mainNav.nav-scrolled .nav-link:hover {
  color: var(--gold) !important;
}

#mainNav.nav-scrolled .nav-link:hover:after {
  background: var(--gold);
}

/* ============================================================
   FOOD & BEVERAGE GALLERY
   ============================================================ */
.food-masonry-grid {
  columns: 3 320px;
  column-gap: 1.5rem;
}

.food-masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-slow);
  cursor: pointer;
}

.food-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.food-masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.food-masonry-item:hover img {
  transform: scale(1.06);
}

.food-masonry-item:hover .gallery-overlay {
  opacity: 1;
}

/* Load More Reveal Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.food-masonry-item.reveal-anim {
  animation: fadeInUp 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards !important;
}

#mainNav.nav-scrolled .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-brand .brand-name {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
}

.navbar-brand .brand-name span {
  color: var(--gold);
}

.nav-link {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: var(--trans-fast);
}

.nav-link:hover::after {
  left: 1rem;
  right: 1rem;
}

.nav-link:hover {
  color: var(--gold) !important;
}

.nav-cta-btn {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
  border-radius: 50px;
  padding: 0.5rem 1.4rem !important;
  font-weight: 600;
  transition: var(--trans-fast);
}

.nav-cta-btn::after {
  display: none;
}

.nav-cta-btn:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--gold-glow);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-section {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  height: 100%;
}

.hero-section .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 9s ease;
}

.hero-section .carousel-item.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.25) 100%);
}

.hero-caption {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-caption-inner {
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeSlideRight 0.7s 0.4s ease forwards;
}

.hero-title {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin: 0.7rem 0 1.4rem;
  opacity: 0;
  animation: fadeSlideRight 0.8s 0.6s ease forwards;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
  opacity: 0;
  animation: fadeSlideRight 0.8s 0.8s ease forwards;
}

.hero-btns {
  opacity: 0;
  animation: fadeSlideRight 0.8s 1s ease forwards;
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(-30px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 4.2rem !important;
  }
  .hero-subtitle {
    font-size: 1.3rem !important;
  }
}

@media (max-width: 991.98px) {
  #mainNav.nav-scrolled #navMenu .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
  }
  #mainNav.nav-scrolled #navMenu .nav-link:hover {
    color: var(--gold) !important;
  }
  #mainNav.nav-scrolled .navbar-toggler-icon {
    filter: invert(1) !important;
  }
}

/* Hero Indicators */
.carousel-indicators {
  bottom: 3rem;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  margin: 0 5px;
  transition: all 0.4s;
}

.carousel-indicators .active {
  background: var(--gold);
  width: 30px;
  border-radius: 4px;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

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

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--trans-slow);
  position: relative;
  overflow: hidden;
}

.btn-primary-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-deep);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary-gold:hover::before {
  transform: translateX(0);
}

.btn-primary-gold:hover {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-primary-gold span,
.btn-primary-gold i {
  position: relative;
  z-index: 1;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--trans-slow);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--green-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: var(--trans-slow);
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green-deep);
  padding: 3.5rem 0;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  transition: var(--trans-slow);
}

.stat-label {
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   HERITAGE SECTION
   ============================================================ */
.heritage-section {
  background: var(--cream);
}

.heritage-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.heritage-img-accent {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 52%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 8px solid var(--cream);
  box-shadow: var(--shadow-lg);
  transition: var(--trans-slow);
}

.heritage-img-accent:hover {
  transform: translateY(-8px) rotate(-2deg);
}

.heritage-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gold);
  color: var(--green-deep);
  padding: 22px 28px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-gold);
  animation: floatBadge 4s ease-in-out infinite;
  cursor: default;
}

.heritage-badge .number {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.heritage-badge small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  display: block;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(-12px) rotate(2deg)
  }
}

.quote-box {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--trans-slow);
}

.quote-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.quote-box::before {
  content: '"';
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12rem;
  color: rgba(201, 160, 80, 0.12);
  position: absolute;
  top: -30px;
  left: 10px;
  line-height: 1;
}

.quote-box p {
  font-family: "IBM Plex Sans", sans-serif;
  text-transform: capitalize  ;
  font-size: 18px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.quote-box .founder-name {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  display: block;
}


.story-tabs {
  border-bottom: 1px solid rgba(201, 160, 80, 0.3);
  margin-bottom: 1.5rem;
  gap: 1.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.story-tabs::-webkit-scrollbar {
  display: none;
}
.story-tabs .nav-link {
  font-family: var(--font-secondary) !important;
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  color: rgba(26, 26, 26, 0.5) !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  padding: 0.5rem 0 !important;
  margin-right: 1.5rem !important;
  transition: var(--trans-fast);
  white-space: nowrap;
}
.story-tabs .nav-link::after {
  display: none !important;
}
.story-tabs .nav-link:hover {
  color: var(--gold) !important;
}
.story-tabs .nav-link.active {
  color: var(--charcoal) !important;
  border-bottom: 2px solid var(--gold) !important;
  background-color: transparent !important;
}
.story-tab-pane {
  animation: tabFadeIn 0.5s ease forwards;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   "WHY SASHWATHA" — ICON FEATURE STRIP
   ============================================================ */
.why-section {
  background: var(--cream-dark);
  overflow: hidden;
}

.why-overlay-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 380px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  cursor: default;
  transition: var(--trans-slow);
}

.why-overlay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.why-overlay-card:hover .why-overlay-img {
  transform: scale(1.08);
}

.why-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 5%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  transition: var(--trans-slow);
}

.why-overlay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.why-overlay-card:hover .why-overlay-backdrop {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 5%, rgba(201, 160, 80, 0.4) 100%);
}

.why-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.2rem 2rem;
  z-index: 2;
  color: var(--white);
  text-align: left;
}

.why-overlay-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 160, 80, 0.2);
  border: 1px solid rgba(201, 160, 80, 0.5);
  backdrop-filter: blur(5px);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  transition: var(--trans-fast);
}

.why-overlay-card:hover .why-overlay-icon {
  background: var(--gold);
  color: var(--white);
}

.why-overlay-content h5 {
  color: var(--white);
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.why-overlay-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  background: var(--cream-dark);
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--trans-slow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-14px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.12);
}

.menu-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}

.menu-card-body {
  padding: 1.8rem;
}

.menu-card-body h4 {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.menu-card-body p {
  font-size: 0.87rem;
  color: var(--muted);
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(201, 160, 80, 0.04);
}

.menu-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience-section {
  background: var(--green);
  overflow: hidden;
}

.experience-video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.experience-video-wrap img {
  width: 100%;
  display: block;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-fast);
}

.experience-video-wrap:hover .play-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.play-btn {
  width: 86px;
  height: 86px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--green-deep);
  text-decoration: none;
  transition: var(--trans-slow);
  position: relative;
}

.play-btn::before,
.play-btn::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 160, 80, 0.35);
  animation: pulseMul 2s ease infinite;
}

.play-btn::after {
  animation-delay: 1s;
}

@keyframes pulseMul {
  0% {
    transform: scale(1);
    opacity: 1
  }

  100% {
    transform: scale(1.6);
    opacity: 0
  }
}

.play-btn:hover {
  transform: scale(1.12);
  background: var(--gold-light);
  box-shadow: 0 0 50px var(--gold-glow);
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.9rem 1.5rem;
  width: 100%;
  transition: var(--trans-fast);
}

.feature-pill:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 160, 80, 0.4);
  transform: translateX(6px);
}

.feature-pill-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 160, 80, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--trans-fast);
}

.feature-pill:hover .feature-pill-icon {
  background: var(--gold);
  color: var(--green-deep);
}

.feature-pill-text h6 {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.feature-pill-text small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

/* ============================================================
   MARQUEE / SCROLLING TEXT BANNER
   ============================================================ */
.marquee-section {
  background: var(--gold);
  padding: 1.2rem 0;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-deep);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-deep);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ============================================================
   PRESS & RECOGNITION
   ============================================================ */
.press-section {
  background: var(--cream);
}

.press-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--trans-slow);
  height: 100%;
  cursor: default;
}

.press-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.press-icon {
  width: 62px;
  height: 62px;
  background: rgba(201, 160, 80, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--trans-fast);
}

.press-card:hover .press-icon {
  background: var(--gold);
  color: var(--green-deep);
}

.press-card h5 {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}

.press-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   CATERING
   ============================================================ */
.catering-section {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.catering-section::before {
  content: 'CATERING';
  font-family: var(--font-secondary);
  font-size: 18vw;
  font-weight: 700;
  color: rgba(14, 59, 45, 0.04);
  position: absolute;
  bottom: -2vw;
  left: -2vw;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.catering-type-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--trans-slow);
  position: relative;
  z-index: 1;
  height: 100%;
  cursor: default;
}

.catering-type-card:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.catering-type-card:hover h5,
.catering-type-card:hover p {
  color: var(--white);
}

.catering-type-card:hover .ct-icon {
  background: rgba(201, 160, 80, 0.2);
  color: var(--gold);
  transform: rotateY(360deg);
}

.ct-icon {
  width: 70px;
  height: 70px;
  background: rgba(14, 59, 45, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--green);
  margin: 0 auto 1.5rem;
  transition: all 0.8s ease;
}

.catering-type-card h5 {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  transition: var(--trans-fast);
}

.catering-type-card p {
  font-size: 0.82rem;
  color: var(--muted);
  transition: var(--trans-fast);
}

.catering-highlight-box {
  background: var(--green);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.catering-highlight-box::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(201, 160, 80, 0.1);
  animation: floatBadge 5s ease-in-out infinite;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: var(--green);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: var(--trans-slow);
  height: 100%;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 160, 80, 0.3);
  transform: translateY(-6px);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}

.testimonial-card blockquote {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer-name {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.reviewer-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* ============================================================
   INSTAGRAM GALLERY SECTION
   ============================================================ */
.gallery-section {
  background: var(--cream-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

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

/* ============================================================
   VISIT / LOCATIONS
   ============================================================ */
.visit-section {
  background: var(--cream);
}

.location-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 540px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--trans-slow);
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.location-card:hover img {
  transform: scale(1.07);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 30%, rgba(0, 0, 0, 0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.branch-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 160, 80, 0.12);
  border: 1px solid rgba(201, 160, 80, 0.3);
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.location-overlay h3 {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.location-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.location-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.location-info-item i {
  color: var(--gold);
  width: 16px;
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2ecc71;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #2ecc71;
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.2
  }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(201, 160, 80, 0.12) 0%, transparent 60%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201, 160, 80, 0.08);
  animation: floatBadge 7s ease-in-out infinite;
}

.cta-big-title {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.cta-big-title em {
  color: var(--gold);
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #04100b;
}

.footer-brand-name {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

.footer-brand-name span {
  color: var(--gold);
}

/* ── Logo images (navbar + footer) ────────────────────────── */
.navbar-logo {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  /* keep crisp on retina */
  image-rendering: -webkit-optimize-contrast;
}

.footer-logo {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 991px) {
  .navbar-logo {
    height: 40px;
  }
}

@media (max-width: 767px) {
  .navbar-logo {
    height: 36px;
  }

  .footer-logo {
    height: 56px;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-heading {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--trans-fast);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 160, 80, 0.1);
  transform: translateY(-3px);
}

.footer-newsletter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  width: 100%;
  margin-bottom: 0.7rem;
  outline: none;
  transition: border-color 0.3s;
}

.footer-newsletter-input:focus {
  border-color: var(--gold);
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.77rem;
}

/* ============================================================
   INTERIOR PHOTO SCROLLING STRIP
   ============================================================ */
.interior-strip {
  padding: 0;
  overflow: hidden;
}

.interior-scroll-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 1.5rem 0;
}

.interior-scroll-track img {
  height: 280px;
  width: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}

.interior-scroll-track img:hover {
  transform: scale(1.04);
  filter: brightness(1);
}

/* ============================================================
   MENU IMAGE CARDS
   ============================================================ */
.menu-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 280px;
  cursor: pointer;
}

.menu-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-img-card:hover img {
  transform: scale(1.08);
}

.menu-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--trans-fast);
  font-size: 2rem;
  color: var(--gold);
}

.menu-img-card:hover .menu-img-overlay {
  opacity: 1;
}

.menu-pdf-card {
  background: var(--green);
  height: 280px;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

/* ============================================================
   PRESS / NEWSPAPER SECTION
   ============================================================ */
.press-news-section {
  background: var(--green-deep);
}

.newspaper-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 280px;
  box-shadow: var(--shadow-md);
  transition: var(--trans-slow);
}

.newspaper-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.newspaper-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.newspaper-card:hover img {
  transform: scale(1.06);
}

.newspaper-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), transparent);
}

.newspaper-overlay span {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Override press-card for dark background */
.press-news-section .press-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.press-news-section .press-card:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.press-news-section .press-card h5 {
  color: var(--white);
}

.press-news-section .press-card p {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   SOCIAL MEDIA SECTION
   ============================================================ */
.social-section {
  background: var(--cream-dark);
}

.social-platform-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--trans-slow);
  min-height: 240px;
}

.social-platform-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.instagram-card:hover {
  border-color: #e1306c;
}

.google-card:hover {
  border-color: #4285f4;
}

.mail-card:hover {
  border-color: var(--gold);
}

.social-platform-card .social-platform-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--trans-slow);
}

.instagram-card .social-platform-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.google-card .social-platform-icon {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
  color: #fff;
}

.mail-card .social-platform-icon {
  background: var(--green);
  color: var(--gold);
}

.social-platform-card:hover .social-platform-icon {
  transform: rotate(10deg) scale(1.12);
}

.social-platform-card h5 {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.social-platform-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.social-cta {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.instagram-feed-label {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Instagram thumb grid */
.insta-thumb {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  text-decoration: none;
}

.insta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-thumb:hover img {
  transform: scale(1.1);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--trans-fast);
  color: var(--white);
  font-size: 1.5rem;
}

.insta-thumb:hover .insta-overlay {
  opacity: 1;
}

/* ============================================================
   FOUNDERS SECTION
   ============================================================ */
.founders-section {
  background: var(--cream);
}

.founders-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.founders-img-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  animation: floatBadge 4s ease-in-out infinite;
}

/* ============================================================
   LENIS SMOOTH SCROLL OVERRIDE
   ============================================================ */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* ============================================================
   INTERSECTION OBSERVER — REVEAL CLASSES
   (safe: elements are always visible; animation is additive)
   ============================================================ */

/* Gallery items: subtle scale reveal */
.gallery-item {
  transform: scale(0.96);
  transition: transform 0.7s ease, box-shadow 0.3s ease, opacity 0.5s ease;
  opacity: 0.5;
}

.gallery-item.revealed {
  transform: scale(1);
  opacity: 1;
}

/* Feature pills: slide in from left */
.feature-pill {
  transform: translateX(-30px);
  opacity: 0.2;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.feature-pill.pill-visible {
  transform: translateX(0);
  opacity: 1;
}

/* Social cards: slide up */
.social-platform-card {
  transform: translateY(30px);
  opacity: 0.3;
  transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.4s ease;
}

.social-platform-card.card-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Keep hover transform working after reveal */
.social-platform-card.card-visible:hover {
  transform: translateY(-10px) !important;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   AOS OVERRIDE
   ============================================================ */
[data-aos] {
  transition-duration: 0.95s !important;
}

/* ============================================================
   MENU LIGHTBOX / FLYOVER
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 99000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  padding: 1rem;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.35s ease;
}

.lightbox-overlay.active .lightbox-inner img {
  transform: scale(1);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: var(--trans-fast);
}

.lightbox-close:hover {
  transform: scale(1.15) rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-fast);
  z-index: 100;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}

.lightbox-caption {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 100;
  font-family: var(--font-secondary);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1199px)
   ============================================================ */
@media (max-width: 1199px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .interior-scroll-track img {
    height: 230px;
    width: 350px;
  }
}

/* ============================================================
   RESPONSIVE — TABLET/PHABLET (≤ 991px)
   ============================================================ */
@media (max-width: 991px) {

  /* Navbar */
  #mainNav {
    background: rgba(10, 45, 34, 0.97) !important;
    padding: 14px 0;
  }

  .navbar-collapse {
    background: rgba(10, 45, 34, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem;
    margin-top: 0.5rem;
    border-radius: 1rem;
  }

  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.25) !important;
    padding: 6px 10px;
  }

  .nav-link {
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem !important;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta-btn {
    margin-top: 0.8rem !important;
    text-align: center;
    border-radius: 50px !important;
    display: block;
    width: 100%;
  }

  /* Sections */
  .py-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  /* Hero */
  .hero-caption-inner {
    max-width: 100%;
  }

  .hero-btns {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  /* Heritage */
  .heritage-img-accent {
    display: none;
  }

  .heritage-img-main {
    height: 340px;
    border-radius: 1.5rem;
  }

  .heritage-badge {
    top: -15px;
    left: 10px;
    padding: 14px 18px;
  }

  .heritage-badge .number {
    font-size: 2rem;
  }

  /* Stats */
  .stat-divider {
    display: none;
  }

  .stat-num {
    font-size: 2.8rem;
  }

  /* Why overlay cards — 2 columns tablet */
  .why-overlay-card {
    height: 320px;
    max-width: 100%;
  }

  /* Food masonry */
  .food-masonry-grid {
    columns: 2 260px;
  }

  /* Experience feature pills full width */
  .feature-pill {
    width: 100%;
  }

  /* Locations */
  .location-card {
    height: 420px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Interior strip */
  .interior-scroll-track img {
    height: 200px;
    width: 300px;
  }

  /* Experience video */
  .experience-video-wrap {
    margin-top: 1rem;
  }

  /* Catering */
  .catering-highlight-box {
    margin-top: 1.5rem;
  }

  .catering-section::before {
    display: none;
  }

  /* Founders */
  .founders-img-badge {
    right: 0.5rem;
  }

  /* Menu CTA banner */
  .menu-cta-banner {
    padding: 2.5rem 2rem;
  }

  .menu-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  /* Contact */
  .contact-info-panel {
    height: auto;
  }

  .contact-form-card {
    height: auto;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {

  /* Cursor — disable on touch */
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  /* Typography */
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: 0.6rem;
  }

  .cta-big-title {
    font-size: 1.9rem;
  }

  .section-label {
    font-size: 0.62rem;
  }

  /* Sections spacing */
  .py-section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  /* Buttons */
  .btn-primary-gold,
  .btn-outline-gold,
  .btn-outline-white {
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
  }

  /* Hero buttons stacked */
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-btns .btn-primary-gold,
  .hero-btns .btn-outline-white {
    width: 100%;
    justify-content: center;
  }

  /* Hero scroll indicator — hide to reduce clutter */
  .hero-scroll-indicator {
    display: none;
  }

  /* Stats bar */
  .stats-bar {
    padding: 2rem 0;
  }

  .stats-bar .row {
    row-gap: 1.5rem !important;
  }

  .stat-num {
    font-size: 2.4rem;
  }

  .stat-item {
    text-align: center;
  }

  /* Heritage */
  .heritage-section .row {
    gap: 2rem !important;
  }

  .heritage-img-main {
    height: 280px;
  }

  .heritage-badge {
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -22px;
    animation: none;
  }

  .quote-box {
    padding: 1.8rem;
  }

  .quote-box p {
    font-size: 1rem;
  }

  /* Why overlay cards — 1 column on mobile */
  .why-section .row {
    row-gap: 1.2rem !important;
  }

  .why-overlay-card {
    height: 300px;
    max-width: 100%;
  }

  /* Food masonry — single column */
  .food-masonry-grid {
    columns: 1;
  }

  /* Interior strip */
  .interior-scroll-track img {
    height: 160px;
    width: 240px;
  }

  /* Menu dish cards — 1 column */
  .menu-items-grid .col-sm-6 {
    width: 100%;
  }

  .menu-dish-card {
    padding: 1.5rem;
  }

  /* Menu images */
  .menu-img-card {
    height: 170px;
  }

  .menu-pdf-card {
    height: 170px;
  }

  /* Menu CTA banner */
  .menu-cta-banner {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
  }

  .menu-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .menu-cta-right {
    width: 100%;
  }

  .menu-cta-right .btn-primary-gold,
  .menu-cta-right .btn-outline-white {
    width: 100%;
    justify-content: center;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 0.6rem;
  }

  .gallery-item {
    height: 160px;
  }

  /* Experience */
  .feature-pill {
    padding: 0.75rem 1rem;
    transform: none !important;
    opacity: 1 !important;
  }

  .feature-pill-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .feature-pill-text h6 {
    font-size: 0.82rem;
  }

  .experience-video-wrap {
    border-radius: 1rem;
  }

  /* Founders */
  .founders-section .row {
    gap: 2rem !important;
  }

  .founders-img-badge {
    right: 0.5rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
  }

  /* Newspaper */
  .newspaper-card {
    height: 200px;
  }

  .press-news-section .row {
    row-gap: 1rem !important;
  }

  /* Catering */
  .catering-section .row {
    gap: 2rem !important;
  }

  .catering-highlight-box {
    padding: 2rem 1.5rem;
  }

  .catering-type-card {
    padding: 1.4rem 1rem;
  }

  .ct-icon {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }

  /* Testimonials */
  .testimonials-section .row {
    row-gap: 1rem !important;
  }

  .testimonial-card {
    padding: 1.8rem;
  }

  .testimonial-card blockquote {
    font-size: 0.95rem;
  }

  /* Social cards */
  .social-platform-card {
    padding: 1.8rem 1.5rem;
    min-height: 190px;
    transform: none !important;
    opacity: 1 !important;
  }

  .social-platform-card .social-platform-icon {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  /* Instagram thumbs — 3 columns on small devices */
  .insta-thumb {
    border-radius: 0.75rem;
  }

  /* Locations */
  .location-card {
    height: 440px;
  }

  .location-overlay {
    padding: 1.5rem;
  }

  .location-overlay h3 {
    font-size: 1.8rem;
  }

  .location-info-item {
    font-size: 0.78rem;
  }

  /* CTA */
  .cta-section {
    padding: 4rem 0;
  }

  .cta-section .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .cta-section .btn-primary-gold,
  .cta-section .btn-outline-white {
    width: 100%;
    justify-content: center;
  }

  /* Contact section */
  .contact-info-panel {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
  }

  .contact-heading {
    font-size: 1.9rem;
  }

  .contact-form-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .site-footer .row {
    row-gap: 2.5rem !important;
  }

  .footer-brand-name {
    font-size: 1.6rem;
  }

  .footer-bottom {
    text-align: center;
    gap: 0.5rem;
  }

  /* Marquee slightly slowed */
  .marquee-track {
    animation-duration: 30s;
  }

  /* Lightbox arrows at edge */
  .lightbox-prev {
    left: 0.4rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-next {
    right: 0.4rem;
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL PHONE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {

  /* Hero */
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.12;
  }

  .hero-subtitle {
    font-size: 0.82rem;
    margin-bottom: 2rem;
  }

  .hero-caption {
    padding: 0 1.25rem;
  }

  /* Stats */
  .stats-bar .col-6 {
    width: 50%;
  }

  .stat-num {
    font-size: 2rem;
  }

  /* Heritage */
  .heritage-img-main {
    height: 240px;
  }

  .quote-box::before {
    font-size: 8rem;
  }

  .quote-box {
    padding: 1.5rem 1.2rem;
  }

  /* Why overlay cards */
  .why-overlay-card {
    height: 280px;
  }

  .why-overlay-content h5 {
    font-size: 1.3rem;
  }

  .why-overlay-content p {
    font-size: 0.82rem;
  }

  /* Menu */
  .menu-img-card {
    height: 150px;
  }

  .menu-tab-pill {
    font-size: 0.62rem;
    padding: 0.4rem 0.9rem;
  }

  .menu-cta-banner {
    padding: 1.8rem 1.2rem;
  }

  /* Gallery */
  .gallery-item {
    height: 140px;
  }

  .gallery-grid {
    gap: 0.4rem;
  }

  /* Experience */
  .play-btn {
    width: 66px;
    height: 66px;
    font-size: 1.4rem;
  }

  /* Catering cards */
  .catering-type-card {
    padding: 1.2rem 0.8rem;
  }

  .catering-type-card h5 {
    font-size: 0.95rem;
  }

  .catering-type-card p {
    font-size: 0.75rem;
  }

  .catering-highlight-box {
    padding: 1.5rem 1.2rem;
    border-radius: var(--radius-xl);
  }

  /* Locations */
  .location-card {
    height: 390px;
  }

  .branch-tag {
    font-size: 0.55rem;
  }

  /* Testimonials */
  .reviewer-avatar {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  /* Social */
  .social-cta {
    font-size: 0.68rem;
  }

  /* Contact */
  .contact-info-panel,
  .contact-form-card {
    padding: 1.8rem 1.2rem;
  }

  .contact-heading {
    font-size: 1.6rem;
  }

  .contact-detail-icon {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
    border-radius: 10px;
  }

  .contact-detail-value {
    font-size: 0.78rem;
  }

  .cf-submit-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.78rem;
  }

  /* Footer */
  .site-footer {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
  }

  .footer-newsletter-input {
    font-size: 0.75rem;
  }

  .footer-bottom {
    font-size: 0.7rem;
  }
}

/* ============================================================
   MENU SECTION — DISH CARDS & CTA
   ============================================================ */
.menu-section {
  background: var(--cream);
}

/* Category Filter Pills */
.menu-tab-row {
  gap: 0.6rem;
}

.menu-tab-pill {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid rgba(201,160,80,0.35);
  background: transparent;
  color: var(--muted);
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  cursor: pointer;
  transition: var(--trans-fast);
}

.menu-tab-pill:hover,
.menu-tab-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 6px 20px var(--gold-glow);
}

/* Dish Card */
.menu-dish-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(201,160,80,0.12);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--trans-slow);
}

.menu-dish-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201,160,80,0.18);
}

.menu-dish-card:hover::before {
  opacity: 1;
}

.menu-dish-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(14,59,45,0.2);
}

.menu-dish-icon i {
  font-size: 1.1rem;
  color: var(--gold);
}

.menu-dish-body {
  flex: 1;
}

.menu-dish-cat {
  font-family: var(--font-secondary);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}

.menu-dish-name {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.menu-dish-desc {
  font-family: var(--font-secondary);
  font-size: 0.82rem !important;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400 !important;
  margin: 0;
}

/* Signature badge */
.menu-dish-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-secondary);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  align-self: flex-start;
}

.menu-dish-badge--star {
  background: rgba(201,160,80,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,160,80,0.3);
}

/* Hidden state for filtering */
.menu-item.hidden {
  display: none;
}

/* CTA Banner */
.menu-cta-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 55%, var(--green-mid) 100%);
  border-radius: var(--radius-2xl);
  padding: 3.5rem 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(14,59,45,0.25);
}

.menu-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,160,80,0.15) 0%, transparent 65%);
}

.menu-cta-banner::after {
  content: '"';
  font-family: var(--font-secondary);
  font-size: 22rem;
  color: rgba(201,160,80,0.05);
  position: absolute;
  right: -1rem;
  bottom: -4rem;
  line-height: 1;
  pointer-events: none;
}

.menu-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.menu-cta-eyebrow {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.menu-cta-title {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.menu-cta-title em {
  color: var(--gold);
  font-style: italic;
}

.menu-cta-desc {
  font-family: var(--font-secondary);
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.5);
  font-weight: 400 !important;
  max-width: 400px;
  margin: 0;
}

.menu-cta-right {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .menu-cta-banner {
    padding: 2.5rem 2rem;
  }

  .menu-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-tab-pill {
    font-size: 0.65rem;
    padding: 0.45rem 1.1rem;
  }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 160, 80, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Info Panel (left) ────────────── */
.contact-info-panel {
  background: var(--green);
  border-radius: var(--radius-2xl);
  padding: 3.5rem 3rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-heading {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0.8rem 0 1.2rem;
}

.contact-heading em {
  color: var(--gold);
  font-style: italic;
}

.contact-subtext {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(201, 160, 80, 0.15);
  border: 1px solid rgba(201, 160, 80, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: var(--trans-fast);
}

.contact-detail-item:hover .contact-detail-icon {
  background: var(--gold);
  color: var(--green-deep);
  transform: scale(1.08);
}

.contact-detail-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-detail-value {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.contact-socials {
  display: flex;
  gap: 0.9rem;
}

.contact-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--trans-fast);
}

.contact-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--gold-glow);
}

/* Decorative blob inside info panel */
.contact-blob {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(201, 160, 80, 0.08);
  pointer-events: none;
  animation: floatBadge 6s ease-in-out infinite;
}

/* ── Form Card (right) ────────────── */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 3.5rem 3rem;
  height: 100%;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 160, 80, 0.1);
  position: relative;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3rem;
  right: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  border-radius: 0 0 4px 4px;
}

/* ── Form internals ────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cf-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.cf-input-wrap {
  position: relative;
}

.cf-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.85rem;
  pointer-events: none;
  transition: color 0.3s;
}

.cf-icon-top {
  top: 1.1rem;
  transform: none;
}

.cf-input {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.cf-input::placeholder {
  color: rgba(107, 107, 107, 0.45);
}

.cf-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 160, 80, 0.1);
}

.cf-input:focus + .cf-icon,
.cf-input-wrap:focus-within .cf-icon {
  color: var(--gold);
}

/* Select */
.cf-select-wrap {
  position: relative;
}

.cf-select {
  cursor: pointer;
}

.cf-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.75rem;
  pointer-events: none;
  transition: color 0.3s, transform 0.3s;
}

.cf-select-wrap:focus-within .cf-select-arrow {
  color: var(--gold);
  transform: translateY(-50%) rotate(180deg);
}

/* Textarea */
.cf-textarea {
  padding-top: 0.9rem;
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.cf-textarea-wrap .cf-icon {
  top: 1.05rem;
  transform: none;
}

/* Privacy note */
.cf-privacy {
  font-size: 0.76rem;
  color: rgba(107, 107, 107, 0.6);
  margin: 0;
}

/* Submit button */
.cf-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans-slow);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cf-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.cf-submit-btn:hover::before {
  transform: translateX(0);
}

.cf-submit-btn:hover {
  color: var(--green-deep);
  box-shadow: 0 12px 30px rgba(201, 160, 80, 0.35);
  transform: translateY(-2px);
}

.cf-submit-btn span,
.cf-submit-btn i {
  position: relative;
  z-index: 1;
}

/* Success message */
.cf-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  color: #2ecc71;
  font-size: 0.88rem;
  font-weight: 600;
  animation: tabFadeIn 0.5s ease forwards;
}

.cf-success i {
  font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 767px) {
  .cf-row {
    grid-template-columns: 1fr;
  }

  .contact-info-panel,
  .contact-form-card {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .contact-info-panel,
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
}

/* ============================================================
   PREMIUM CATERING SECTION
   ============================================================ */
.catering-premium-section {
  overflow: hidden;
}

/* ── Hero Banner ── */
.catering-hero-banner {
  position: relative;
  background-image: url('assets/img/interior/9.webp');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  padding: 110px 0 80px;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.catering-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 55%, rgba(14, 59, 45, 0.6) 100%);
}

.catering-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.catering-hero-text {
  max-width: 740px;
  margin-bottom: 3rem;
}

.catering-hero-title {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0.8rem 0 1.4rem;
}

.catering-hero-title em {
  color: var(--gold);
  font-style: italic;
}

.catering-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 600px;
  margin: 0;
}

/* Stats row inside banner */
.catering-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 1.8rem 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.catering-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 100px;
  text-align: center;
}

.catering-stat-num {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.catering-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.4rem;
  display: block;
}

.catering-stat-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ── Service Cards ── */
.catering-cards-section {
  padding-top: 70px;
  padding-bottom: 90px;
}

.catering-premium-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: var(--trans-slow);
  display: flex;
  flex-direction: column;
}

/* Gold bar on hover */
.catering-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.catering-premium-card:hover::before {
  transform: scaleX(1);
}

.catering-premium-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 160, 80, 0.15);
}

/* Icon */
.cpc-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(14, 59, 45, 0.25);
  transition: var(--trans-slow);
}

.catering-premium-card:hover .cpc-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  transform: rotate(-6deg) scale(1.08);
}

.cpc-title {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.cpc-desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin: 0;
}

.cpc-footer {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cpc-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 160, 80, 0.1);
  border: 1px solid rgba(201, 160, 80, 0.25);
  border-radius: 50px;
  padding: 0.25rem 0.9rem;
}

/* CTA card (dark) */
.catering-premium-card--cta {
  background: var(--green);
  border-color: var(--green);
  padding: 0;
}

.catering-premium-card--cta::before {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.catering-premium-card--cta:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

.cpc-cta-inner {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cpc-cta-title {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.7rem 0 0.8rem;
  line-height: 1.3;
}

.cpc-cta-sub {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 1.8rem;
  flex: 1;
}

.cpc-insta-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.3s;
  justify-content: center;
}

.cpc-insta-link:hover {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 991px) {
  .catering-hero-banner {
    background-attachment: scroll;
    padding: 80px 0 60px;
    min-height: auto;
  }

  .catering-stats-row {
    padding: 1.4rem 1.5rem;
  }

  .catering-stat-line {
    display: none;
  }

  .catering-stat {
    min-width: 80px;
  }

  .catering-stat-num {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .catering-hero-banner {
    padding: 70px 0 50px;
  }

  .catering-hero-title {
    font-size: 2rem;
  }

  .catering-hero-sub {
    font-size: 0.9rem;
  }

  .catering-stats-row {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
  }

  .catering-stat {
    min-width: unset;
  }

  .catering-cards-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .catering-premium-card {
    padding: 2rem 1.5rem;
  }

  .cpc-cta-inner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .catering-hero-title {
    font-size: 1.7rem;
  }

  .catering-stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .catering-stat-num {
    font-size: 1.6rem;
  }

  .catering-premium-card {
    padding: 1.8rem 1.2rem;
  }
}

/* ============================================================
   FRANCHISE OPPORTUNITIES SECTION
   ============================================================ */
.franchise-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.franchise-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 160, 80, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Left Accent Panel ── */
.franchise-accent-panel {
  background: var(--green);
  border-radius: var(--radius-2xl);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Large store icon ring at top */
.franchise-icon-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(201, 160, 80, 0.15);
  border: 2px solid rgba(201, 160, 80, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 2rem;
  animation: floatBadge 5s ease-in-out infinite;
}

/* Stat badges row */
.franchise-badge-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.franchise-badge {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1rem 0.8rem;
  text-align: center;
  transition: var(--trans-fast);
}

.franchise-badge:hover {
  background: rgba(201, 160, 80, 0.15);
  border-color: rgba(201, 160, 80, 0.3);
}

.franchise-badge-num {
  display: block;
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.franchise-badge-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.35rem;
}

/* Feature pills */
.franchise-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0.6rem 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  transition: var(--trans-fast);
}

.franchise-pill:last-of-type {
  margin-bottom: 0;
}

.franchise-pill i {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.franchise-pill:hover {
  background: rgba(201, 160, 80, 0.1);
  border-color: rgba(201, 160, 80, 0.3);
  transform: translateX(5px);
}

/* Decorative blob */
.franchise-blob {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(201, 160, 80, 0.07);
  pointer-events: none;
}

/* ── Right Content ── */
.franchise-heading {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin: 0.7rem 0 0;
}

.franchise-heading em {
  color: var(--green);
  font-style: italic;
}

.franchise-body {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* CTA block */
.franchise-cta-block {
  background: var(--green-deep);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(201, 160, 80, 0.12);
  position: relative;
}

.franchise-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201, 160, 80, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.franchise-cta-text {
  padding: 2rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.franchise-quote-icon {
  color: var(--gold);
  opacity: 0.4;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  display: block;
}

.franchise-cta-text p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}

/* Phone CTA button strip */
.franchise-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 2rem;
  background: var(--gold);
  text-decoration: none;
  transition: var(--trans-fast);
  position: relative;
  z-index: 1;
  gap: 1rem;
}

.franchise-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.franchise-cta-btn:hover::before {
  transform: scaleX(1);
}

.franchise-cta-btn:hover {
  box-shadow: 0 -4px 20px rgba(201, 160, 80, 0.4);
}

.franchise-cta-btn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.franchise-cta-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-deep);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 4px;
}

.franchise-cta-num {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.franchise-cta-arrow {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--trans-fast);
}

.franchise-cta-btn:hover .franchise-cta-arrow {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .franchise-accent-panel {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 767px) {
  .franchise-accent-panel {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
  }

  .franchise-icon-ring {
    width: 72px;
    height: 72px;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .franchise-cta-text {
    padding: 1.5rem 1.5rem 1rem;
  }

  .franchise-cta-btn {
    padding: 1.1rem 1.5rem;
  }

  .franchise-cta-num {
    font-size: 1.05rem;
  }

  .franchise-cta-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .franchise-badge-num {
    font-size: 1.3rem;
  }

  .franchise-pill {
    font-size: 0.78rem;
    padding: 0.5rem 0.9rem;
  }

  .franchise-cta-num {
    font-size: 1rem;
  }
}

/* ============================================================
   PREMIUM E-COMMERCE FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── Top Beverage Bar ── */
.footer-beverage-bar {
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
}

.footer-beverage-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bev-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 140px;
}

.footer-bev-icon {
  width: 42px;
  height: 42px;
  background: rgba(201, 160, 80, 0.1);
  border: 1px solid rgba(201, 160, 80, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.footer-bev-item:hover .footer-bev-icon {
  transform: translateY(-3px) scale(1.05);
  background: var(--gold);
  color: var(--green-deep);
}

.footer-bev-title {
  display: block;
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.footer-bev-sub {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.footer-bev-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Main Footer Grid ── */
.footer-main {
  padding: 5rem 0 3.5rem;
}

.footer-logo {
  max-width: 140px;
  height: auto;
  opacity: 0.88;
}

.footer-tagline {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.8rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(201, 160, 80, 0.3);
}

/* Col Titles */
.footer-col-title {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 25px;
  height: 1.5px;
  background: var(--gold);
}

/* Link Lists */
.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  margin-bottom: 0.7rem;
}

.footer-link-list a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
  display: inline-block;
}

.footer-link-list a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* Branch Cards */
.footer-branch-card {
  display: flex;
  gap: 12px;
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 1rem;
  transition: border-color 0.3s;
}

.footer-branch-card:hover {
  border-color: rgba(201, 160, 80, 0.3);
}

.footer-branch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold);
}

.footer-branch-name {
  font-size: 0.85rem;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.footer-branch-info {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer-branch-phone {
  font-size: 0.78rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Newsletter inside footer */
.footer-newsletter-wrap {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.footer-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.82rem;
  outline: none;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.footer-newsletter-btn {
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  padding: 0.75rem 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-newsletter-btn:hover {
  background: var(--gold-light);
}

/*Divider banner rule*/
.footer-gold-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(201,160,80,0) 0%, rgba(201,160,80,0.4) 50%, rgba(201,160,80,0) 100%);
}

/* ── Bottom Bar ── */
.footer-bottom-bar {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer-badge-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-quality-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-quality-badge i {
  color: var(--gold);
  font-size: 0.7rem;
}

.footer-credit {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-beverage-inner {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .footer-beverage-inner .footer-bev-item {
    justify-content: flex-start;
  }

  /* hide dividers on small screens, wrap handle natively */
  .footer-bev-divider {
    display: none;
  }

  .footer-beverage-inner .footer-bev-item:last-child {
    grid-column: span 2;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
  }

  .footer-main {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-badge-row {
    justify-content: center;
  }

  .footer-beverage-inner {
    grid-template-columns: 1fr;
  }

  .footer-beverage-inner .footer-bev-item:last-child {
    grid-column: span 1;
    justify-content: flex-start;
    border-top: none;
    padding-top: 0;
  }
}