/* ============================================
   MAMMA MIA — Restaurant Italien Noumea
   Design System & Complete Stylesheet
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --red: #C41E3A;
  --red-dark: #9B1830;
  --red-light: #E85D75;
  --green: #556B2F;
  --green-dark: #3D4E22;
  --green-light: #7A8F50;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE0;
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --gold-dark: #B8923E;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --dark-bg: #1A1A1A;
  --dark-surface: #242424;
  --dark-card: #2E2E2E;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizes */
  --nav-height: 80px;
  --container-max: 1280px;
  --container-padding: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(196, 30, 58, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  background-color: var(--dark-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

a:hover {
  color: var(--gold-light);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Utility ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 120px 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding: 0 24px;
}

.section__label::before,
.section__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.section__label::before { left: 0; }
.section__label::after { right: 0; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
}

.section__title em {
  font-style: italic;
  color: var(--gold);
}

.section__desc {
  font-size: 1.125rem;
  color: rgba(255, 248, 240, 0.6);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--red);
  color: white;
  border: 2px solid var(--red);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: white;
}

.btn--glow {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(196, 30, 58, 0.2); }
  50% { box-shadow: 0 0 40px rgba(196, 30, 58, 0.4), 0 0 60px rgba(196, 30, 58, 0.15); }
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255, 248, 240, 0.3);
}

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

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ---- Spinner ---- */
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

.spinner--small {
  width: 18px;
  height: 18px;
  border-width: 2px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 32px;
}

.loader__bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader__progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: var(--radius-full);
  transition: width 0.3s var(--ease-out);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

.navbar.is-scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 64px;
}

.navbar__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 1001;
}

.navbar__logo:hover {
  color: var(--cream);
}

.navbar__logo-icon {
  font-size: 1.8rem;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__link {
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 248, 240, 0.7);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
  letter-spacing: 0.01em;
}

.navbar__link:hover,
.navbar__link.is-active {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.navbar__link--cta {
  background: var(--red);
  color: white !important;
  font-weight: 600;
}

.navbar__link--cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.navbar__toggle-line {
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.navbar__toggle.is-active .navbar__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.is-active .navbar__toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__toggle.is-active .navbar__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.8) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-padding);
}

.hero__prelude {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 24px;
}

.hero__title-line {
  display: block;
  font-size: clamp(5rem, 15vw, 12rem);
  color: var(--cream);
  opacity: 0;
  transform: translateY(60px);
}

.hero__title-line--accent {
  color: var(--gold);
  font-style: italic;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: rgba(255, 248, 240, 0.7);
  margin-bottom: 48px;
  opacity: 0;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
}

.hero__hours {
  font-size: 0.8125rem;
  color: rgba(255, 248, 240, 0.4);
  letter-spacing: 0.05em;
  opacity: 0;
}

.hero__hours-sep {
  margin: 0 12px;
  color: var(--gold);
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero__scroll-text {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* ============================================
   STORY (About)
   ============================================ */
.story {
  background: var(--dark-bg);
  overflow: hidden;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story__image-wrapper {
  position: relative;
}

.story__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.story__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: transform 0.8s var(--ease-out);
}

.story__image-frame:hover .story__image {
  transform: scale(1.05);
}

.story__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

.story__content {
  padding: 20px 0;
}

.story__text {
  margin: 32px 0 48px;
}

.story__text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 248, 240, 0.7);
  margin-bottom: 16px;
}

.story__text strong {
  color: var(--gold);
  font-weight: 600;
}

.story__stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story__stat {
  text-align: center;
}

.story__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.story__stat-icon {
  font-size: 1.5rem;
  color: var(--gold);
  vertical-align: middle;
}

.story__stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 248, 240, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ============================================
   MENU
   ============================================ */
.menu {
  background: var(--dark-surface);
}

.menu__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.menu__tab {
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 248, 240, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.menu__tab:hover {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.2);
}

.menu__tab.is-active {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  min-height: 200px;
}

.menu__loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: rgba(255, 248, 240, 0.5);
}

.menu__item {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.menu__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.menu__item:hover {
  border-color: rgba(212, 168, 83, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.menu__item:hover::before {
  transform: scaleX(1);
}

.menu__item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.menu__item-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
}

.menu__item-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu__item-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 248, 240, 0.5);
  margin-bottom: 12px;
}

.menu__item-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.menu__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

.menu__badge--signature {
  background: rgba(196, 30, 58, 0.15);
  color: var(--red-light);
  border: 1px solid rgba(196, 30, 58, 0.3);
}

.menu__badge--veg {
  background: rgba(85, 107, 47, 0.15);
  color: var(--green-light);
  border: 1px solid rgba(85, 107, 47, 0.3);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--dark-bg);
  overflow: hidden;
}

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

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  color: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.lightbox__close:hover { background: rgba(255, 255, 255, 0.2); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--dark-surface);
  overflow: hidden;
}

.testimonials__rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 28px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius-full);
}

.testimonials__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonials__score {
  font-weight: 600;
  color: var(--cream);
  font-size: 0.9375rem;
}

.testimonials__count {
  font-size: 0.8125rem;
  color: rgba(255, 248, 240, 0.5);
}

.testimonials__carousel {
  position: relative;
  display: flex;
  gap: 24px;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial__card {
  flex: 0 0 100%;
  max-width: 700px;
  margin: 0 auto;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
}

.testimonial__quote-icon {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 40px;
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 20px;
}

.testimonial__star {
  font-size: 1.25rem;
  color: var(--gold);
}

.testimonial__star--empty {
  color: rgba(255, 255, 255, 0.15);
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 248, 240, 0.85);
  margin-bottom: 28px;
}

.testimonial__author {
  font-weight: 600;
  color: var(--cream);
  font-size: 1rem;
}

.testimonial__date {
  font-size: 0.8125rem;
  color: rgba(255, 248, 240, 0.4);
  margin-top: 4px;
}

.testimonials__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.testimonials__dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================
   RESERVATION
   ============================================ */
.reservation {
  background: var(--dark-bg);
  position: relative;
}

.reservation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.reservation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.reservation__desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 248, 240, 0.6);
  margin: 24px 0 40px;
}

.reservation__phone {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.reservation__phone-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, 0.1);
  border: 1px solid rgba(196, 30, 58, 0.2);
  border-radius: 50%;
  color: var(--red-light);
}

.reservation__phone-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream) !important;
  letter-spacing: 0.05em;
}

.reservation__phone-number:hover {
  color: var(--gold) !important;
}

.reservation__hours {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 28px;
}

.reservation__hours h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.reservation__hours li {
  font-size: 0.9375rem;
  color: rgba(255, 248, 240, 0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.reservation__hours li:last-child {
  border-bottom: none;
}

.reservation__hours-closed {
  color: rgba(255, 248, 240, 0.3) !important;
}

/* ---- Forms ---- */
.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 248, 240, 0.7);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.9375rem;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.form__input::placeholder {
  color: rgba(255, 248, 240, 0.3);
}

.form__input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form__input.is-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4A853' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form__select option {
  background: var(--dark-card);
  color: var(--cream);
}

.form__textarea {
  resize: vertical;
  min-height: 80px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__error {
  font-size: 0.75rem;
  color: var(--red-light);
  margin-top: 6px;
}

/* Reservation Success */
.reservation__success,
.contact__success {
  text-align: center;
  padding: 60px 40px;
  background: var(--dark-card);
  border: 1px solid rgba(85, 107, 47, 0.3);
  border-radius: var(--radius-lg);
}

.reservation__success-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: rgba(85, 107, 47, 0.15);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--green-light);
}

.reservation__success h3,
.contact__success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.reservation__success p,
.contact__success p {
  color: rgba(255, 248, 240, 0.6);
  font-size: 1.0625rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--dark-surface);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}

.contact__card-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact__card-item:last-child {
  border-bottom: none;
}

.contact__card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.1);
  border-radius: var(--radius-sm);
  color: var(--gold);
  flex-shrink: 0;
}

.contact__card-item strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 248, 240, 0.5);
  margin-bottom: 4px;
}

.contact__card-item p {
  font-size: 0.9375rem;
  color: var(--cream);
  line-height: 1.5;
}

.contact__form {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo-icon {
  font-size: 1.5rem;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer__address {
  font-size: 0.875rem;
  color: rgba(255, 248, 240, 0.5);
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer__nav li {
  margin-bottom: 8px;
}

.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255, 248, 240, 0.5);
  transition: color 0.3s;
}

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

.footer__hours li {
  font-size: 0.8125rem;
  color: rgba(255, 248, 240, 0.5);
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer__hours-closed {
  color: rgba(255, 248, 240, 0.25) !important;
}

.footer__social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: rgba(255, 248, 240, 0.6);
  transition: all 0.3s var(--ease-out);
}

.footer__social-link:hover {
  background: var(--red);
  color: white;
  transform: translateY(-2px);
}

.footer__phone a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream) !important;
}

.footer__phone a:hover {
  color: var(--gold) !important;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8125rem;
  color: rgba(255, 248, 240, 0.3);
}

.footer__credit a {
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .story__grid {
    gap: 48px;
  }

  .reservation__grid {
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }
}

/* Mobile Landscape / Small Tablet */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --container-padding: 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

  /* Navbar mobile */
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark-surface);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: right 0.4s var(--ease-out);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }

  .navbar__menu.is-open {
    right: 0;
  }

  .navbar__link {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .navbar__link--cta {
    text-align: center;
    margin-top: 16px;
  }

  /* Story */
  .story__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story__image-accent {
    display: none;
  }

  .story__stats {
    gap: 24px;
  }

  .story__stat-number {
    font-size: 2rem;
  }

  /* Menu */
  .menu__grid {
    grid-template-columns: 1fr;
  }

  .menu__tabs {
    gap: 6px;
  }

  .menu__tab {
    padding: 8px 16px;
    font-size: 0.8125rem;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  /* Reservation */
  .reservation__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonial__card {
    padding: 32px 24px;
  }

  .testimonial__text {
    font-size: 1.0625rem;
  }

  .testimonials__rating-badge {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Hero */
  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero__hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .hero__hours-sep {
    display: none;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .hero__title-line {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .reservation__phone-number {
    font-size: 1.5rem;
  }

  .story__stats {
    flex-direction: column;
    gap: 20px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}

/* ---- Animations (initial states, GSAP will animate in) ---- */
[data-animate] {
  opacity: 0;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__title-line {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- Print ---- */
@media print {
  .navbar,
  .hero__canvas,
  .hero__scroll,
  .lightbox,
  .btn,
  .loader {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    padding: 20px 0;
    break-inside: avoid;
  }
}
