/* Tzfood — Food Street Chic */
:root {
  --bg: #faf8f5;
  --bg-dark: #0f0f0f;
  --bg-warm: #1a1815;
  --gold: #d4af37;
  --gold-light: #f0c85e;
  --text: #1a1a1a;
  --text-light: #6b6b6b;
  --text-muted: #999;
  --border: #eae4dc;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all .4s cubic-bezier(.25,.8,.25,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 5vw; }
.section { padding: 120px 0; }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  background: transparent;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(15,15,15,.95);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; color: #fff; }
.logo-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--gold);
  color: #0f0f0f;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
}
.logo-text {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}
.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-menu a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

/* Bouton Réserver dans la nav */
.nav-menu a.btn-book {
  background: var(--gold);
  color: #0f0f0f;
  padding: 11px 26px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 12.5px;
}
.nav-menu a.btn-book::after { display: none; }
.nav-menu a.btn-book:hover,
.nav-menu a.btn-book.active {
  background: var(--gold-light);
  color: #0f0f0f;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212,175,55,.4);
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  width: 32px; height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}
.hero-slide.active {
  opacity: 1;
  animation: kenburns 8s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,.55) 0%, rgba(15,15,15,.35) 40%, rgba(15,15,15,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 5vw;
  animation: fadeInUp 1.2s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 620px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary { background: var(--gold); color: #0f0f0f; box-shadow: 0 6px 18px rgba(212,175,55,.3); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 34px rgba(212,175,55,.5); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-dark { background: var(--bg-dark); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

.hero-dots {
  position: absolute;
  bottom: 60px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}
.hero-dots button {
  width: 32px; height: 2px;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dots button.active { background: var(--gold); width: 48px; }

.hero-scroll {
  position: absolute;
  bottom: 30px; right: 40px;
  z-index: 3;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll svg { animation: bounce 2s ease-in-out infinite; writing-mode: horizontal-tb; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* SECTION COMMON */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.5px;
}
.section-lead {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header .section-lead { margin: 0 auto; }
.section-footer {
  text-align: center;
  margin-top: 60px;
}

/* INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.intro-image {
  overflow: hidden;
  position: relative;
}
.intro-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 1s ease;
}
.intro-image:hover img { transform: scale(1.05); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--text);
  padding-bottom: 6px;
  transition: var(--transition);
}
.link-arrow span { transition: var(--transition); }
.link-arrow:hover { color: var(--gold); border-color: var(--gold); }
.link-arrow:hover span { transform: translateX(6px); }

/* SIGNATURES CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.card {
  background: #fff;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,.08); }
.card-img { overflow: hidden; aspect-ratio: 4/3; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 28px 24px; }
.card-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* VALUES */
.values {
  background: var(--bg-warm);
  color: #fff;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
.value {
  text-align: center;
}
.value-icon {
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.value h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
}
.value p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* QUOTE */
.quote {
  text-align: center;
  padding: 100px 0;
  background: var(--bg);
}
.quote .container { max-width: 900px; }
.quote-mark {
  color: var(--gold);
  opacity: .3;
  margin-bottom: 24px;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.4;
  color: var(--text);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 28px;
}
.quote cite {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* CTA BAND */
.cta-band {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  background-image: linear-gradient(rgba(15,15,15,.85), rgba(15,15,15,.85)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 56px);
  margin-bottom: 20px;
  font-weight: 500;
}
.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}

/* FOOTER */
.site-footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.logo-footer .logo-text { color: #fff; }
.footer-tag {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  font-style: italic;
}
.site-footer h4 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 500;
}
.site-footer p, .site-footer a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.9;
  transition: var(--transition);
}
.site-footer a:hover { color: var(--gold); }
.footer-links li { margin-bottom: 4px; }
.footer-bottom {
  padding: 24px 5vw;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  letter-spacing: 1px;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
  animation: revealFallback 1s ease .5s forwards;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

/* PAGES INTERNES */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 160px 5vw 100px;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,.65), rgba(15,15,15,.85));
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero .hero-title { font-size: clamp(42px, 5.5vw, 68px); }
.page-hero .hero-subtitle { color: rgba(255,255,255,.8); }

/* MENU (services) */
.menu-section { padding: 100px 0; }
.menu-category { margin-bottom: 80px; }
.menu-category-title {
  font-family: var(--serif);
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 24px;
}
.menu-category-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--gold);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}
.menu-item {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--border);
}
.menu-item-img {
  flex-shrink: 0;
  width: 110px; height: 110px;
  overflow: hidden;
  border-radius: 4px;
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.menu-item:hover .menu-item-img img { transform: scale(1.1); }
.menu-item-body { flex: 1; }
.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.menu-item-head h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}
.menu-item-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
}
.menu-item-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ABOUT */
.about-story {
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 100px;
}
.about-grid.reverse .about-image { order: 2; }
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 24px;
  font-weight: 500;
}
.about-text p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-stats {
  background: var(--bg-warm);
  padding: 80px 0;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 60px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* CONTACT */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 500;
}
.contact-info p.contact-lead {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 16px;
}
.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #0f0f0f;
  border-radius: 50%;
}
.contact-item h4 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-item p, .contact-item a { font-size: 15px; color: var(--text-light); }
.contact-item a:hover { color: var(--gold); }

.contact-form {
  background: #fff;
  padding: 48px;
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-form .form-lead {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 14px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--bg-dark);
  color: #fff;
  border: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { background: var(--gold); color: #0f0f0f; }

.map-section {
  height: 400px;
  overflow: hidden;
}
.map-section iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(30%) contrast(1.1);
}

/* ===== RESERVATION ===== */
.reservation-section { padding: 100px 0 110px; background: var(--bg); }

/* Étapes */
.res-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 70px;
}
.res-step { display: flex; align-items: center; gap: 12px; }
.res-step-num {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold);
}
.res-step p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--text-light);
  margin: 0;
}
.res-step-line { width: 60px; height: 1px; background: var(--border); }

/* Grille principale */
.res-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: start;
}
.res-agenda h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 500;
  margin: 10px 0 30px;
  line-height: 1.15;
}

/* Calendrier */
.calendar {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.05);
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cal-month {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: .5px;
}
.cal-nav {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cal-nav:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: #0f0f0f; }
.cal-nav:disabled { opacity: .25; cursor: not-allowed; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 6px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-day {
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  background: #faf8f5;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.cal-day:hover:not(.disabled):not(.selected) {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.cal-day.selected {
  background: var(--gold);
  color: #0f0f0f;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(212,175,55,.4);
}
.cal-day.today:not(.selected) { border-color: var(--text-muted); font-weight: 600; }
.cal-day.disabled {
  background: transparent;
  color: #d8d2ca;
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-day.empty { background: transparent; cursor: default; }

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.cal-legend span {
  display: flex; align-items: center; gap: 7px;
  font-size: 11.5px;
  color: var(--text-light);
  letter-spacing: .4px;
}
.cal-legend .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-free { background: #faf8f5; border: 1px solid var(--border); }
.dot-sel { background: var(--gold); }
.dot-off { background: #e8e2da; }

/* Créneaux */
.slots-block { margin-top: 40px; }
.slots-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 18px;
}
.slots-empty {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  padding: 20px 24px;
  background: #fff;
  border: 1px dashed var(--border);
}
.slots-wrap {
  background: #fff;
  border: 1px solid var(--border);
  padding: 26px 24px 6px;
  box-shadow: 0 18px 50px rgba(0,0,0,.04);
  animation: slotsIn .45s ease both;
}
@keyframes slotsIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slots-wrap[hidden] { display: none; }

.slots-group { margin-bottom: 26px; }
.slots-group h4 {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--text-light);
  margin-bottom: 14px;
  font-weight: 500;
}
.slots-group h4 svg { color: var(--gold); }
.slots { display: flex; flex-wrap: wrap; gap: 10px; }
.slot {
  padding: 11px 20px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .25s ease;
}
.slot:hover:not(.selected) {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.slot.selected {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--gold);
  font-weight: 600;
}

/* Carte formulaire */
.res-form-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px 36px;
  box-shadow: 0 18px 50px rgba(0,0,0,.05);
  position: sticky;
  top: 100px;
}
.res-form-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* Récapitulatif */
.res-recap {
  background: var(--bg-warm);
  padding: 22px 24px;
  margin: 24px 0 30px;
}
.recap-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.recap-row:last-child { border-bottom: none; }
.recap-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,.5);
}
.recap-value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold);
  font-weight: 500;
  text-align: right;
}
.recap-value.empty { color: rgba(255,255,255,.3); font-style: italic; font-size: 15px; }

.res-form-card select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: var(--transition);
}
.res-form-card select:focus { outline: none; border-color: var(--gold); }

.res-legal {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
}

/* Infos bas de page */
.res-infos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.res-info { text-align: center; }
.res-info h4 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin: 14px 0 8px;
}
.res-info p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.res-info a { color: var(--gold); border-bottom: 1px solid transparent; transition: var(--transition); }
.res-info a:hover { border-bottom-color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .intro-grid, .about-grid, .about-grid.reverse, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-grid.reverse .about-image { order: 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-image img, .about-image img { height: 400px; }
  .res-grid { grid-template-columns: 1fr; gap: 50px; }
  .res-form-card { position: static; }
  .res-infos { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 32px;
    transition: right .4s ease;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 16px; }
  .hero { min-height: 560px; }
  .hero-scroll { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .values-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 50px; }
  .contact-form { padding: 30px 24px; }
  .menu-category-title { font-size: 32px; }
  .cta-band { background-attachment: scroll; }

  /* Réservation mobile */
  .reservation-section { padding: 60px 0 70px; }
  .res-steps { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 45px; }
  .res-step-line { width: 1px; height: 18px; margin-left: 17px; }
  .calendar { padding: 18px 14px; }
  .cal-month { font-size: 20px; }
  .cal-grid, .cal-weekdays { gap: 4px; }
  .cal-day { font-size: 13px; }
  .cal-weekdays span { font-size: 10px; letter-spacing: .5px; }
  .cal-legend { gap: 14px; }
  .res-form-card { padding: 30px 22px; }
  .slot { padding: 10px 16px; font-size: 13px; }
  .recap-value { font-size: 15px; }

  /* Bouton Réserver dans le menu mobile */
  .nav-menu a.btn-book {
    display: inline-block;
    text-align: center;
    padding: 14px 30px;
    font-size: 14px;
  }
  .nav-menu a.btn-book:hover, .nav-menu a.btn-book.active { transform: none; }
}
