/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #c9a84c;
  --gold-lt: #e8c96a;
  --brown:   #2c1810;
  --brown-dk:#1a0e08;
  --cream:   #f5f0e8;
  --text:    #2a1a10;
  --text-lt: #6b5040;
  --white:   #ffffff;
  --radius:  8px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

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

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ─── Buttons ──────────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-nav {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--brown-dk);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── Top Bar ───────────────────────────────────────────── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--brown-dk);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: color var(--transition);
}

.top-bar-link:hover { color: var(--gold-lt); }

.top-bar-divider {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

/* ─── Navigation ───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: var(--brown-dk);
  padding: 0.7rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 0.2rem;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover { color: var(--white); }

.lang-btn.active {
  background: var(--gold);
  color: var(--brown-dk);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.nav-social-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-nav {
  padding: 0.5rem 1.3rem;
  background: var(--gold);
  color: var(--brown-dk) !important;
  border-radius: 4px;
  font-size: 0.8rem !important;
}
.btn-nav:hover { background: var(--gold-lt); color: var(--brown-dk) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1601769663075-b081e5057c0a?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,10,5,0.65) 0%, rgba(20,10,5,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ─── Features Strip ───────────────────────────────────── */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.features-strip {
  background: var(--brown-dk);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  overflow: hidden;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 1.8rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1;
  min-width: 200px;
}

@media (max-width: 768px) {
  .feature {
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
  }
  .feature:nth-child(1) { animation-delay: 0.1s; }
  .feature:nth-child(2) { animation-delay: 0.35s; }
  .feature:nth-child(3) { animation-delay: 0.6s; }

  .social-bubbles-row .bubble {
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
  }
  .social-bubbles-row .bubble:nth-child(1) { animation-delay: 0.85s; }
  .social-bubbles-row .bubble:nth-child(2) { animation-delay: 1.05s; }
  .social-bubbles-header {
    opacity: 0;
    animation: slideInLeft 0.5s ease 0.7s forwards;
  }
}

.feature:last-child { border-right: none; }

.feature h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.feature p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.social-bubbles {
  background: var(--brown-dk);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 1.2rem 1.5rem 1.6rem;
}

.social-bubbles-header {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.social-bubbles .bubble {
  display: inline-flex;
}

.social-bubbles > div,
.social-bubbles-row {
  display: flex;
  gap: 0.75rem;
}

.bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.bubble:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.bubble.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.bubble.tripadvisor {
  background: #00aa6c;
  color: #fff;
}

/* ─── Video ────────────────────────────────────────────── */
.video-section {
  padding: 7rem 0;
  background: var(--cream);
}

.video-section h2 { color: var(--brown); margin-bottom: 2.5rem; }

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  aspect-ratio: 16 / 9;
  background: var(--brown);
  cursor: pointer;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, var(--brown-dk) 0%, var(--brown) 100%);
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: var(--gold-lt);
}

.video-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── About ────────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img-1 {
  width: 75%;
  height: 75%;
  top: 0; left: 0;
}

.about-img-2 {
  width: 55%;
  height: 55%;
  bottom: 0; right: 0;
  border: 5px solid var(--cream);
}

.about-text h2 { margin-bottom: 1.5rem; color: var(--brown); }

.about-text p {
  color: var(--text-lt);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44,24,16,0.15);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.stat h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.stat p {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin: 0;
}

/* ─── Highlights ───────────────────────────────────────── */
.highlights {
  padding: 7rem 0;
  background: var(--brown);
}

.highlights .section-label { color: var(--gold-lt); }
.highlights h2 { color: var(--white); margin-bottom: 3rem; }

.highlights-carousel-wrap { display: block; }
.hl-btn { display: none; }

/* hl-track is invisible on desktop — cards become direct grid children */
.hl-track { display: contents; }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.highlight-card {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,7,3,0.88) 0%, rgba(15,7,3,0.1) 55%);
  transition: var(--transition);
}

.highlight-card:hover .highlight-overlay {
  background: linear-gradient(to top, rgba(15,7,3,0.92) 0%, rgba(15,7,3,0.4) 55%);
}

.highlight-text {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 1.8rem;
}

.highlight-text h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.highlight-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-bottom: 0.9rem;
}

.highlight-link {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.highlight-link:hover { color: var(--gold-lt); }

/* ─── Menu Section ─────────────────────────────────────── */
.menu-section {
  padding: 7rem 0;
  background: var(--cream);
}

.menu-section h2 { margin-bottom: 2.5rem; color: var(--brown); }

.menu-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.carousel-track-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-track img {
  min-width: 100%;
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,14,8,0.75);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--brown-dk);
}

.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(44,24,16,0.2);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .carousel-track img { height: auto; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.65rem 1.5rem;
  border: 2px solid rgba(44,24,16,0.2);
  border-radius: 50px;
  background: transparent;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-lt);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown-dk);
}

.menu-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.menu-panel.active { display: block; }

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

.menu-category-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.menu-note {
  font-size: 0.82rem;
  color: var(--text-lt);
  font-style: italic;
  margin-bottom: 1.5rem;
  background: rgba(201,168,76,0.1);
  border-left: 3px solid var(--gold);
  padding: 0.6rem 1rem;
  border-radius: 0 4px 4px 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.menu-grid-sm {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(44,24,16,0.08);
  transition: var(--transition);
}

.menu-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.1);
  transform: translateY(-2px);
}

.menu-item-featured {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(135deg, #fff 0%, rgba(201,168,76,0.04) 100%);
}

.menu-item-info { flex: 1; }

.menu-item-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.menu-item-info p {
  font-size: 0.82rem;
  color: var(--text-lt);
  line-height: 1.5;
}

.menu-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.veg { font-size: 0.75rem; }

.badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--brown-dk);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}

/* ─── Gallery ──────────────────────────────────────────── */
.gallery-section {
  padding: 7rem 0 0;
  background: var(--brown-dk);
}

.gallery-section h2 { color: var(--white); margin-bottom: 3rem; }
.gallery-section .section-label { color: var(--gold-lt); }

.gallery-open-btn-wrap { display: none; }

.gallery-open-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-open-btn:hover {
  background: var(--gold);
  color: var(--brown-dk);
}

@media (max-width: 768px) {
  .gallery-hide-mobile { display: none; }
  .gallery-open-btn-wrap {
    display: flex;
    justify-content: center;
    padding: 1.5rem 1rem 2rem;
    background: var(--brown-dk);
  }
}

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

.gallery-item {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.5s ease;
}

.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ─── Events ───────────────────────────────────────────── */
.events-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1663693833168-4497f177b916?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 7rem 2rem;
}

.events-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,10,5,0.88) 0%, rgba(20,10,5,0.65) 100%);
}

.events-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.events-content .section-label { color: var(--gold-lt); }

.events-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.events-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.events-features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 2.5rem;
}

.events-feature {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.events-feature p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 0 1.4rem;
}

.events-feature + .events-feature::before {
  content: '·';
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}

.events-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Testimonials ─────────────────────────────────────── */
.testimonials {
  padding: 7rem 0;
  background: var(--cream);
}

.testimonials h2 { margin-bottom: 3rem; color: var(--brown); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(44,24,16,0.08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card > p {
  color: var(--text-lt);
  font-style: italic;
  line-height: 1.7;
  font-size: 0.95rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--brown);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-lt);
}

/* ─── Contact ──────────────────────────────────────────── */
.contact-section {
  padding: 7rem 0;
  background: var(--brown);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-label { color: var(--gold); }
.contact-info h2 { color: var(--white); margin-bottom: 2rem; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}

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

.contact-icon {
  font-size: 1.4rem;
  width: 40px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.order-card {
  background: var(--brown-dk);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(201,168,76,0.2);
}

.order-card h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.order-card > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 0.92rem;
}

.order-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.order-options .btn-primary { flex: 1; text-align: center; }
.order-options .btn-secondary { flex: 1; text-align: center; }

.delivery-platforms {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.platform-btn {
  flex: 1;
  display: flex;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  background: none;
}

.platform-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.logo-badge {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

/* Wolt — sky blue, Pacifico cursive */
.wolt-badge { background: #57bde8; }
.wolt-text {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  line-height: 1;
}

/* Foodora — hot pink, bold lowercase */
.foodora-badge { background: #e8166d; }
.foodora-text {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Bolt Food — green, heavy stacked text */
.bolt-badge { background: #3bb54a; }
.bolt-text {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.1rem, 2.8vw, 1.7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  display: block;
  text-align: center;
}


.divider-text {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
  position: relative;
}

.divider-text::before,
.divider-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 25%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.divider-text::before { left: 0; }
.divider-text::after  { right: 0; }

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.services-list li {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

/* ─── Lightbox ─────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
  z-index: 1;
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover { background: var(--gold); color: var(--brown-dk); border-color: var(--gold); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ─── Footer ───────────────────────────────────────────── */
.map-section {
  width: 100%;
  line-height: 0;
}

.footer {
  background: var(--brown-dk);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-brand .logo-main { font-size: 1.4rem; }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.4); }

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin-top: 0.6rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links h5 {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding: 1.4rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}

.footer-credit {
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

.footer-credit a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-credit a:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.6);
}

/* ─── Responsive ───────────────────────────────────────── */
/* ─── Tablet (≤1100px) ──────────────────────────────────── */
@media (max-width: 1100px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); display: grid; }
  .footer-inner    { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ─── Small tablet (≤900px) ────────────────────────────── */
@media (max-width: 900px) {
  .about-grid       { grid-template-columns: 1fr; }
  .about-images     { height: 300px; order: -1; }
  .contact-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .events-features  { flex-wrap: wrap; gap: 0.5rem; }
  .events-feature + .events-feature::before { display: none; }
  .events-feature p { font-size: 0.9rem; }
}

/* ─── Mobile (≤768px) ───────────────────────────────────── */
@media (max-width: 768px) {

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--brown-dk);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    font-size: 1.1rem;
    z-index: 1000;
    padding: 2rem;
  }
  .nav-links.open   { display: flex; }
  .lang-switcher    { margin-top: 0.5rem; }
  .hamburger        { display: flex; position: relative; z-index: 1001; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Hero */
  .hero { background-attachment: scroll; }
  .hero-content h1  { font-size: 2.4rem; }
  .hero-sub         { font-size: 0.95rem; }
  .hero-btns        { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-btns a      { width: 100%; max-width: 280px; text-align: center; }

  /* Features */
  .features-strip   { flex-direction: column; }
  .feature          { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.4rem 1.5rem; }

  /* Social bubbles */
  .social-bubbles-row { flex-wrap: wrap; justify-content: center; }

  /* About */
  .about            { padding: 4rem 0; overflow: hidden; }
  .about-images     { height: 260px; }
  .about-grid       { gap: 2rem; padding: 0 1.5rem; }
  .about-text       { width: 100%; min-width: 0; overflow-wrap: break-word; word-break: break-word; }
  .about-stats      { justify-content: space-between; align-items: flex-start; padding-bottom: 2rem; }
  .stat h3          { font-size: 1.5rem; }
  .stat p           { font-size: 0.7rem; white-space: nowrap; }
  .stat:nth-child(1) { transform: translateY(0px); }
  .stat:nth-child(2) { transform: translateY(24px); }
  .stat:nth-child(3) { transform: translateY(48px) translateX(-16px); }

  /* Highlights */
  .highlights       { padding: 4rem 0; }
  .highlights-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  /* On mobile grid becomes a plain overflow viewport */
  .highlights-grid {
    display: block;
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius);
  }
  /* Track is now the real flex slider */
  .hl-track {
    display: flex;
    transition: transform 0.4s ease;
  }
  .highlight-card {
    flex: 0 0 100%;
    height: 320px;
    border-radius: var(--radius);
  }
  .hl-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .hl-btn:hover { background: var(--gold); color: var(--brown-dk); }

  /* Menu carousel */
  .menu-section     { padding: 4rem 0; }
  .carousel-prev    { left: 4px; }
  .carousel-next    { right: 4px; }
  .carousel-btn     { width: 36px; height: 36px; font-size: 1rem; }

  /* Gallery */
  .gallery-section  { padding: 4rem 0 0; }
  .gallery-grid     { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item     { height: 220px !important; }
  .gallery-item.wide { grid-column: span 1; }

  /* Events */
  .events-section   { padding: 4rem 1.5rem; background-attachment: scroll; }
  .events-features  { flex-direction: column; align-items: center; gap: 0.6rem; }
  .events-feature + .events-feature::before { display: none; }
  .events-btns      { flex-direction: column; align-items: center; }
  .events-btns a    { width: 100%; max-width: 280px; text-align: center; }

  /* Contact */
  .contact-section  { padding: 4rem 0; }
  .delivery-platforms { flex-direction: column; }
  .logo-badge       { aspect-ratio: auto; padding: 0.9rem 1.5rem; }
  .order-options    { flex-direction: column; }

  /* Footer */
  .footer-inner     { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer           { padding: 3rem 0 0; }

  /* Lightbox */
  .lightbox-prev    { left: 0.5rem; }
  .lightbox-next    { right: 0.5rem; }
}

/* ─── Small mobile (≤480px) ────────────────────────────── */
@media (max-width: 480px) {
  /* Nav */
  .logo-main        { font-size: 1.1rem; }

  /* Hero */
  .hero-content h1  { font-size: 2rem; }
  .hero-eyebrow     { font-size: 0.65rem; }


  /* Social bubbles */
  .bubble           { font-size: 0.78rem; padding: 0.5rem 1.1rem; }

  /* Delivery platforms */
  .wolt-text        { font-size: 1.1rem; }
  .foodora-text     { font-size: 0.9rem; }
  .bolt-text        { font-size: 1rem; }

  /* Events */
  .events-content h2 { font-size: 1.6rem; }
  .events-feature p  { font-size: 0.8rem; }

  /* Contact */
  .social-links     { flex-wrap: wrap; }
  .order-card       { padding: 1.5rem; }

  /* Footer */
  .footer-bottom p  { font-size: 0.7rem; }
}
