/* ============================================================
   ORA Restaurant — style.css
   Converted from Tailwind + custom config
   ============================================================ */

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

/* --- CSS Variables (design tokens) --- */
:root {
  --charcoal-50:  #f5f5f4;
  --charcoal-100: #e8e7e5;
  --charcoal-200: #d1cecc;
  --charcoal-300: #b0aba7;
  --charcoal-400: #8a8480;
  --charcoal-500: #6e6762;
  --charcoal-600: #5a5350;
  --charcoal-700: #4a4442;
  --charcoal-800: #3d3836;
  --charcoal-900: #2c2826;
  --charcoal-950: #1a1715;

  --gold-50:  #fdf9ee;
  --gold-100: #f9f0d3;
  --gold-200: #f2dfa3;
  --gold-300: #e9c96a;
  --gold-400: #e2b340;
  --gold-500: #d49a22;
  --gold-600: #b97a18;
  --gold-700: #975916;
  --gold-800: #7c4618;
  --gold-900: #673b17;

  --beige-200: #f0e8d5;
  --beige-300: #e4d5b5;

  --cream:     #FAF7F2;
  --parchment: #F2EDE3;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--charcoal-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

::selection {
  background: var(--gold-200);
  color: var(--charcoal-900);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal-950); }
::-webkit-scrollbar-thumb { background: var(--gold-600); border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-500); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.divider-gold {
  width: 3rem;
  height: 1px;
  background: var(--gold-500);
  margin: 0 auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s 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; }

/* Hero animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

.anim-1 { animation: fadeUp 0.9s ease-out 0.2s both; }
.anim-2 { animation: fadeUp 0.9s ease-out 0.4s both; }
.anim-3 { animation: fadeUp 0.9s ease-out 0.6s both; }
.anim-4 { animation: fadeUp 0.9s ease-out 0.8s both; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-500);
  color: var(--charcoal-950);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: background 0.3s, box-shadow 0.3s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--gold-400);
  box-shadow: 0 8px 24px rgba(212,154,34,0.2);
}
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: background 0.3s, border-color 0.3s, transform 0.15s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline:active { transform: scale(0.97); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--charcoal-900);
  color: var(--charcoal-900);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: background 0.3s, color 0.3s, transform 0.15s;
}
.btn-outline-dark:hover { background: var(--charcoal-900); color: var(--cream); }

/* ============================================================
   NAVBAR
   ============================================================ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.5s, padding 0.5s, box-shadow 0.5s;
  padding: 1.5rem 0;
}
#navbar.scrolled {
  background: rgba(26,23,21,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(26,23,21,0.3);
  padding: 0.75rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #fff;
  text-transform: uppercase;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.navbar-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.navbar-links a:hover { color: #fff; }
.navbar-cta {
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  transition: background 0.3s, color 0.3s;
}
.navbar-cta:hover {
  background: var(--gold-500);
  color: var(--charcoal-950);
}

/* Mobile burger */
.burger {
  display: none;
  color: #fff;
  padding: 0.25rem;
  font-size: 1.5rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  background: rgba(26,23,21,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { max-height: 24rem; opacity: 1; }
.mobile-menu nav {
  padding: 1rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 767px) {
  .burger { display: block; }
  .navbar-links, .navbar-cta { display: none; }
  .mobile-menu { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */

#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/1307698/pexels-photo-1307698.jpeg?auto=compress&cs=tinysrgb&w=1920&q=90') center/cover no-repeat;
}
.hero-overlay-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,23,21,0.7), rgba(26,23,21,0.5), rgba(26,23,21,0.8));
}
.hero-overlay-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,23,21,0.4), transparent, rgba(26,23,21,0.4));
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-pretitle {
  color: var(--gold-400);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-name {
  font-family: var(--font-serif);
  color: #fff;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-size: clamp(5rem, 18vw, 14rem);
  letter-spacing: 0.15em;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-divider-line { height: 1px; width: 4rem; background: rgba(212,154,34,0.6); }
.hero-divider-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.hero-scroll:hover { color: rgba(255,255,255,0.7); }
.hero-scroll span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT
   ============================================================ */

#about {
  padding: 7rem 0 9rem;
  background: var(--cream);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}
.about-img-wrap {
  position: relative;
  order: 2;
}
@media (min-width: 1024px) { .about-img-wrap { order: 1; } }
.about-img-inner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.about-img-inner:hover img { transform: scale(1.05); }
.about-img-frame {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(226,179,64,0.3);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1rem;
  background: var(--charcoal-950);
  color: #fff;
  padding: 1.5rem 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
@media (min-width: 768px) { .about-badge { right: 1.5rem; } }
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-400);
  line-height: 1;
}
.about-badge-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}
.about-text { order: 1; }
@media (min-width: 1024px) { .about-text { order: 2; } }
.about-heading {
  font-family: var(--font-serif);
  color: var(--charcoal-900);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-top: 1rem;
  text-wrap: balance;
}
.about-body {
  font-family: var(--font-sans);
  color: var(--charcoal-600);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-top: 1.25rem;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1rem;
}
.about-value {
  border-top: 1px solid var(--beige-300);
  padding-top: 1.25rem;
}
.about-value-name {
  font-family: var(--font-serif);
  color: var(--charcoal-900);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.about-value-desc {
  font-family: var(--font-sans);
  color: var(--charcoal-500);
  font-size: 0.7rem;
  line-height: 1.5;
}

/* ============================================================
   STATS STRIP
   ============================================================ */

#stats {
  background: var(--gold-500);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value {
  font-family: var(--font-serif);
  color: var(--charcoal-950);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-sans);
  color: rgba(26,23,21,0.7);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ============================================================
   MENU
   ============================================================ */

#menu {
  padding: 7rem 0 9rem;
  background: var(--charcoal-950);
}
.menu-header { text-align: center; margin-bottom: 4rem; }
.menu-title {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-top: 1rem;
}
.menu-subtitle {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 1.5rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.menu-tab {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.4);
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  background: none;
  cursor: pointer;
}
.menu-tab:hover { color: rgba(255,255,255,0.7); }
.menu-tab.active { color: var(--gold-400); border-bottom-color: var(--gold-500); }
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .menu-grid { grid-template-columns: 1fr 1fr; } }
.menu-card {
  background: rgba(61,56,54,0.6);
  border: 1px solid var(--charcoal-800);
  padding: 1.5rem;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.menu-card:hover {
  background: rgba(74,68,66,0.8);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.menu-card-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.menu-card-name {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.menu-card:hover .menu-card-name { color: var(--gold-300); }
.menu-card-desc {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  line-height: 1.5;
}
.menu-card-price {
  font-family: var(--font-serif);
  color: var(--gold-400);
  font-size: 1.1rem;
  font-weight: 300;
  white-space: nowrap;
  padding-top: 2px;
}
.menu-card-line {
  height: 1px;
  margin-top: 1rem;
  background: linear-gradient(to right, rgba(183,122,24,0.4), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.menu-card:hover .menu-card-line { transform: scaleX(1); }
.menu-footnote {
  text-align: center;
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  margin-top: 3rem;
}
/* hide inactive panels */
.menu-panel { display: none; }
.menu-panel.active { display: grid; }

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */

#signature {
  padding: 7rem 0 9rem;
  background: var(--parchment);
  overflow: hidden;
}
.signature-header { text-align: center; margin-bottom: 4rem; }
.signature-title {
  font-family: var(--font-serif);
  color: var(--charcoal-900);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-top: 1rem;
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 1024px) { .dishes-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.dish-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.dish-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.dish-card:hover img { transform: scale(1.1); }
.dish-overlay-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,21,0.9), rgba(26,23,21,0.2), transparent);
}
.dish-overlay-hover {
  position: absolute;
  inset: 0;
  background: rgba(26,23,21,0.4);
  opacity: 0;
  transition: opacity 0.4s;
}
.dish-card:hover .dish-overlay-hover { opacity: 1; }
.dish-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
}
.dish-subtitle {
  font-family: var(--font-sans);
  color: var(--gold-400);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  opacity: 0.7;
  transition: opacity 0.4s, transform 0.4s;
  transform: translateY(4px);
}
.dish-card:hover .dish-subtitle { opacity: 1; transform: translateY(0); }
.dish-name {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.25;
}
.dish-underline {
  height: 1px;
  background: var(--gold-500);
  width: 0;
  margin-top: 0.75rem;
  transition: width 0.5s;
}
.dish-card:hover .dish-underline { width: 3rem; }

/* ============================================================
   QUOTE
   ============================================================ */

#quote {
  padding: 6rem 0 8rem;
  background: var(--parchment);
  overflow: hidden;
}
.quote-mark {
  font-family: var(--font-serif);
  color: var(--gold-500);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  user-select: none;
}
.quote-text {
  font-family: var(--font-serif);
  color: var(--charcoal-800);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin: 1rem 0;
}
.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.quote-line { height: 1px; width: 3rem; background: rgba(226,179,64,0.6); }
.quote-name {
  font-family: var(--font-sans);
  color: var(--charcoal-500);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ============================================================
   CHEF
   ============================================================ */

#chef {
  padding: 7rem 0 9rem;
  background: var(--cream);
  overflow: hidden;
}
.chef-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .chef-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}
.chef-heading {
  font-family: var(--font-serif);
  color: var(--charcoal-900);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-top: 1rem;
}
.chef-rule { height: 1px; width: 4rem; background: var(--gold-500); margin-top: 1.5rem; }
.chef-quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--charcoal-600);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 2rem;
}
.chef-body {
  font-family: var(--font-sans);
  color: var(--charcoal-600);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-top: 1.25rem;
}
.chef-achievements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.chef-ach-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.chef-ach-icon svg { width: 16px; height: 16px; color: var(--gold-600); stroke: var(--gold-600); }
.chef-ach-label {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--charcoal-900);
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}
.chef-ach-desc {
  font-family: var(--font-sans);
  color: var(--charcoal-500);
  font-size: 0.7rem;
}
.chef-img-wrap { position: relative; }
.chef-img-inner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.chef-img-inner img { width:100%; height:100%; object-fit:cover; transition: transform 0.7s; }
.chef-img-inner:hover img { transform: scale(1.05); }
.chef-img-frame { position: absolute; inset: 1rem; border: 1px solid rgba(226,179,64,0.3); pointer-events: none; }
.chef-badge {
  position: absolute;
  left: -1rem; bottom: 3rem;
  background: var(--gold-500);
  color: var(--charcoal-950);
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
@media (min-width: 768px) { .chef-badge { left: -2rem; } }
.chef-badge-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
}
.chef-badge-role {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 2px;
}

/* ============================================================
   RESERVATION
   ============================================================ */

#reservation {
  position: relative;
  padding: 7rem 0 9rem;
  overflow: hidden;
}
.res-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/260922/pexels-photo-260922.jpeg?auto=compress&cs=tinysrgb&w=1920&q=85') center/cover fixed;
}
.res-overlay { position: absolute; inset: 0; background: rgba(26,23,21,0.85); }
.res-content { position: relative; z-index: 10; }
.res-header { text-align: center; margin-bottom: 3.5rem; }
.res-title {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-top: 1rem;
}
.res-subtitle {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 1.5rem;
  line-height: 1.6;
}
.res-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .res-form-grid { grid-template-columns: 1fr 1fr; } }
.res-field {
  position: relative;
}
.res-field-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(212,154,34,0.7);
  pointer-events: none;
  width: 14px; height: 14px;
}
.res-field-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.res-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 1rem 1rem 1rem 2.5rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  color-scheme: dark;
}
.res-input::placeholder { color: rgba(255,255,255,0.3); }
.res-input:focus { border-color: var(--gold-500); }
.res-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 1rem;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}
.res-textarea::placeholder { color: rgba(255,255,255,0.3); }
.res-textarea:focus { border-color: var(--gold-500); }
.res-select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 1rem 1rem 1rem 2.5rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.res-select:focus { border-color: var(--gold-500); }
.res-select option { background: var(--charcoal-950); color: #fff; }
.res-submit { text-align: center; margin-top: 1.5rem; }
.res-submit button {
  width: 100%;
  max-width: 24rem;
  justify-content: center;
}
.res-submit button:disabled { opacity: 0.6; cursor: not-allowed; }
.res-success {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid rgba(212,154,34,0.3);
  background: rgba(44,40,38,0.6);
  backdrop-filter: blur(8px);
  display: none;
}
.res-success.show { display: block; }
.res-success-icon svg {
  width: 3rem; height: 3rem;
  color: var(--gold-400); stroke: var(--gold-400);
  margin: 0 auto 1.5rem;
  display: block;
}
.res-success-title {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.res-success-text {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 24rem;
  margin: 0 auto;
}
.res-success-email { color: var(--gold-400); }
.res-success-line { height: 1px; width: 3rem; background: var(--gold-500); margin: 1rem auto 0; }

/* ============================================================
   GALLERY
   ============================================================ */

#gallery {
  padding: 7rem 0 9rem;
  background: var(--charcoal-950);
  overflow: hidden;
}
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-title {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-top: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(26,23,21,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(26,23,21,0.5); }
.gallery-item-overlay svg {
  width: 28px; height: 28px;
  color: #fff; stroke: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; transform: translateY(0); }
/* span classes */
.span-2c { grid-column: span 2; }
.span-2r { grid-row: span 2; }
.span-2c.span-2r { grid-column: span 2; grid-row: span 2; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26,23,21,0.95);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#lightbox.show { display: flex; }
#lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.6);
  padding: 0.5rem;
  transition: color 0.3s;
  background: none; border: none; cursor: pointer;
}
#lightbox-close:hover { color: #fff; }
#lightbox-close svg { width: 28px; height: 28px; stroke: currentColor; fill: none; }
#lightbox img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
#lightbox-caption {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--charcoal-950);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; }
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 1rem; }
.footer-social {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social:hover { color: var(--gold-400); border-color: rgba(212,154,34,0.5); }
.footer-social svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.footer-section-title {
  font-family: var(--font-sans);
  color: var(--gold-500);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--gold-500); fill: none; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a,
.footer-contact-item p {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: #fff; }
.footer-hours-item { margin-bottom: 0.75rem; }
.footer-hours-day {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}
.footer-hours-time {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  margin-top: 2px;
}
.footer-hours-note {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem;
}
.footer-hours-note svg { width: 12px; height: 12px; stroke: var(--gold-500); fill: none; }
.footer-hours-note span {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
}
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 0.75rem; }
.footer-nav a {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer-nav a:hover { color: #fff; transform: translateX(4px); }
.footer-cta { margin-top: 2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; text-align: left; } }
.footer-copy, .footer-disclaimer {
  font-family: var(--font-sans);
  font-size: 0.7rem;
}
.footer-copy { color: rgba(255,255,255,0.3); }
.footer-disclaimer { color: rgba(255,255,255,0.2); font-style: italic; }

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.2rem 0.3rem;
  border-radius: 2px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  border-radius: 2px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}
.lang-btn:hover { color: rgba(255,255,255,0.75); }
.lang-btn.active {
  color: var(--gold-400);
  background: rgba(212,154,34,0.12);
}

.flag-icon {
  font-size: 0.9rem;
  line-height: 1;
}

/* Mobile lang switcher */
.lang-switcher-mobile {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.3rem 0.5rem;
  border-radius: 2px;
  flex-direction: row;
  gap: 0.5rem;
  align-self: flex-start;
}

.lang-switcher-mobile .lang-btn {
  font-size: 0.75rem;
  gap: 0.4rem;
}

@media (max-width: 767px) {
  .navbar-right { display: none; }
}
