/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #B87333;
  --primary-dark: #8B5A2B;
  --primary-light: #D4A76A;
  --accent: #C49A6C;
  --dark: #1C1410;
  --dark-soft: #2A1F17;
  --gray: #7A7068;
  --gray-light: #E8E2DA;
  --light: #F7F4F0;
  --white: #FFFFFF;
  --olive: #6B7B3A;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.18);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-dark: linear-gradient(135deg, #1C1410 0%, #2A1F17 100%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
  overflow-y: auto;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

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

/* ========== FLOATING NAV ========== */
.floating-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.nav-container {
  background: transparent;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Scrolled state: frosted glass */
.floating-nav.scrolled .nav-container {
  background: rgba(28,20,16,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.65rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

/* ---- Logo ---- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo-icon {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  line-height: 1;
  transition: var(--transition);
}

.floating-nav.scrolled .nav-logo-icon {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease, transform 0.3s ease, height 0.3s ease;
}

.floating-nav.scrolled .nav-logo-img {
  height: 54px;
}

.nav-logo:hover .nav-logo-img { opacity: 0.85; transform: scale(1.03); }

/* ---- Nav links ---- */
.nav-menu {
  display: none;
  list-style: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu li a {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-nav.scrolled .nav-menu li a {
  color: rgba(255,255,255,0.75);
}

.nav-icon { font-size: 1.1rem; display: none; }

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease, background 0.4s ease;
}

.floating-nav.scrolled .nav-menu li a::after {
  background: var(--white);
}

.nav-menu li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.floating-nav.scrolled .nav-menu li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-menu li a.active {
  color: var(--white);
}

.floating-nav.scrolled .nav-menu li a.active {
  color: var(--white);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 50%;
  left: 25%;
}

/* ---- CTA ---- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: none;
  transition: var(--transition);
  text-decoration: none;
}

.floating-nav.scrolled .nav-cta {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.3);
  color: var(--white) !important;
  box-shadow: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.25) !important;
}

.floating-nav.scrolled .nav-cta:hover {
  background: rgba(255,255,255,0.25) !important;
  border-color: rgba(255,255,255,0.4);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
}

.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.floating-nav.scrolled .menu-toggle span {
  background: var(--white);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--primary); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--primary); }

@media (min-width: 1100px) {
  .nav-menu { display: flex; }
  .nav-icon { display: none; }
  .menu-toggle { display: none; }
  .mobile-only { display: none; }
  .nav-right .nav-cta { padding: 0.7rem 1.8rem; font-size: 1.05rem; }
}

@media (max-width: 1099px) {
  .nav-menu {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(28,20,16,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 0 0 16px 16px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }
  .nav-menu.active {
    opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
  }
  .nav-menu li { width: 100%; }
  .nav-menu li + li::before { display: none; }
  .nav-menu li a {
    display: flex; align-items: center; gap: 0.75rem;
    width: 100%; padding: 0.9rem 1.25rem; font-size: 1.05rem;
    border-radius: 12px; font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: none;
    letter-spacing: 0;
  }
  .nav-menu li a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
  .nav-icon { display: inline-flex; font-size: 1.2rem; }
  .nav-right .nav-cta { display: none; }
}

/* ========== HERO ========== */
.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-background {
  position: absolute;
  inset: 0;
  background: url('images/hero.png') center/cover no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,20,16,0.55) 0%, rgba(28,20,16,0.35) 40%, rgba(28,20,16,0.65) 100%),
    radial-gradient(circle at 30% 50%, rgba(184,115,51,0.15) 0%, transparent 50%);
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 2rem 4rem;
  max-width: 850px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.25);
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title-line {
  display: block;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title-line:nth-child(2) { animation-delay: 0.2s; }

.hero-title-main {
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-hero-primary {
  background: var(--white);
  color: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184,115,51,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-hero-primary:hover::after {
  left: 100%;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px);
}

.hero-info {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  cursor: pointer;
}

.info-icon { font-size: 1.6rem; }

.info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  text-align: left;
}

.info-text strong { font-size: 1rem; font-weight: 700; }
.info-text span { font-size: 0.82rem; opacity: 0.75; }

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.82rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

/* ========== TOP PICKS ========== */
.top-picks-section {
  padding: 5rem 0;
  text-align: center;
}

.top-picks-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.top-picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pick-card {
  background: var(--white);
  padding: 0;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.pick-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0 1.75rem 1.75rem;
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pick-card:hover .pick-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.pick-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.pick-image {
  height: 200px;
  overflow: hidden;
}

.pick-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.pick-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
  padding: 1.5rem 1.75rem 0;
}

.pick-card p {
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  padding: 0 1.75rem;
}

.pick-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
}

.pick-link:hover { gap: 0.8rem; }

/* ========== STATS SECTION ========== */
.stats-section {
  background: var(--dark);
  padding: 5.5rem 2rem;
  margin: 0 -1.5rem -1px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(191, 155, 94, 0.18);
  border-bottom: 1px solid rgba(191, 155, 94, 0.18);
}

/* central radial glow */
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 120% at 50% 50%, rgba(191,155,94,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.stats-decoration {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  opacity: 0.25;
}
.stats-decoration-left { left: 4%; }
.stats-decoration-right { right: 4%; }

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.stat-divider {
  width: 1px;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(191,155,94,0.5), transparent);
  flex-shrink: 0;
  margin: 0 1rem;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 2rem 3.5rem;
  border-radius: 16px;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.stat-item:hover {
  transform: translateY(-6px);
  background: rgba(191,155,94,0.05);
  box-shadow: 0 8px 40px rgba(191,155,94,0.1), inset 0 0 0 1px rgba(191,155,94,0.12);
}

/* icon ring container */
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(191,155,94,0.35);
  background: rgba(191,155,94,0.06);
  color: var(--primary-light);
  margin-bottom: 1.2rem;
  opacity: 0.85;
  transition: opacity 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.stat-item:hover .stat-icon {
  opacity: 1;
  border-color: rgba(191,155,94,0.75);
  background: rgba(191,155,94,0.12);
  box-shadow: 0 0 20px rgba(191,155,94,0.25);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 0 35px rgba(191, 155, 94, 0.35);
  transition: text-shadow 0.35s ease;
}

.stat-item:hover .stat-number {
  text-shadow: 0 0 50px rgba(191, 155, 94, 0.6);
}

.stat-number-wrap {
  display: inline-flex;
  align-items: baseline;
}

.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary-light);
  margin-left: 0.15rem;
  text-shadow: 0 0 35px rgba(191, 155, 94, 0.35);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}

.stat-item:hover .stat-label {
  color: rgba(191,155,94,0.8);
}

/* ========== MENU SECTIONS ========== */
main { padding: 1rem 0; }

.menu-section {
  margin-bottom: 4rem;
}


#antipasti {
  margin-top: 4rem;
}

.menu-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.menu-section h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

@media (min-width: 1025px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.menu-item {
  background: var(--white);
  padding: 1.5rem 1.75rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.menu-item:hover::before { height: 100%; }

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  gap: 0.75rem;
}

.item-header h3 {
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.3;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.2rem 0.65rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.ingredients {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.aic-chip {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  margin-right: 0.4rem;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  vertical-align: middle;
  text-transform: uppercase;
}

.menu-note {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: 16px;
  border: 2px dashed var(--primary-light);
  font-size: 0.9rem;
  color: var(--gray);
  text-align: center;
}

/* ========== SECTION SEPARATOR ========== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
  max-width: 300px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-light);
}

.section-divider span {
  width: 8px;
  height: 8px;
  background: var(--primary);
  transform: rotate(45deg);
  margin: 0 1rem;
  flex-shrink: 0;
}

/* ========== REVIEWS ========== */
.reviews-section {
  padding: 4rem 0;
  text-align: center;
}

.reviews-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: 20px;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}

.rating-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
}

.rating-stars {
  color: var(--primary);
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.rating-count {
  font-size: 0.8rem;
  color: var(--gray);
  display: block;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.review-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.1;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.review-card:hover::before {
  opacity: 0.25;
}

.review-stars {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--dark-soft);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px; height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-author strong { font-size: 0.88rem; display: block; }
.review-author span { font-size: 0.78rem; color: var(--gray); }

/* ========== GALLERY ========== */
.gallery-section {
  padding: 4rem 0;
  text-align: center;
}

.gallery-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,20,16,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

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

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}

/* ========== FAQ ========== */
.faq-section {
  padding: 4rem 0;
  text-align: center;
}

.faq-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--primary); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gray);
  transition: var(--transition);
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact-section {
  padding: 4rem 0;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.contact-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.88rem; margin-bottom: 2px; }
.contact-detail p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.contact-detail a { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.contact-detail a:hover { color: var(--white); }

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(184,115,51,0.3);
}

.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(184,115,51,0.5);
}

.contact-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ========== WAVE SEPARATOR ========== */
.wave-separator {
  margin-top: -2px;
  margin-bottom: -2px;
  line-height: 0;
}

.wave-separator svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  padding: 3rem 0;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto 0.5rem;
  filter: brightness(0) invert(1);
}

.footer > .footer-inner > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: rgba(255,255,255,0.45);
  padding: 0.6rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.footer-copy {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.3);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

.animate-in {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.animate-in-left {
  opacity: 0;
  transform: translateX(-40px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in-left.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.animate-in-right {
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in-right.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-content-wrapper { padding: 7rem 1.25rem 3rem; }
  .hero-info { flex-direction: column; align-items: center; }
  .info-item { width: 100%; max-width: 320px; }
  .top-picks-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 280px; justify-content: center; }
  .scroll-indicator { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }

  .stats-section { padding: 3.5rem 1rem; }
  .stats-grid { gap: 0; flex-wrap: nowrap; }
  .stat-divider {
    height: 55px;
    margin: 0 0.25rem;
    display: block;
    flex-shrink: 0;
  }
  .stats-decoration { display: none; }
  .stat-item { padding: 0.75rem 1rem; flex: 1; }
  .stat-item:hover { transform: none; background: none; box-shadow: none; }
  .stat-icon { width: 40px; height: 40px; margin-bottom: 0.8rem; }
  .stat-icon svg { width: 20px; height: 20px; }
  .stat-number { font-size: clamp(2rem, 6vw, 2.8rem); }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.08em; }
}

@media (max-width: 480px) {
  .top-picks-grid { grid-template-columns: 1fr; }
  .pick-card { padding: 0; }
  .nav-container { padding: 0.6rem 1.25rem; border-radius: 0; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-item--wide { grid-column: span 1; }

  .stat-number { font-size: clamp(1.8rem, 5.5vw, 2.2rem); }

  .back-to-top { bottom: 1.5rem; right: 1.5rem; width: 40px; height: 40px; }
}
