/* ============================================
   TIERRA DE FUEGO — Styles Principaux
   Cuisine au feu authentique — Nouméa, NC
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Couleurs */
  --noir-charbon: #1A1A1A;
  --rouge-braise: #8B1A1A;
  --orange-flamme: #D4630A;
  --or-latin: #C8A85C;
  --blanc-creme: #F5F0E8;
  --bleu-lagon: #2B7A9E;
  --vert-chimichurri: #4A7C3F;
  --bois-chaud: #6B3A2A;

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

  /* Espacements */
  --section-padding: clamp(4rem, 10vh, 8rem);
  --container-max: 1280px;
  --container-padding: clamp(1.5rem, 4vw, 3rem);

  /* Scroll progress (mis à jour par JS) */
  --scroll-progress: 0%;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto; /* Lenis gère le smooth scroll */
}

body {
  background: var(--noir-charbon);
  color: var(--blanc-creme);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
  cursor: none; /* Custom cursor from 3D */
}

/* Restaurer curseur par défaut sur mobile */
@media (pointer: coarse) {
  body { cursor: auto; }
}

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

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

a:hover {
  color: var(--orange-flamme);
}

button {
  font-family: inherit;
  cursor: none;
}

@media (pointer: coarse) {
  button { cursor: pointer; }
}

/* --- WebGL Container --- */
#webgl-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#webgl-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* --- Main Content Layer --- */
main {
  position: relative;
  z-index: 10;
}

section {
  position: relative;
  min-height: 100vh;
}

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

/* --- Typography --- */
.section-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.6;
  opacity: 0.85;
  max-width: 40em;
}

/* Zones de couleur gérées par le 3D */
body[data-zone="fire"] .section-title {
  color: var(--blanc-creme);
}

body[data-zone="transition"] .section-title {
  color: #D8E8EF;
}

body[data-zone="water"] .section-title {
  color: #B8D9E8;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.3s ease;
}

.site-header.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

body[data-zone="fire"] .site-header.scrolled {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body[data-zone="water"] .site-header.scrolled,
body[data-zone="transition"] .site-header.scrolled {
  background: rgba(20, 50, 70, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.logo {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or-latin);
  white-space: nowrap;
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blanc-creme);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--or-latin);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

/* CTA Réserver dans la nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, var(--orange-flamme), var(--rouge-braise));
  color: var(--blanc-creme) !important;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 99, 10, 0.4);
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blanc-creme);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-overlay a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blanc-creme);
  letter-spacing: 0.08em;
}

.mobile-nav-overlay a:hover {
  color: var(--or-latin);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem var(--container-padding);
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blanc-creme);
  line-height: 1;
  margin-bottom: 1rem;
  overflow: hidden;
}

.hero-title .char {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--or-latin);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(200, 168, 92, 0.12);
  border: 1px solid rgba(200, 168, 92, 0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--or-latin);
  white-space: nowrap;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--or-latin);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--orange-flamme), var(--rouge-braise));
  color: var(--blanc-creme);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 99, 10, 0.4);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--blanc-creme);
  border: 1px solid rgba(245, 240, 232, 0.3);
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--or-latin);
  background: rgba(200, 168, 92, 0.08);
  transform: translateY(-3px);
  color: var(--or-latin);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-latin);
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--or-latin), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ============================================
   HISTOIRE SECTION
   ============================================ */
.histoire {
  padding: var(--section-padding) 0;
  position: relative;
}

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

.histoire-text-reveal {
  overflow: hidden;
}

.histoire-text-reveal p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  clip-path: polygon(0 0, var(--scroll-progress, 0%) 0, var(--scroll-progress, 0%) 100%, 0 100%);
}

.histoire-visual {
  position: relative;
}

.histoire-img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Compteurs */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(200, 168, 92, 0.06);
  border: 1px solid rgba(200, 168, 92, 0.12);
  border-radius: 8px;
}

.stat-number {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--or-latin);
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-top: 0.25rem;
  display: block;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.menu-section .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.menu-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Horizontal scroll wrapper */
.menu-horizontal-wrapper {
  position: relative;
  overflow: hidden;
}

.menu-horizontal-track {
  display: flex;
  gap: 0;
  will-change: transform;
}

.menu-category-panel {
  min-width: 100vw;
  padding: 2rem var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.menu-category-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--or-latin);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.menu-category-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--orange-flamme);
  margin: 0.75rem auto 0;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  width: 100%;
}

.menu-item {
  padding: 1.5rem;
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(200, 168, 92, 0.1);
  border-radius: 8px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.menu-item:hover {
  border-color: rgba(200, 168, 92, 0.3);
  background: rgba(200, 168, 92, 0.06);
  transform: translateY(-4px);
}

.menu-item.featured {
  border-color: var(--orange-flamme);
  background: rgba(212, 99, 10, 0.08);
  position: relative;
  overflow: hidden;
}

.menu-item.featured::before {
  content: 'Signature';
  position: absolute;
  top: 12px;
  right: -30px;
  transform: rotate(45deg);
  background: var(--orange-flamme);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 40px;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blanc-creme);
  margin-bottom: 0.5rem;
}

.menu-item-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--or-latin);
}

/* Formule spéciale */
.formule-highlight {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 0 var(--container-padding);
}

.formule-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(212, 99, 10, 0.12), rgba(139, 26, 26, 0.12));
  border: 1px solid rgba(200, 168, 92, 0.2);
  border-radius: 12px;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.formule-card-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.formule-card-desc {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 1rem;
}

.formule-card-price {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2rem;
  color: var(--or-latin);
}

/* Menu category navigation dots */
.menu-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 0;
}

.menu-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200, 168, 92, 0.2);
  border: 1px solid rgba(200, 168, 92, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.menu-dot.active {
  background: var(--or-latin);
  transform: scale(1.3);
}

/* ============================================
   AMBIANCE / GALERIE SECTION
   ============================================ */
.ambiance {
  padding: var(--section-padding) 0;
  position: relative;
}

.ambiance .section-title {
  text-align: center;
}

.ambiance .section-subtitle {
  text-align: center;
  margin: 0 auto 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

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

.gallery-item-caption {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blanc-creme);
}

/* ============================================
   AVIS / REVIEWS SECTION
   ============================================ */
.avis {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.avis .section-title {
  text-align: center;
}

.avis-rating-summary {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.avis-platform {
  text-align: center;
}

.avis-platform-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.avis-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.avis-star {
  width: 20px;
  height: 20px;
  fill: var(--or-latin);
}

.avis-star.half {
  fill: url(#halfStarGrad);
}

.avis-star.empty {
  fill: rgba(200, 168, 92, 0.2);
}

.avis-score {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--or-latin);
  line-height: 1;
}

.avis-count {
  font-size: 0.85rem;
  opacity: 0.6;
}

.avis-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(200, 168, 92, 0.1);
  border: 1px solid rgba(200, 168, 92, 0.2);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--or-latin);
  margin-top: 0.5rem;
}

/* Carousel */
.avis-carousel {
  display: flex;
  gap: 2rem;
  overflow: visible;
  padding: 0 var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

.avis-card {
  min-width: 350px;
  max-width: 400px;
  padding: 2rem;
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(200, 168, 92, 0.12);
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.avis-card:hover {
  border-color: rgba(200, 168, 92, 0.3);
  transform: translateY(-4px);
}

.avis-card-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.avis-card-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -0.3rem;
  font-size: 2.5rem;
  color: var(--or-latin);
  line-height: 1;
}

.avis-card-source {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.avis-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.5rem;
}

.avis-card-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--or-latin);
}

/* ============================================
   RÉSERVATION SECTION
   ============================================ */
.reservation {
  padding: var(--section-padding) 0;
  position: relative;
}

.reservation .section-title {
  text-align: center;
}

.reservation .section-subtitle {
  text-align: center;
  margin: 0 auto 3rem;
}

.reservation-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(200, 168, 92, 0.12);
  border-radius: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--or-latin);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(200, 168, 92, 0.15);
  border-radius: 6px;
  color: var(--blanc-creme);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--or-latin);
  box-shadow: 0 0 0 3px rgba(200, 168, 92, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.form-group select option {
  background: var(--noir-charbon);
  color: var(--blanc-creme);
}

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

.form-error {
  font-size: 0.75rem;
  color: var(--orange-flamme);
  margin-top: 0.25rem;
  display: none;
}

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

.form-group.error input,
.form-group.error select {
  border-color: var(--orange-flamme);
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--orange-flamme), var(--rouge-braise));
  color: var(--blanc-creme);
  border: none;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 99, 10, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* Success state */
.reservation-success {
  display: none;
  text-align: center;
  padding: 3rem;
}

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

.reservation-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--orange-flamme), var(--rouge-braise));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: emberPulse 2s ease-in-out infinite;
}

@keyframes emberPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 99, 10, 0.4); }
  50% { box-shadow: 0 0 0 20px rgba(212, 99, 10, 0); }
}

.reservation-success-icon svg {
  width: 36px;
  height: 36px;
  fill: white;
}

.reservation-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.reservation-success p {
  opacity: 0.75;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-padding) 0;
  position: relative;
}

.contact .section-title {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 168, 92, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--or-latin);
}

.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--blanc-creme);
}

.contact-info-value a {
  color: var(--or-latin);
}

/* Horaires */
.horaires-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.horaires-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(200, 168, 92, 0.08);
  font-size: 0.9rem;
}

.horaires-table td:first-child {
  font-weight: 600;
  text-transform: capitalize;
  width: 120px;
}

.horaires-table td:last-child {
  opacity: 0.8;
  text-align: right;
}

/* Map */
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(0.85) contrast(1.1) saturate(0.8);
  transition: filter 0.3s ease;
}

.contact-map:hover iframe {
  filter: brightness(1) contrast(1) saturate(1);
}

/* Social links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 168, 92, 0.1);
  border: 1px solid rgba(200, 168, 92, 0.15);
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
  background: rgba(200, 168, 92, 0.2);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--or-latin);
}

/* Moyens de paiement */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.payment-chip {
  padding: 0.3rem 0.7rem;
  background: rgba(200, 168, 92, 0.06);
  border: 1px solid rgba(200, 168, 92, 0.1);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--or-latin);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(200, 168, 92, 0.1);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or-latin);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

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

.footer-bottom {
  font-size: 0.75rem;
  opacity: 0.4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer-bottom a {
  color: rgba(245, 240, 232, 0.5);
}

.footer-bottom a:hover {
  color: var(--or-latin);
}

/* ============================================
   LOADING OVERLAY
   ============================================ */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--noir-charbon);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-text {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--or-latin);
  margin-bottom: 1.5rem;
}

.loading-bar {
  width: 200px;
  height: 2px;
  background: rgba(200, 168, 92, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-flamme), var(--or-latin));
  width: 0%;
  transition: width 0.3s ease;
}

/* ============================================
   PROGRESS BAR (top of page)
   ============================================ */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(90deg, var(--orange-flamme), var(--or-latin));
  z-index: 10000;
  transition: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-gold { color: var(--or-latin); }
.text-flame { color: var(--orange-flamme); }
