@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #C0392B;
  --primary-dark: #96281B;
  --primary-glow: rgba(192, 57, 43, 0.25);
  --secondary: #E8A838;
  --secondary-light: #F5C965;
  --accent: #1a0a00;
  --bg-cream: #FDF6EE;
  --bg-white: #FFFFFF;
  --text-dark: #1A0A00;
  --text-mid: #4A3728;
  --text-light: #7A6055;
  --dark-bg: #0D0705;
  --dark-card: #1C0F09;
  --border: rgba(192, 57, 43, 0.15);

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;

  --transition: all 0.2s ease-out;
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

img { display: block; }

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Utilities ──────────────────────────────────── */
.text-center { text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}
.section-tag::before,
.section-tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--primary);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 3rem;
  border-radius: 2px;
}

/* ─── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 3px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 6px 20px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--primary-glow);
}

.btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--dark-bg);
  color: #fff;
  border-color: var(--dark-bg);
}
.btn-dark:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ─── Header ──────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
}

header.scrolled {
  background: rgba(255, 251, 246, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  padding: 14px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
header.scrolled .logo { color: var(--text-dark); }
.logo span {
  color: var(--secondary);
  font-style: italic;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
header.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover,
header.scrolled .nav-links a:hover { color: var(--primary); }

/* Language List */
.lang-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-list span {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
header.scrolled .lang-list span {
  color: rgba(0,0,0,0.2);
}
.lang-list a {
  padding-bottom: 0 !important;
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.85rem !important;
}
.lang-list a::after { display: none !important; }
.lang-list a.active, .lang-list a:hover {
  color: #fff !important;
  font-weight: 700;
}
header.scrolled .lang-list a { color: var(--text-light) !important; }
header.scrolled .lang-list a.active, header.scrolled .lang-list a:hover { color: var(--primary) !important; }

/* Contact Nav Button Specifics */
.nav-links a.btn::after { display: none !important; }
.nav-links a.btn { color: #fff !important; }
header.scrolled .nav-links a.btn { color: #fff !important; }

.mobile-toggle {
  display: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
}
header.scrolled .mobile-toggle { color: var(--text-dark); }

/* ─── Hero ──────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 4, 2, 0.78) 0%,
    rgba(30, 10, 5, 0.6) 50%,
    rgba(192, 57, 43, 0.25) 100%
  );
  z-index: 1;
}

/* Decorative flame lines */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg-cream), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  color: #fff;
  padding: 0 24px 60px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 168, 56, 0.2);
  border: 1px solid rgba(232, 168, 56, 0.5);
  color: var(--secondary-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  animation: fadeInUp 0.9s ease 0.1s backwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 em {
  color: var(--secondary-light);
  font-style: italic;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.9s ease 0.25s backwards;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeInUp 0.9s ease 0.4s backwards;
  flex-wrap: wrap;
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 50px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  padding: 20px 45px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  animation: slideUpCenter 0.9s ease 0.4s backwards;
}

@keyframes slideUpCenter {
  from { opacity: 0; transform: translate(-50%, 50px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-stat {
  text-align: center;
  color: #fff;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-light);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  display: block;
}
.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  align-self: center;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── About ──────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--bg-cream);
  position: relative;
}

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

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--secondary);
  border-radius: 12px;
  z-index: 0;
  opacity: 0.4;
}

.about-img {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-img:hover img { transform: scale(1.04); }

.about-award {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px var(--primary-glow);
}
.about-award strong {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  display: block;
  line-height: 1;
}
.about-award span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

.about-text { padding-left: 20px; }

.about-text .section-title { text-align: left; }

.about-text p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 2rem 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-white);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-feature:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.about-feature i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-feature p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ─── Menu ──────────────────────────────────── */
.menu {
  padding: 120px 0;
  background: var(--bg-white);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.menu-tab:hover,
.menu-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 5px 15px var(--primary-glow);
}

.menu-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.menu-content.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 0px;
  margin-top: 10px;
}

.menu-category-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

.menu-category-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 22px;
  font-style: italic;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  gap: 12px;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { padding-left: 6px; }

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

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  transition: var(--transition);
}
.menu-item:hover .menu-item-name { color: var(--primary); }

.menu-item-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  display: block;
  margin-top: 5px;
}

.menu-item-price {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  font-family: var(--font-heading);
}
.menu-item-price::before {
  content: 'CHF ';
  font-size: 0.6em;
  font-weight: 600;
  opacity: 0.7;
}

/* ─── Gallery ──────────────────────────────────── */
.gallery {
  padding: 120px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.gallery .section-tag { color: var(--secondary); }
.gallery .section-tag::before,
.gallery .section-tag::after { background: var(--secondary); }
.gallery .section-title { color: #fff; }
.gallery .section-divider {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: var(--dark-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(192,57,43,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
  color: #fff;
  font-size: 1.8rem;
  transform: translateY(15px);
  transition: transform 0.35s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.gallery-item:hover .gallery-overlay i { transform: translateY(0); }

.gallery-item.hidden {
  display: none;
}

/* ─── Lightbox ──────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000;
  line-height: 1;
}
.lightbox-close:hover {
  color: var(--primary);
  transform: scale(1.1);
}
.lightbox-content-wrapper {
  position: relative;
  max-width: 85%;
  max-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox-content {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox-prev, .lightbox-next {
  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;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000;
  font-size: 1.2rem;
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* ─── Reviews ──────────────────────────────────── */
.reviews {
  padding: 120px 0;
  background: var(--bg-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '\201C';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 22rem;
  color: rgba(192,57,43,0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(66,133,244,0.2);
  padding: 10px 22px;
  border-radius: 50px;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}
.google-rating-badge .g-logo {
  font-size: 1.1rem;
  color: #4285F4;
}
.google-rating-badge strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.google-rating-badge .g-stars { color: #FBBC05; font-size: 0.85rem; }
.google-rating-badge span { font-size: 0.82rem; color: var(--text-light); }

.review-slider {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 10px;
}

.review-track {
  display: flex;
  gap: 30px;
  transition: transform 0.3s ease-out;
}

.review-card {
  min-width: calc((100% - 60px) / 3);
  flex: 0 0 calc((100% - 60px) / 3);
  padding: 40px 45px;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--secondary-light);
  position: absolute;
  top: 10px;
  left: 30px;
  line-height: 1;
  opacity: 0.4;
}

.stars {
  color: #FBBC05;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  line-height: 1.7;
  font-weight: 500;
}

.reviewer-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.review-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

.review-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.review-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.review-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

/* ─── Contact ──────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  margin-top: 60px;
  align-items: start;
}

.contact-info {
  background: var(--bg-cream);
  padding: 45px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}
.info-item:last-child { margin-bottom: 0; }

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 15px var(--primary-glow);
}

.info-details h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 5px;
}
.info-details p, .info-details a {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.info-details a:hover { color: var(--primary); }

.hours-list {
  list-style: none;
  margin-top: 8px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li.closed { color: var(--primary); font-weight: 600; }
.hours-list li span:last-child { font-weight: 500; }
.form-group {
  margin-bottom: 20px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 500px;
}

/* ─── Footer ──────────────────────────────────── */
footer {
  background: var(--dark-bg);
  color: #fff;
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
}
.footer-logo span {
  color: var(--secondary);
  font-style: italic;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 2;
  color: #fff;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-links a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #fff;
  flex-wrap: wrap;
  gap: 10px;
}

/* ─── Scroll to Top ──────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 6px 20px var(--primary-glow);
  border: none;
  font-size: 1rem;
  text-decoration: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-4px); }

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .about-grid,
  .menu-grid,
  .contact-grid,
  .about-features { grid-template-columns: 1fr; }

  .about-text { padding-left: 0; }
  .about-award { right: 10px; bottom: 10px; }
  .about-img-wrap::before { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .review-track { gap: 20px; }
  .review-card {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 35px 28px;
  }

  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .footer-inner { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark-bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px;
    gap: 28px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.active { left: 0; }
  .nav-links a, header.scrolled .nav-links a { color: rgba(255,255,255,0.85) !important; font-size: 1.2rem; }
  .lang-list span, header.scrolled .lang-list span { color: rgba(255,255,255,0.4) !important; }
  .lang-list a, header.scrolled .lang-list a { color: rgba(255,255,255,0.6) !important; font-size: 1.1rem !important; }
  .lang-list a.active, header.scrolled .lang-list a.active, .lang-list a:hover, header.scrolled .lang-list a:hover { color: #fff !important; }
  .mobile-toggle { display: block; z-index: 1001; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { display: none; }
  .contact-info { padding: 28px; }
  
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}
