/* ==========================================================================
   Maison du Curry — Premium Royal Navy & Luxury Gold Design System
   (Adapted directly from index 1.html)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Root Variables
   -------------------------------------------------------------------------- */
:root {
  --ink: #14243F;
  --marine: #2C5282;
  --cream: #F7F1E1;
  --ivory: #F7F1E1;
  --brass: #A9814A;
  --sky-tint: #E8EEF5;

  --color-primary: var(--brass);
  --color-primary-hover: var(--marine);
  --color-accent: var(--ink);

  --bg-dark: var(--ink);
  --bg-navy: var(--ink);
  --bg-cream: var(--cream);
  --bg-warm-white: var(--cream);
  --bg-card: var(--ink);
  --bg-card-light: var(--cream);
  --bg-surface: var(--ink);

  --text-main: var(--ink);        /* light-surface text */
  --text-light: var(--cream);     /* dark-surface text */
  --text-muted: #4A5A73;          /* muted ink, still ≥4.5:1 on cream */
  --text-muted-light: rgba(247, 241, 225, 0.7);
  --text-gold: var(--brass);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Fluid Typography Tokens (Phase 2.4) */
  --text-hero: clamp(2.5rem, 5vw, 4rem);
  --text-h2: clamp(1.8rem, 3vw, 2.5rem);
  --text-body: clamp(0.95rem, 1.5vw, 1.1rem);

  /* Elevation & Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 25px rgba(169, 129, 74, 0.35);

  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

/* --------------------------------------------------------------------------
   2. CSS Reset & Global Layout
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-warm-white);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-warm-white);
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   3. Typography & Utilities (From index 1.html)
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-main);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brass);
  background: rgba(169, 129, 74, 0.12);
  padding: 0.3rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(169, 129, 74, 0.3);
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-tag::before {
  content: '✦';
  font-size: 0.75rem;
  color: var(--brass);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  font-weight: 300;
  line-height: 1.8;
}

.text-gold { 
  color: var(--brass);
  background: linear-gradient(135deg, #D4AF37 0%, #A9814A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Dark Surface Scoping Rules */
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark h5, .on-dark h6 {
  color: var(--text-light) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.on-dark .section-title {
  color: var(--text-light) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.on-dark .section-subtitle {
  color: rgba(247, 241, 225, 0.88);
}
.on-dark .menu-item-title {
  color: var(--text-light);
}
.on-dark .menu-item-desc {
  color: rgba(247, 241, 225, 0.85);
}
.location-card .location-address,
.location-card .location-desc,
.timeline-card p {
  color: rgba(247, 241, 225, 0.9);
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons (Ultra-Luxury Metallic & Shimmer Design) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.btn:hover {
  background: var(--brass);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(169, 129, 74, 0.45);
}

.btn-primary, .btn-fill {
  background: linear-gradient(135deg, #A9814A 0%, #D4AF37 50%, #8C6735 100%);
  color: #ffffff !important;
  border-color: var(--brass);
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 6px 20px rgba(169, 129, 74, 0.35);
}

.btn-primary:hover, .btn-fill:hover {
  background: linear-gradient(135deg, #2C5282 0%, #14243F 100%);
  color: var(--cream) !important;
  border-color: rgba(169, 129, 74, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(169, 129, 74, 0.3);
}

.btn-outline {
  background: rgba(20, 36, 63, 0.3);
  border: 1.5px solid rgba(169, 129, 74, 0.5);
  color: var(--cream) !important;
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: linear-gradient(135deg, #A9814A 0%, #8C6735 100%);
  color: #ffffff !important;
  border-color: var(--brass);
  box-shadow: 0 6px 20px rgba(169, 129, 74, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6) !important;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   4. Header & Sticky Fixed Navigation (MDC-005)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   4. Header & Sticky Fixed Navigation (From index 1.html)
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), box-shadow var(--transition-normal);
  background: rgba(20, 36, 63, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(169, 129, 74, 0.25);
}

.header.scrolled {
  background: var(--ink);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 1.2rem;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-logo span {
  color: var(--brass);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 241, 225, 0.88);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--cream);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--brass);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.social-header {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(169, 129, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--brass);
  color: var(--ink);
  transform: translateY(-2px);
}

/* Language Switcher Dropdown */
.lang-switcher {
  display: flex;
  align-items: center;
}

.lang-select {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.lang-select:hover, .lang-select:focus {
  border-color: var(--brass);
  background: rgba(169, 129, 74, 0.2);
  color: var(--brass);
}

.lang-select option {
  background: var(--ink);
  color: var(--cream);
  padding: 0.5rem;
}

/* Mobile Hamburger Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 26px;
  height: 1.5px;
  background-color: var(--cream);
  transition: all var(--transition-fast);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #14243F 0%, #0D1726 100%);
  border-bottom: 2px solid var(--brass);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  gap: 0.8rem;
  transform: translateY(-120%);
  opacity: 0;
  transition: all var(--transition-normal);
  z-index: 999;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-link {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #F7F1E1 !important;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(169, 129, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all var(--transition-fast);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.mobile-link::after {
  content: '→';
  color: var(--brass);
  font-size: 1rem;
}

.mobile-link:hover, .mobile-link.active {
  color: #D4AF37 !important;
  padding-left: 0.4rem;
}

.mobile-link.active::after {
  content: '✦';
  color: var(--brass);
}

/* About Teaser Grid & Image Responsiveness */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-teaser-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(169, 129, 74, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   5. Hero Banner Section (From index 1.html)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 90vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

/* Hero Cross-Fade Slider & Video Background (UPD1-02 & Video Header) */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.1) contrast(1.05) saturate(1.1);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(13, 23, 38, 0.25) 0%, rgba(13, 23, 38, 0.15) 50%, rgba(13, 23, 38, 0.55) 100%);
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.hero-dot.active, .hero-dot:hover {
  background: var(--brass);
  border-color: var(--brass);
  transform: scale(1.25);
  box-shadow: 0 0 10px rgba(169, 129, 74, 0.6);
}

.hero-content {
  text-align: center;
  max-width: 850px;
  z-index: 3;
  padding: 3rem 1rem;
}

.hero-content .section-tag {
  background: rgba(13, 23, 38, 0.65);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(169, 129, 74, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 1.4rem;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 2.2rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   5.1 Page Hero Subpage Header System (MDC-004 & Contrast Fix)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: 10.5rem 0 4.5rem;
  background: linear-gradient(135deg, rgba(14, 24, 43, 0.92) 0%, rgba(20, 36, 63, 0.88) 50%, rgba(11, 19, 34, 0.96) 100%), url('images/hero-slide-1.png') center/cover no-repeat;
  color: var(--cream);
  text-align: center;
  border-bottom: 1px solid rgba(169, 129, 74, 0.35);
  box-shadow: inset 0 -30px 40px rgba(0, 0, 0, 0.5);
}

.page-hero .section-tag {
  color: var(--brass);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.page-hero .section-title, .page-hero .hero-title {
  color: var(--cream) !important;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem) !important;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.page-hero .section-subtitle, .page-hero .hero-description {
  color: rgba(247, 241, 225, 0.9) !important;
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.spice-note-box {
  background: rgba(20, 36, 63, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--brass);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-top: 1.8rem;
  font-size: 0.92rem;
  color: var(--brass);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.spice-note-box em {
  color: var(--cream);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   6. Menu Section & Enterprise Cards Layout (FIXED ALIGNMENT & PRICING)
   -------------------------------------------------------------------------- */
.menu-section {
  padding: 6rem 0;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 3.5rem;
  padding: 0.5rem;
  background: rgba(20, 36, 63, 0.04);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(169, 129, 74, 0.15);
}

.tab-btn {
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  border: 1.5px solid rgba(169, 129, 74, 0.35);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.tab-btn:hover {
  background: var(--marine);
  color: var(--cream);
  border-color: var(--brass);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--brass) 0%, #8C6735 100%);
  color: #ffffff !important;
  border-color: var(--brass);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(169, 129, 74, 0.45);
  transform: translateY(-2px);
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 960px;
  margin: 0 auto;
}

/* Horizontal Michelin Menu Cards (menu.html & index.html) */
.menu-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #FDFBF7 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(169, 129, 74, 0.25);
  border-left: 5px solid var(--brass);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12), 0 0 25px rgba(169, 129, 74, 0.2);
  border-color: rgba(169, 129, 74, 0.5);
  background: #FFFFFF;
}

/* Dark Surface Menu Cards (index.html featured section & dark sections) */
.on-dark .menu-card,
.featured-section .menu-card {
  background: linear-gradient(145deg, rgba(20, 36, 63, 0.95) 0%, rgba(13, 23, 38, 0.98) 100%) !important;
  border: 1.5px solid rgba(169, 129, 74, 0.4) !important;
  border-left: 5px solid var(--brass) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.on-dark .menu-card:hover,
.featured-section .menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--brass) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(169, 129, 74, 0.35) !important;
}

/* Horizontal Dish Image - Fully Visible Left Side Thumbnail */
.menu-card-img {
  width: 280px;
  min-width: 280px;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-md);
  margin-bottom: 0;
  border: 1.5px solid rgba(169, 129, 74, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.03);
}

body.menu-page .menu-card-img {
  display: none;
}

/* Official PDF menu presentation */
body.menu-page .menu-grid {
  max-width: 1080px;
  gap: 4.5rem;
}

.menu-official-note {
  max-width: 760px;
  margin: -1rem auto 3.5rem;
  padding: 1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  background: rgba(169, 129, 74, 0.09);
  border-top: 1px solid rgba(169, 129, 74, 0.4);
  border-bottom: 1px solid rgba(169, 129, 74, 0.4);
}

.menu-official-note-label,
.menu-category-kicker {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-official-note p {
  margin: 0;
  font-size: 0.9rem;
}

.menu-category-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu-category-header {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 1.75rem 2rem;
  margin-bottom: 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--ink);
  border: 1px solid rgba(169, 129, 74, 0.5);
  box-shadow: 0 15px 36px rgba(15, 28, 49, 0.18);
}

.menu-section-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.9) contrast(1.05);
}

.menu-category-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 27, 48, 0.95) 0%, rgba(14, 27, 48, 0.62) 58%, rgba(14, 27, 48, 0.2) 100%);
}

.menu-category-heading {
  position: relative;
  z-index: 1;
}

.menu-category-kicker {
  display: block;
  margin-bottom: 0.45rem;
}

.menu-category-heading h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1.05;
}

body.menu-page .menu-card {
  height: 100%;
  padding: 1.35rem 1.45rem;
  border-left-width: 3px;
}

body.menu-page .menu-card-body {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .menu-official-note {
    margin-bottom: 2.5rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  body.menu-page .menu-grid {
    gap: 3rem;
  }

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

  .menu-category-header {
    min-height: 170px;
    padding: 1.3rem;
  }
}

.menu-card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  width: 100%;
}

/* Responsive Stacking on Mobile Screens */
@media (max-width: 768px) {
  .menu-card {
    flex-direction: column;
    align-items: stretch;
    padding: 1.4rem;
    gap: 1.2rem;
  }

  .menu-card-img {
    width: 100%;
    min-width: 100%;
    height: 220px;
  }
}

/* List row: Title Left, Price Right */
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.menu-item-title {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}

.on-dark .menu-item-title,
.featured-section .menu-item-title {
  color: var(--cream) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.menu-item-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brass) !important;
  white-space: nowrap;
  text-align: right;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.menu-item-desc {
  font-size: 0.95rem;
  color: #3A4B64;
  margin: 0.4rem 0 1rem;
  flex-grow: 1;
  line-height: 1.6;
}

.on-dark .menu-item-desc,
.featured-section .menu-item-desc {
  color: rgba(247, 241, 225, 0.9) !important;
}

/* Luxury Michelin Option Variant Table Styling */
.menu-options-list {
  background: linear-gradient(145deg, rgba(20, 36, 63, 0.95) 0%, rgba(13, 23, 38, 0.98) 100%);
  border: 1.5px solid rgba(169, 129, 74, 0.4);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem 1.1rem;
  margin: 1.2rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.menu-options-list::before {
  content: '✦ Options au choix';
  position: absolute;
  top: -12px;
  left: 1.2rem;
  background: linear-gradient(135deg, var(--brass) 0%, #8C6735 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--cream);
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(169, 129, 74, 0.25);
  font-weight: 500;
}

.option-row span {
  color: var(--cream);
  font-weight: 500;
}

.option-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.option-row strong {
  color: var(--brass);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.98rem;
  background: rgba(169, 129, 74, 0.15);
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  border: 1px solid rgba(169, 129, 74, 0.3);
}

.menu-item-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.tag-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(169, 129, 74, 0.12);
  color: var(--brass);
  border: 1px solid rgba(169, 129, 74, 0.3);
}

/* --------------------------------------------------------------------------
   7. "Our Locations" Section & Page Cards (MDC-002)
   -------------------------------------------------------------------------- */
.locations-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.location-card {
  background: linear-gradient(145deg, rgba(20, 36, 63, 0.95) 0%, rgba(13, 23, 38, 0.98) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(169, 129, 74, 0.35);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  height: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.location-card:hover {
  transform: translateY(-6px);
  border-color: var(--brass);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(169, 129, 74, 0.35);
}

.location-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 1px solid rgba(169, 129, 74, 0.25);
}

.location-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.location-name {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--cream) !important;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.location-type {
  font-size: 0.82rem;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: inline-block;
  background: rgba(169, 129, 74, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(169, 129, 74, 0.25);
}

.location-address {
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500;
}

.location-desc {
  font-size: 0.95rem;
  color: rgba(247, 241, 225, 0.92);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. About & Visual Timeline Component (MDC-006)
   -------------------------------------------------------------------------- */
.about-section {
  padding: 6rem 0;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 1rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--color-primary-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 2.5rem;
  margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
}

.timeline-item:nth-child(odd) .timeline-dot { right: -8px; }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; }

.timeline-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-year {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

/* --------------------------------------------------------------------------
   9. Gallery Grid & Lightbox Popup (MDC-007)
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: var(--cream);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox-btn:hover { background: var(--color-primary); color: var(--ink); }
.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* --------------------------------------------------------------------------
   10. Reservation & Direct Contact Card (MDC-008)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   10. Reservation & Direct Contact Card (MDC-008 - Luxury High-Contrast)
   -------------------------------------------------------------------------- */
.reservation-section {
  padding: 6rem 0;
}

.reservation-card {
  background: linear-gradient(145deg, rgba(20, 36, 63, 0.95) 0%, rgba(13, 23, 38, 0.98) 100%);
  border: 1.5px solid rgba(169, 129, 74, 0.45);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  color: var(--cream);
}

.reservation-card h1, .reservation-card h2, .reservation-card h3, .reservation-card h4, .reservation-card h5, .reservation-card h6,
.reservation-card .section-title,
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark h5, .on-dark h6,
.on-dark .section-title, .location-card h1, .location-card h2, .location-card h3, .location-card h4,
.location-card .section-title, .timeline-card h1, .timeline-card h2, .timeline-card h3, .timeline-card h4,
form h1, form h2, form h3, form h4, form h5, form h6 {
  color: var(--cream) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

.reservation-card p {
  color: rgba(247, 241, 225, 0.92) !important;
  font-size: 1.02rem;
  line-height: 1.7;
}

.contact-info-list {
  list-style: none;
  margin: 1.8rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--cream) !important;
}

.contact-info-item span, .contact-info-item strong {
  color: var(--cream) !important;
}

.contact-info-item a {
  color: var(--brass) !important;
  font-weight: 600;
}

.contact-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(169, 129, 74, 0.25) 0%, rgba(20, 36, 63, 0.8) 100%);
  border: 1px solid rgba(169, 129, 74, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hours-display-box {
  background: linear-gradient(135deg, rgba(28, 45, 75, 0.85) 0%, rgba(13, 23, 38, 0.95) 100%);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  border: 1px solid rgba(169, 129, 74, 0.35);
  border-left: 4px solid var(--brass);
  color: var(--cream) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hours-display-box h4 {
  color: var(--brass) !important;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.js-opening-hours, .js-opening-hours ul, .js-opening-hours li {
  color: var(--cream) !important;
  font-size: 0.95rem;
  line-height: 1.7;
}

.js-opening-hours strong {
  color: var(--brass) !important;
  font-weight: 600;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--cream) !important;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(13, 23, 38, 0.8);
  border: 1px solid rgba(169, 129, 74, 0.35);
  border-radius: var(--radius-sm);
  color: var(--cream) !important;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control::placeholder {
  color: rgba(247, 241, 225, 0.5);
}

.form-control option {
  background: var(--ink);
  color: var(--cream);
}

.form-control:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 12px rgba(169, 129, 74, 0.3);
}

/* --------------------------------------------------------------------------
   11. Trust / Claims Row (MDC-016) - Glassmorphic AI Cyber Aesthetic
   -------------------------------------------------------------------------- */
.trust-section {
  padding: 4.5rem 0;
  background: radial-gradient(circle at 50% 30%, rgba(201, 169, 110, 0.1) 0%, rgba(17, 28, 49, 0.98) 70%), var(--bg-dark);
  position: relative;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(201, 169, 110, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.5;
}

.trust-section .container {
  max-width: 1400px;
}

.trust-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  align-items: stretch !important;
  gap: 0.5rem !important;
  width: 100% !important;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .trust-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.5rem !important;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.trust-item {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  position: relative;
  padding: 0.95rem 0.15rem !important;
  background: linear-gradient(145deg, rgba(28, 43, 74, 0.6) 0%, rgba(17, 28, 49, 0.8) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: inset 0 1px 0 0 rgba(228, 207, 160, 0.15), 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: 0;
}

.trust-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.trust-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(201, 169, 110, 0.6);
  box-shadow: inset 0 1px 0 0 rgba(228, 207, 160, 0.3),
              0 14px 30px -5px rgba(201, 169, 110, 0.3),
              0 0 20px rgba(201, 169, 110, 0.2);
  background: linear-gradient(145deg, rgba(28, 43, 74, 0.85) 0%, rgba(201, 169, 110, 0.12) 100%);
}

.trust-item:hover::after {
  opacity: 1;
}

.trust-icon {
  width: 44px;
  height: 44px;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.22) 0%, rgba(17, 28, 49, 0.4) 100%);
  border: 1px solid rgba(201, 169, 110, 0.35);
  box-shadow: inset 0 0 10px rgba(201, 169, 110, 0.2), 0 0 10px rgba(201, 169, 110, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.trust-item:hover .trust-icon {
  transform: scale(1.12) rotate(4deg);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.45) 0%, rgba(228, 207, 160, 0.3) 100%);
  border-color: rgba(228, 207, 160, 0.8);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.5), inset 0 0 12px rgba(255, 255, 255, 0.3);
}

.trust-text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.trust-item:hover .trust-text {
  color: var(--text-gold);
}

/* --------------------------------------------------------------------------
   12. Footer Section & Social Integration (MDC-010, MDC-011)
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ink);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-muted-light);
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(169, 129, 74, 0.25) 0%, rgba(20, 36, 63, 0.8) 100%);
  border: 1.5px solid rgba(169, 129, 74, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--brass) 0%, #8C6735 100%);
  color: #ffffff;
  border-color: var(--brass);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 25px rgba(169, 129, 74, 0.5);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-col-title {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--cream);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li {
  color: var(--text-muted-light);
  font-size: 0.92rem;
}

.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.92rem;
}

.footer-links a:hover { color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

/* Scroll To Top Button (MDC-015) */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
  z-index: 900;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   13. Accessibility & Touch Targets (Phase 2.2 & Phase 4)
   -------------------------------------------------------------------------- */
*:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  background: var(--brass);
  color: var(--ink);
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.btn, .tab-btn, .social-icon, .lang-select, .hero-dot {
  min-height: 44px;
  touch-action: manipulation;
}

.hamburger {
  min-width: 48px;
  min-height: 48px;
}

.honeypot {
  display: none !important;
  visibility: hidden !important;
}

/* --------------------------------------------------------------------------
   14. Comprehensive Mobile Viewport Responsive Architecture (MDC-012)
   -------------------------------------------------------------------------- */
html, body {
  overflow-x: hidden !important;
  width: 100%;
}

@media (max-width: 1280px) {
  .nav-menu {
    gap: 0.9rem;
  }
  .nav-link {
    font-size: 0.74rem;
    letter-spacing: 0.05em;
  }
  .social-header {
    display: none;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 0.75rem;
  }
  .nav-link {
    font-size: 0.72rem;
  }
  .nav-right .btn-book,
  .nav-right .btn-primary {
    display: none;
  }
}

@media (max-width: 899px) {
  .nav-menu, .social-header { 
    display: none !important; 
  }
  .hamburger { 
    display: flex !important; 
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reservation-card {
    grid-template-columns: 1fr;
    padding: 2.2rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation Header */
  .nav-container {
    padding: 0 1rem !important;
    gap: 0.5rem;
  }

  .brand-logo {
    font-size: 1.1rem !important;
    margin-right: 0.3rem !important;
    gap: 0.4rem;
  }

  .brand-logo-img {
    width: 32px !important;
    height: 32px !important;
  }

  .lang-select {
    padding: 0.3rem 0.5rem !important;
    font-size: 0.8rem !important;
  }

  .hamburger {
    margin-left: auto;
  }

  /* Container & Layout Spacing */
  .container {
    width: 100% !important;
    padding: 0 1.2rem !important;
    box-sizing: border-box !important;
  }

  .about-teaser-grid {
    grid-template-columns: 1fr !important;
    gap: 2.2rem !important;
  }

  .about-teaser-img {
    width: 100% !important;
    max-height: 320px !important;
    margin-top: 0.5rem;
  }

  .page-hero {
    padding: 7.5rem 1rem 3.5rem !important;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6.5vw, 2.5rem) !important;
    line-height: 1.2 !important;
  }

  .hero-description {
    font-size: 0.88rem !important;
    line-height: 1.6;
    margin-bottom: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column !important;
    width: 100%;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    width: 100% !important;
  }

  /* Cards & Grid Systems */
  .reservation-card {
    padding: 1.5rem 1.2rem !important;
    border-radius: var(--radius-md) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .reservation-card form {
    padding: 1.4rem 1.1rem !important;
    box-sizing: border-box !important;
  }

  .reservation-card div[style*="grid-template-columns"],
  .js-reservation-form div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .contact-info-list {
    margin-bottom: 1.2rem;
  }

  .contact-info-item {
    font-size: 0.9rem !important;
    word-break: break-word;
  }

  /* Action Buttons Full Width on Mobile */
  .reservation-card .btn,
  .contact-info-list + div .btn,
  .js-contact-form .btn,
  .js-reservation-form .btn {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Menu Cards Horizontal to Vertical Mobile Stacking */
  .menu-card {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 1.3rem !important;
    gap: 1.2rem !important;
    box-sizing: border-box !important;
  }

  .menu-card-img {
    width: 100% !important;
    min-width: 100% !important;
    height: 210px !important;
  }

  .menu-card-header {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 0.5rem;
  }

  .menu-item-title {
    font-size: 1.15rem !important;
  }

  .menu-item-price {
    font-size: 1.1rem !important;
  }

  /* Location Cards on Mobile */
  .locations-grid {
    grid-template-columns: 1fr !important;
    gap: 1.8rem;
  }

  .location-card-body {
    padding: 1.4rem !important;
  }

  /* Timeline Components */
  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; padding-left: 3rem; padding-right: 0; text-align: left !important; }
  .timeline-item:nth-child(even) { left: 0; }
  .timeline-dot { left: 12px !important; }

  /* Footer Mobile Viewport */
  .footer {
    padding: 3.5rem 0 2rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.2rem !important;
  }

  .footer-brand p {
    max-width: 100% !important;
    margin-bottom: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.8rem !important;
  }

  /* Mobile Touch Targets */
  .form-control, input, select, textarea {
    min-height: 48px !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.85rem !important;
  }

  .section-tag {
    font-size: 0.76rem !important;
    padding: 0.25rem 0.75rem !important;
  }

  .brand-logo span {
    font-size: 1rem !important;
  }
}

/* --------------------------------------------------------------------------
   15. Print Stylesheet (Phase 7.3)
   -------------------------------------------------------------------------- */

/* Real-Time Live Open/Close Status Indicator */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.hero-live-badge.is-open {
  background: rgba(37, 211, 102, 0.18);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.45);
}

.hero-live-badge.is-closed {
  background: rgba(231, 76, 60, 0.18);
  color: #FF6B6B;
  border: 1px solid rgba(231, 76, 60, 0.45);
}

.status-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.status-pulse-dot.open {
  background-color: #25D366;
  box-shadow: 0 0 8px #25D366;
  animation: pulseGreen 1.8s infinite ease-in-out;
}

.status-pulse-dot.closed {
  background-color: #FF6B6B;
  box-shadow: 0 0 8px #FF6B6B;
  animation: pulseRed 1.8s infinite ease-in-out;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulseRed {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

@media print {
  .header, .footer, .hero-section, .btn, .scroll-top-btn, .mobile-nav, .lang-switcher { display: none !important; }
  .menu-card, .location-card { break-inside: avoid; page-break-inside: avoid; }
  body { background: #ffffff !important; color: #000000 !important; }
}

/* --------------------------------------------------------------------------
   Enterprise refinement layer
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(169, 129, 74, 0.07), transparent 27rem),
    radial-gradient(circle at 95% 38%, rgba(20, 36, 63, 0.045), transparent 34rem),
    var(--cream);
}

::selection {
  background: var(--brass);
  color: #ffffff;
}

.header {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 30px rgba(7, 16, 30, 0.14);
}

.header.scrolled {
  box-shadow: 0 10px 32px rgba(7, 16, 30, 0.32);
}

.brand-logo {
  letter-spacing: -0.02em;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  letter-spacing: 0.025em;
  box-shadow: 0 10px 22px rgba(9, 20, 37, 0.16);
}

.btn:hover {
  box-shadow: 0 15px 28px rgba(9, 20, 37, 0.24);
}

.page-hero {
  isolation: isolate;
}

.page-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 74% 20%, rgba(169, 129, 74, 0.22), transparent 28%);
}

.section-tag {
  letter-spacing: 0.17em;
}

.menu-section,
.about-section,
.locations-section,
.contact-section,
.reservation-section,
.gallery-section {
  position: relative;
}

.location-card,
.reservation-card,
.contact-card,
.gallery-item {
  box-shadow: 0 12px 32px rgba(11, 25, 43, 0.08);
}

.location-card:hover,
.gallery-item:hover {
  box-shadow: 0 20px 42px rgba(11, 25, 43, 0.16);
}

.footer {
  background:
    radial-gradient(circle at 80% 0%, rgba(169, 129, 74, 0.16), transparent 24rem),
    var(--ink);
}

.footer-bottom {
  color: rgba(247, 241, 225, 0.72);
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 8.5rem !important;
  }

  .nav-link::after {
    display: none;
  }

  .btn {
    box-shadow: 0 8px 18px rgba(9, 20, 37, 0.15);
  }
}

/* ==========================================================================
   Legal Pages (Privacy Policy, Legal Notice, Cookie Policy)
   ========================================================================== */
.legal-page-body {
  background-color: #0b0f19;
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-container {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
  flex: 1;
}

.legal-title {
  font-family: var(--font-display);
  color: var(--brass);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.legal-card {
  background: rgba(20, 36, 63, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

@media (max-width: 600px) {
  .legal-card {
    padding: 1.75rem 1.25rem;
    border-radius: 14px;
  }
}

.legal-section-item {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(247, 241, 225, 0.88);
}

.legal-section-item:last-child {
  margin-bottom: 0;
}

.legal-section-item strong {
  color: var(--cream);
  font-weight: 600;
}

.legal-section-item a {
  color: var(--brass);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section-item a:hover {
  color: #fff;
}

.legal-footer {
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  background: #080b12;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-copyright {
  font-size: 0.95rem;
  color: rgba(247, 241, 225, 0.9);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.legal-designer {
  font-size: 0.9rem;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.legal-footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.legal-footer-nav a {
  font-size: 0.88rem;
  color: rgba(247, 241, 225, 0.8);
  transition: color var(--transition-fast);
}

.legal-footer-nav a:hover,
.legal-footer-nav a.active {
  color: var(--brass);
}

.btn-back-home {
  display: inline-block;
  color: var(--brass);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(169, 129, 74, 0.4);
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.btn-back-home:hover {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
  box-shadow: 0 4px 15px rgba(169, 129, 74, 0.3);
}

