/* ============================================================
   CASA LIMONE — Premium Mediterranean Restaurant
   CSS Design System
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold:        #D4AF37;
  --gold-light:  #F4D03F;
  --cream:       #F5E6D3;
  --cream-dark:  #EDD5BA;
  --blue-deep:   #1B3A52;
  --blue-mid:    #2A5470;
  --olive:       #556B2F;
  --lemon:       #FFF44F;
  --charcoal:    #1A1A1A;
  --brown-warm:  #6B4226;
  --white:       #FFFFFF;
  --off-white:   #FDFAF5;
  --text-dark:   #2C2416;
  --text-mid:    #5A4A3A;
  --text-light:  #8B7B6B;
  --shadow-sm:   0 2px 12px rgba(26,26,26,0.08);
  --shadow-md:   0 8px 32px rgba(26,26,26,0.14);
  --shadow-lg:   0 20px 60px rgba(26,26,26,0.20);
  --radius:      4px;
  --radius-lg:   12px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Poppins', 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

button, input, select, textarea {
  font-family: var(--font-sans);
  font-size: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

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

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle--light {
  color: rgba(255,255,255,0.80);
}

/* ---- Layout Helpers ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header--left {
  text-align: left;
}

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
  border: none;
}

.divider--left {
  margin-left: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-outline--light {
  color: var(--white);
  border-color: var(--white);
}

.btn-outline--light:hover {
  background: var(--white);
  color: var(--blue-deep);
}

.btn-dark {
  background: var(--blue-deep);
  color: var(--white);
  border-color: var(--blue-deep);
}

.btn-dark:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(27, 58, 82, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.875rem 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 44px;
  width: auto;
}

.navbar-logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.navbar-logo-text span {
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-reserve {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-reserve:hover {
  background: var(--gold-light) !important;
  color: var(--charcoal) !important;
}

.nav-reserve::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--blue-deep);
  z-index: 1050;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 0.25rem;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}

.nav-mobile.open {
  right: 0;
}

.nav-mobile a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-mobile a.nav-reserve {
  background: var(--gold);
  color: var(--charcoal) !important;
  border-radius: var(--radius);
  border-bottom: none;
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 600;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
}

.nav-overlay.open {
  display: block;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.35) 0%,
    rgba(26,26,26,0.55) 50%,
    rgba(26,26,26,0.72) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s forwards;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.95s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition);
  animation: pulse 2s 2s infinite;
}

.hero-scroll:hover { color: var(--gold); }

.hero-scroll svg {
  animation: scrollBounce 2s infinite;
}

/* ---- Slide dots ---- */
.hero-dots {
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

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

/* ============================================================
   ABOUT / WELCOME
   ============================================================ */
.about {
  background: var(--off-white);
  padding: 100px 0;
}

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

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

.about-image-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--off-white);
  box-shadow: var(--shadow-md);
}

.about-badge {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 2rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.about-text .section-label { margin-bottom: 0.5rem; }

.about-text .section-title { margin-bottom: 1.25rem; }

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

.about-text p:last-of-type { margin-bottom: 2rem; }

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

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

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ============================================================
   CHEF STORY
   ============================================================ */
.chef-story {
  background: var(--blue-deep);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.chef-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bege_145.jpg') center/cover no-repeat;
  opacity: 0.07;
}

.chef-story-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: center;
}

.chef-portrait-wrap {
  position: relative;
}

.chef-portrait {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.chef-portrait-frame {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  pointer-events: none;
}

.chef-signature {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(27,58,82,0.92);
  backdrop-filter: blur(8px);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.chef-signature-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.chef-signature-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-top: 0.2rem;
}

.chef-text .section-label { margin-bottom: 0.5rem; }

.chef-text .section-title--light { margin-bottom: 1.5rem; }

.chef-text p {
  font-size: 1.025rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: 1.125rem;
}

.chef-text p:last-of-type { margin-bottom: 2rem; }

.chef-quote {
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(212,175,55,0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.chef-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92) !important;
  margin-bottom: 0 !important;
  line-height: 1.65;
}

/* ============================================================
   MENU PREVIEW
   ============================================================ */
.menu-preview {
  background: var(--cream);
  padding: 100px 0;
}

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

.menu-tab {
  padding: 0.625rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--cream-dark);
  border-radius: 2rem;
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

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

.dish-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

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

.dish-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

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

.dish-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}

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

.dish-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dish-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.dish-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dish-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

.dish-allergens {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.menu-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.gallery {
  background: var(--off-white);
  padding: 100px 0;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--cream-dark);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,58,82,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(27,58,82,0.45);
}

.gallery-zoom-icon {
  opacity: 0;
  color: var(--white);
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 1.25rem;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 1.25rem;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.28);
}

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

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--cream);
  padding: 100px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold-light);
  opacity: 0.5;
  margin-bottom: 1rem;
  user-select: none;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-dark);
  flex-shrink: 0;
}

.reviewer-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.reviewer-meta {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

/* ============================================================
   OPENING HOURS
   ============================================================ */
.hours-section {
  background: var(--blue-deep);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hours-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
}

.hours-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.hours-intro .section-label { margin-bottom: 0.5rem; }

.hours-intro .section-title--light { font-size: 2.25rem; margin-bottom: 1rem; }

.hours-intro p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.open-status.open {
  background: rgba(85,107,47,0.3);
  color: #90EE90;
  border: 1px solid rgba(144,238,144,0.3);
}

.open-status.closed {
  background: rgba(180,60,60,0.25);
  color: #FFB3B3;
  border: 1px solid rgba(255,179,179,0.3);
}

.open-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.open-status.open .open-status-dot {
  background: #90EE90;
  box-shadow: 0 0 6px #90EE90;
  animation: statusPulse 2s infinite;
}

.open-status.closed .open-status-dot {
  background: #FFB3B3;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.hours-row:hover {
  background: rgba(255,255,255,0.05);
}

.hours-row.today {
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
}

.hours-day {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.hours-row.today .hours-day {
  color: var(--gold);
  font-weight: 600;
}

.hours-time {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.hours-row.today .hours-time {
  color: var(--gold-light);
}

.hours-closed-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   GOOGLE MAPS
   ============================================================ */
.map-section {
  height: 480px;
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.05) brightness(0.97);
}

.map-overlay-card {
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 280px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
  z-index: 2;
}

.map-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
  color: var(--text-dark);
}

.map-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-info-line {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.map-info-line svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

/* ============================================================
   RESERVATIONS
   ============================================================ */
.reservations {
  background: var(--off-white);
  padding: 100px 0;
}

.reservations-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

.reservation-info .section-label { margin-bottom: 0.5rem; }

.reservation-info .section-title { margin-bottom: 1.25rem; }

.reservation-info p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.reservation-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.res-feature {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.res-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(212,175,55,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.reservation-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group.error input,
.form-group.error select {
  border-color: #E74C3C;
}

.form-error-msg {
  font-size: 0.78rem;
  color: #E74C3C;
  display: none;
}

.form-group.error .form-error-msg {
  display: block;
}

.form-whatsapp-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(37,211,102,0.07);
  border-radius: var(--radius);
  border: 1px solid rgba(37,211,102,0.2);
}

.form-whatsapp-note svg { color: #25D366; flex-shrink: 0; }

.form-submit { width: 100%; margin-top: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(85,107,47,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--olive);
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ============================================================
   PRIVATE EVENTS
   ============================================================ */
.private-events {
  background: var(--cream);
  padding: 100px 0;
}

.private-events-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.events-text .section-label { margin-bottom: 0.5rem; }
.events-text .section-title { margin-bottom: 1.25rem; }

.events-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.events-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.event-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.event-benefit-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.event-benefit-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.event-benefit-text span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.events-image-wrap {
  position: relative;
}

.events-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.events-image-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--blue-deep);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.events-float-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.events-float-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.footer-brand .footer-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand .footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-hours-snippet {
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
}

.footer-hours-snippet strong {
  color: rgba(255,255,255,0.75);
}

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

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

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

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

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(0,0,0,0.8);
  color: var(--white);
  font-size: 0.78rem;
  padding: 0.4rem 0.875rem;
  border-radius: 2rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
}

.whatsapp-fab:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

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

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-inner,
  .chef-story-inner,
  .reservations-inner,
  .private-events-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-accent { display: none; }
  .chef-portrait-wrap { display: flex; justify-content: center; }
  .chef-portrait { max-width: 340px; }

  .hours-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }

  .about { padding: 70px 0; }
  .chef-story { padding: 70px 0; }
  .menu-preview { padding: 70px 0; }
  .gallery { padding: 70px 0; }
  .testimonials { padding: 70px 0; }
  .hours-section { padding: 60px 0; }
  .reservations { padding: 70px 0; }
  .private-events { padding: 70px 0; }

  .menu-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .map-overlay-card {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-dots { display: none; }

  .events-image-float { display: none; }

  .about-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 1;
  }

  .reservation-form {
    padding: 1.5rem;
  }

  .whatsapp-fab {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
  }
}
