/* ════════════════════════════════════════════
   FENICIOS — Lebanese Restaurant · Lisboa
   style.css
════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --cream:       #f5ebe0;
  --cream-card:  #fdf8f2;
  --dark:        #0d0400;
  --dark2:       #1a0900;
  --cedar:       #7a1a1a;
  --cedar-hover: #9b2020;
  --amber:       #c47820;
  --gold:        #c9952a;
  --gold-dim:    rgba(201,149,42,0.18);
  --text:        #1a0700;
  --text-muted:  #6b3c18;
  --nav-h:       72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
              transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
              transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
              transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view { opacity: 1; transform: none; }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }
.d5 { transition-delay: 0.50s; }
.d6 { transition-delay: 0.60s; }

/* ════════════════════════════════════════════
   ORNAMENTS & HELPERS
════════════════════════════════════════════ */
.ornament {
  display: flex; align-items: center; gap: 0.85rem;
  margin: 1.1rem 0;
}
.ornament.center { justify-content: center; }
.ornament::before, .ornament::after {
  content: ''; height: 1px;
  background: var(--gold); opacity: 0.35;
  width: 70px;
}
.ornament.center::before, .ornament.center::after { width: 50px; }
.ornament-diamond {
  width: 5px; height: 5px;
  background: var(--gold); transform: rotate(45deg); flex-shrink: 0;
}

.section-label {
  font-size: 0.59rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.7rem;
}
.section-label.light { color: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 600; line-height: 1.15; color: var(--text);
}
.section-title.light { color: #fff; }

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary {
  display: inline-block; padding: 0.9rem 2.4rem;
  background: var(--cedar); color: #fff;
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--cedar);
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--cedar-hover); border-color: var(--cedar-hover);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block; padding: 0.9rem 2.4rem;
  background: transparent; color: #fff;
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.45);
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   RESERVE FLOATING BADGE
════════════════════════════════════════════ */
#reserve-badge {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 200;
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--cedar); color: #fff;
  padding: 0.78rem 1.5rem 0.78rem 1.15rem;
  border-radius: 50px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 6px 28px rgba(122,26,26,0.52);
  animation: badge-float 3.2s ease-in-out infinite;
  white-space: nowrap;
  transition: box-shadow 0.25s;
}
#reserve-badge:hover {
  box-shadow: 0 10px 36px rgba(122,26,26,0.68);
  animation: none; transform: translateY(-4px);
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem; height: var(--nav-h);
  transition: background 0.45s, backdrop-filter 0.45s, box-shadow 0.45s;
}
#navbar.scrolled {
  background: rgba(13,4,0,0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem; font-weight: 600;
  color: #fff; letter-spacing: 0.12em;
  transition: color 0.2s;
}
.nav-logo em { color: var(--gold); font-style: normal; }

.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* Language toggle */
.lang-toggle {
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px; overflow: hidden;
}
.lang-btn {
  padding: 0.35rem 0.85rem;
  background: none; border: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active { background: var(--gold); color: var(--dark); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--dark2); padding: 2rem;
  z-index: 99;
  border-top: 1px solid rgba(201,149,42,0.15);
  border-bottom: 1px solid rgba(201,149,42,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; }
.mobile-menu a {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.mobile-lang {
  display: flex; margin-top: 2rem; width: fit-content;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 4px; overflow: hidden;
}
.mobile-lang .lang-btn { padding: 0.5rem 1.3rem; font-size: 0.68rem; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('Images/imgi_2_DSC01184-scaled.jpg') center center / cover no-repeat;
  transform: scale(1.1);
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(8,2,0,0.75) 0%,
    rgba(8,2,0,0.50) 50%,
    rgba(8,2,0,0.80) 100%
  );
}
/* Subtle diamond pattern */
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 0L52 26L26 52L0 26z' fill='%23c9952a' fill-opacity='0.04'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; text-align: center; padding: 0 2rem; z-index: 1;
}
.hero-eyebrow {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.3rem;
  opacity: 0; animation: hero-up 1s 0.2s forwards;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(4.5rem, 10vw, 9rem); font-weight: 700;
  color: #fff; line-height: 0.92; letter-spacing: 0.1em;
  opacity: 0; animation: hero-up 1s 0.4s forwards;
}
.hero-ornament {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin: 1.6rem auto;
  opacity: 0; animation: hero-up 1s 0.6s forwards;
}
.hero-ornament::before, .hero-ornament::after {
  content: ''; width: 55px; height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, rgba(201,149,42,0.65));
}
.hero-ornament::after { --dir: left; }
.hero-ornament span { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 1.8vw, 1.35rem); font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.62); letter-spacing: 0.1em;
  opacity: 0; animation: hero-up 1s 0.7s forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.6rem;
  opacity: 0; animation: hero-up 1s 0.9s forwards;
}
@keyframes hero-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.3); z-index: 1;
  opacity: 0; animation: hero-up 1s 1.2s forwards;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 12px; position: relative;
}
.scroll-mouse::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: rgba(255,255,255,0.38); border-radius: 2px;
  animation: scroll-dot 2.5s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%   { top: 5px;  opacity: 1; }
  100% { top: 19px; opacity: 0; }
}
.scroll-text { font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase; }

/* ════════════════════════════════════════════
   INFO BAR
════════════════════════════════════════════ */
#infobar {
  background: var(--dark2);
  border-bottom: 1px solid rgba(201,149,42,0.12);
  padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1rem 3rem;
}
.ib-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.71rem; color: rgba(255,255,255,0.62); letter-spacing: 0.04em;
}
.ib-item svg { flex-shrink: 0; color: var(--gold); }
.ib-item a { transition: color 0.2s; }
.ib-item a:hover { color: var(--gold); }

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
#about { background: var(--cream); padding: 7rem 4rem; }
.about-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 6rem; align-items: start;
}
.about-body p {
  font-size: 0.86rem; line-height: 2;
  color: var(--text-muted); margin-bottom: 1rem;
}
.about-body p strong { color: var(--text); }
.about-feat-cards { display: flex; flex-direction: column; gap: 0.9rem; }
.about-feat-card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.2rem 1.3rem;
  background: rgba(122,26,26,0.03);
  border: 1px solid rgba(122,26,26,0.09);
  border-left: 3px solid var(--cedar);
  transition: background 0.3s, border-left-color 0.3s, transform 0.3s;
}
.about-feat-card:hover {
  background: rgba(122,26,26,0.065);
  border-left-color: var(--amber);
  transform: translateX(3px);
}
.about-feat-icon { font-size: 1.55rem; flex-shrink: 0; line-height: 1; margin-top: 0.05rem; }
.about-feat-title {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 0.3rem;
}
.about-feat-desc { font-size: 0.75rem; line-height: 1.7; color: var(--text-muted); }

/* ════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════ */
#gallery { background: var(--dark2); padding: 6rem 4rem; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 215px 215px 215px 215px;
  gap: 5px;
}
.g-item {
  overflow: hidden; cursor: pointer; position: relative;
}
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s;
  pointer-events: none;
}
.g-item:hover::after { background: rgba(122,26,26,0.25); }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.g-item:hover img { transform: scale(1.09); }
.g-item:nth-child(1)  { grid-column: 1 / 3; grid-row: 1 / 3; }
.g-item:nth-child(2)  { grid-column: 3;     grid-row: 1; }
.g-item:nth-child(3)  { grid-column: 4;     grid-row: 1; }
.g-item:nth-child(4)  { grid-column: 3;     grid-row: 2; }
.g-item:nth-child(5)  { grid-column: 4;     grid-row: 2; }
.g-item:nth-child(6)  { grid-column: 1 / 3; grid-row: 3; }
.g-item:nth-child(7)  { grid-column: 3;     grid-row: 3; }
.g-item:nth-child(8)  { grid-column: 4;     grid-row: 3; }
.g-item:nth-child(9)  { grid-column: 1;     grid-row: 4; }
.g-item:nth-child(10) { grid-column: 2;     grid-row: 4; }
.g-item:nth-child(11) { grid-column: 3;     grid-row: 4; }
.g-item:nth-child(12) { grid-column: 4;     grid-row: 4; }

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lb-content img {
  max-width: 92vw; max-height: 88vh; object-fit: contain;
  transition: opacity 0.25s;
}
#lb-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2.2rem; line-height: 1;
  color: rgba(255,255,255,0.6); background: none; border: none;
  transition: color 0.2s;
}
#lb-close:hover { color: var(--gold); }
#lb-prev, #lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2.8rem; line-height: 1;
  color: rgba(255,255,255,0.35); background: none; border: none; padding: 1rem;
  transition: color 0.2s;
}
#lb-prev { left: 0.5rem; }
#lb-next { right: 0.5rem; }
#lb-prev:hover, #lb-next:hover { color: var(--gold); }

/* ════════════════════════════════════════════
   EXPERIENCE
════════════════════════════════════════════ */
#experience { background: var(--dark); padding: 6.5rem 4rem; }
.exp-header { text-align: center; margin-bottom: 3.5rem; }
.exp-header .section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  max-width: 780px; margin: 0.8rem auto 0; line-height: 1.3;
}
.exp-photos {
  max-width: 1140px; margin: 0 auto 3.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.exp-photo { aspect-ratio: 4/3; overflow: hidden; }
.exp-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.exp-photo:hover img { transform: scale(1.07); }
.exp-features {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  border-top: 1px solid rgba(201,149,42,0.1); padding-top: 3.5rem;
}
.exp-feature { display: flex; gap: 1.3rem; align-items: flex-start; }
.exp-feat-icon { flex-shrink: 0; color: var(--gold); margin-top: 0.1rem; }
.exp-feat-title {
  font-size: 0.59rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.exp-feat-desc { font-size: 0.78rem; line-height: 1.85; color: rgba(255,255,255,0.46); }

/* ════════════════════════════════════════════
   MENU
════════════════════════════════════════════ */
#menu-section { background: var(--cream); padding: 7rem 4rem; }
.menu-inner { max-width: 1140px; margin: 0 auto; }
.menu-header { text-align: center; margin-bottom: 3.5rem; }
.menu-header .menu-sub {
  font-size: 0.8rem; color: var(--text-muted); margin-top: 0.6rem;
  font-style: italic;
}
.menu-halal {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cedar);
  border: 1px solid rgba(122,26,26,0.2);
  padding: 0.4rem 1rem;
}

/* Tabs */
.menu-tabs {
  display: flex; flex-wrap: wrap;
  border-bottom: 2px solid rgba(122,26,26,0.1);
  margin-bottom: 3rem; gap: 0;
}
.menu-tab {
  padding: 0.8rem 1.4rem;
  font-size: 0.59rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); background: none; border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.menu-tab:hover { color: var(--cedar); }
.menu-tab.active { color: var(--cedar); border-bottom-color: var(--cedar); }

/* Tab panels */
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fade-in 0.35s ease; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* Platter card */
.menu-platter {
  position: relative;
  background: rgba(122,26,26,0.04);
  border: 1px solid rgba(122,26,26,0.12);
  border-left: 3px solid var(--cedar);
  padding: 1.8rem 2rem; margin-bottom: 1.5rem;
}
.menu-platter-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.menu-platter-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--cedar); line-height: 1.2;
}
.menu-platter-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--amber); flex-shrink: 0;
}
.menu-platter-desc {
  font-size: 0.79rem; line-height: 1.8; color: var(--text-muted);
  margin-top: 0.7rem;
}
.menu-platter-desc em { color: var(--text); font-style: normal; font-weight: 600; font-size: 0.75rem; }

/* Regular items grid */
.menu-items {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0 2.5rem;
}
.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(122,26,26,0.07);
  gap: 1.5rem;
  transition: padding-left 0.25s;
}
.menu-item:hover { padding-left: 0.5rem; }
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; font-weight: 600; color: var(--text);
  margin-bottom: 0.18rem; line-height: 1.25;
}
.menu-item-desc {
  font-size: 0.71rem; line-height: 1.65; color: var(--text-muted);
}
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--amber);
  white-space: nowrap; flex-shrink: 0; padding-top: 0.1rem;
}

/* Sub-category label */
.menu-subcat {
  font-size: 0.57rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cedar); margin: 2.5rem 0 0.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.menu-subcat::after { content: ''; flex: 1; height: 1px; background: rgba(122,26,26,0.1); }

/* VAT note */
.menu-note {
  font-size: 0.69rem; color: var(--text-muted); font-style: italic;
  margin-top: 3rem; padding: 1.1rem 1.5rem;
  border-top: 1px solid rgba(122,26,26,0.1);
}

/* ════════════════════════════════════════════
   RESERVATIONS CTA
════════════════════════════════════════════ */
#reservations-cta {
  position: relative; padding: 7rem 4rem;
  background: var(--dark2); overflow: hidden;
}
.res-bg {
  position: absolute; inset: 0;
  background-image: url('Images/imgi_7_DSC01187-scaled.jpg');
  background-size: cover; background-position: center;
  opacity: 0.12;
}
.res-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20z' fill='%23c9952a' fill-opacity='0.05'/%3E%3C/svg%3E");
}
.res-inner {
  position: relative; max-width: 680px; margin: 0 auto; text-align: center;
}
.res-inner p {
  font-size: 0.85rem; color: rgba(255,255,255,0.48);
  margin-bottom: 2.8rem; line-height: 1.9;
}
.res-btns { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════ */
#reviews { background: var(--cream); padding: 6.5rem 4rem; }
.reviews-inner { max-width: 1140px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.rating-badges-row {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: 3.5rem;
}
.rating-badge {
  display: flex; align-items: center; gap: 1.3rem;
  background: #fff; padding: 1.4rem 2.4rem;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 28px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}
.rating-badge:hover { box-shadow: 0 8px 36px rgba(0,0,0,0.1); transform: translateY(-3px); }
.badge-logo {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.badge-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; color: var(--text); line-height: 1;
}
.badge-stars { font-size: 0.9rem; letter-spacing: 0.06em; margin: 0.2rem 0; }
.badge-count { font-size: 0.68rem; color: #888; }
.badge-source { font-size: 0.58rem; color: #bbb; text-transform: uppercase; letter-spacing: 0.12em; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 3rem;
}
.review-card {
  background: #fff; padding: 2.2rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
  transition: box-shadow 0.35s, transform 0.35s;
}
.review-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
.review-stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 1.1rem; letter-spacing: 0.06em; }
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic; line-height: 1.85; color: #555;
  margin-bottom: 1.5rem;
}
.review-author { display: flex; align-items: center; gap: 0.9rem; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; flex-shrink: 0;
}
.review-name { font-size: 0.78rem; font-weight: 700; color: var(--text); }
.review-date { font-size: 0.62rem; color: #bbb; margin-top: 0.1rem; }
.reviews-cta { text-align: center; }
.btn-google {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 2.2rem;
  background: #fff; color: #555;
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
}
.btn-google:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.13); transform: translateY(-2px); }

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
#contact { background: var(--cream); padding: 7rem 4rem 0; }
.contact-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; gap: 5.5rem;
}
.hours-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.hours-table tr { border-bottom: 1px solid rgba(26,8,0,0.07); }
.hours-table td { padding: 0.9rem 0; font-size: 0.83rem; color: var(--text); }
.hours-table td:last-child { font-weight: 700; text-align: right; }
.hours-table tr.today td { color: var(--cedar); font-weight: 700; }
.hours-table tr.closed td { color: #c0b0a8; font-style: italic; }
.contact-details-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 600; color: var(--text); margin-bottom: 2rem;
}
.c-detail { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.6rem; }
.c-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(122,26,26,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-icon svg { color: var(--cedar); }
.c-label {
  font-size: 0.57rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 0.24rem;
}
.c-value { font-size: 0.83rem; color: var(--text); line-height: 1.55; }
.c-value a:hover { color: var(--cedar); }
.social-row { display: flex; gap: 0.7rem; margin-top: 2.2rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.3rem;
  border: 1px solid rgba(26,8,0,0.14);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.social-btn:hover {
  background: var(--cedar); color: #fff; border-color: var(--cedar);
  transform: translateY(-2px);
}
.map-wrap { height: 450px; overflow: hidden; margin-top: 3.5rem; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: sepia(8%) saturate(90%); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer { background: var(--dark); padding: 4.5rem 4rem; text-align: center; }
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem; font-weight: 700; color: #fff;
  letter-spacing: 0.14em; margin-bottom: 0.25rem;
}
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem; font-style: italic;
  color: rgba(255,255,255,0.3); letter-spacing: 0.06em;
}
.footer-ornament {
  display: flex; align-items: center; justify-content: center; gap: 0.85rem;
  margin: 1.4rem auto 2rem; width: fit-content;
}
.footer-ornament::before, .footer-ornament::after {
  content: ''; width: 38px; height: 1px; background: rgba(201,149,42,0.28);
}
.footer-ornament span { width: 5px; height: 5px; background: rgba(201,149,42,0.45); transform: rotate(45deg); }
.footer-links {
  display: flex; justify-content: center; gap: 2.2rem;
  list-style: none; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.footer-links a {
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.32); transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-div { width: 36px; height: 1px; background: rgba(201,149,42,0.2); margin: 0 auto 1.6rem; }
.footer-copy { font-size: 0.66rem; color: rgba(255,255,255,0.2); }
.footer-copy a { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-copy a:hover { color: var(--gold); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1060px) {
  #navbar { padding: 0 2rem; }
  .nav-links { gap: 1.4rem; }
}
@media (max-width: 900px) {
  #navbar { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .lang-toggle { display: none; }
  .hamburger { display: flex; }

  #about, #experience, #gallery, #menu-section,
  #reservations-cta, #reviews, #contact { padding: 5rem 1.5rem; }
  #contact { padding-bottom: 0; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .exp-photos { grid-template-columns: 1fr; gap: 5px; }
  .exp-photo { aspect-ratio: 16/9; }
  .exp-features { grid-template-columns: 1fr; gap: 2.2rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, 150px);
  }
  .g-item:nth-child(1)  { grid-column: 1 / 3; grid-row: 1; }
  .g-item:nth-child(2)  { grid-column: 1;     grid-row: 2; }
  .g-item:nth-child(3)  { grid-column: 2;     grid-row: 2; }
  .g-item:nth-child(4)  { grid-column: 1;     grid-row: 3; }
  .g-item:nth-child(5)  { grid-column: 2;     grid-row: 3; }
  .g-item:nth-child(6)  { grid-column: 1 / 3; grid-row: 4; }
  .g-item:nth-child(7)  { grid-column: 1;     grid-row: 5; }
  .g-item:nth-child(8)  { grid-column: 2;     grid-row: 5; }
  .g-item:nth-child(9)  { grid-column: 1;     grid-row: 6; }
  .g-item:nth-child(10) { grid-column: 2;     grid-row: 6; }
  .g-item:nth-child(11) { grid-column: 1;     grid-row: 7; }
  .g-item:nth-child(12) { grid-column: 2;     grid-row: 7; }

  .menu-tabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-items { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .map-wrap { height: 320px; margin-top: 0; }
  footer { padding: 3.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(3.5rem, 16vw, 5rem); }
  .rating-badges-row { flex-direction: column; align-items: center; }
}
