/* ============================================
   MEDITERRANEO - Restaurant Italien Saint-Denis
   ============================================ */

:root {
  --primary: #B99C66;
  --primary-dark: #9a8050;
  --primary-light: #d4ba8a;
  --secondary: #333333;
  --dark: #1a1a1a;
  --light: #f8f5f0;
  --white: #ffffff;
  --text: #555555;
  --text-light: #888888;
  --border: #e8e0d0;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
  --radius: 4px;
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--secondary);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 600px;
  line-height: 1.8;
}

/* ---- Gold Divider ---- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin: 20px 0;
}

.gold-divider.center {
  margin: 20px auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 156, 102, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--secondary);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.header.scrolled .logo img {
  filter: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

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

.nav-link:hover {
  color: var(--primary);
}

.header.scrolled .nav-link {
  color: var(--secondary);
}

.header.scrolled .nav-link:hover {
  color: var(--primary);
}

.nav-cta {
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.header.scrolled .hamburger span {
  background: var(--secondary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/139A7901-HDR-Copie.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.72) 0%,
    rgba(26, 26, 26, 0.45) 60%,
    rgba(185, 156, 102, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(185, 156, 102, 0.2);
  border: 1px solid rgba(185, 156, 102, 0.5);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-light);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--primary-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.scroll-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(1); opacity: 1; }
  50% { opacity: 0.5; }
  100% { transform: scaleY(0.3); opacity: 0; }
}

/* ---- Info Bar ---- */
.info-bar {
  background: var(--secondary);
  padding: 0;
}

.info-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.info-item:last-child {
  border-right: none;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(185, 156, 102, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}

.info-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

/* ============================================
   SECTION 1 - Voyage Culinaire
   ============================================ */
.voyage {
  background: var(--white);
}

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

.voyage-images {
  position: relative;
  height: 580px;
}

.voyage-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

.voyage-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

.voyage-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--primary);
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow);
}

.voyage-badge strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.voyage-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.voyage-features {
  display: flex;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--light);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
}

.feature-pill svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   SECTION 2 - Saveurs & Vins
   ============================================ */
.saveurs {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.saveurs::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('../images/service-2-3.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.saveurs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.saveurs-content .eyebrow { color: var(--primary-light); }

.saveurs-content h2 {
  color: var(--white);
}

.saveurs-content .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.wine-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 36px 0;
}

.wine-card {
  background: rgba(255,255,255,0.05);
  padding: 28px 24px;
  transition: var(--transition);
}

.wine-card:hover {
  background: rgba(185, 156, 102, 0.1);
}

.wine-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(185, 156, 102, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.wine-card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.wine-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}

.wine-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.saveurs-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 520px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 2px;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* ============================================
   SECTION 3 - Pourquoi Mediterraneo
   ============================================ */
.pourquoi {
  background: var(--light);
}

.pourquoi-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.pourquoi-header .section-subtitle {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card-img {
  height: 220px;
  overflow: hidden;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover .feature-card-img img {
  transform: scale(1.08);
}

.feature-card-body {
  padding: 28px;
}

.feature-card-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: rgba(185, 156, 102, 0.12);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.feature-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card-body p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}

.pourquoi-cta {
  text-align: center;
}

/* ---- Stat Bar ---- */
.stats-band {
  background: var(--primary);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   SECTION 4 - Témoignages
   ============================================ */
.temoignages {
  background: var(--white);
}

.temoignages-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.temoignages-header .section-subtitle {
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.review-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-card.featured {
  background: var(--secondary);
}

.review-quote {
  font-size: 3rem;
  line-height: 1;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 16px;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}

.review-card.featured .review-text {
  color: rgba(255,255,255,0.8);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
}

.review-card.featured .review-name {
  color: var(--white);
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

.review-card.featured .review-date {
  color: rgba(255,255,255,0.5);
}

.review-source {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-light);
}

.review-source svg {
  width: 12px;
  height: 12px;
}

.temoignages-cta {
  text-align: center;
}

/* ============================================
   MENU APERCU
   ============================================ */
.menu-apercu {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.menu-apercu::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg-headline-menu.jpg') center/cover no-repeat;
  opacity: 0.08;
}

.menu-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.menu-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.menu-inner .section-subtitle {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 56px;
}

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

.menu-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: left;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}

.menu-item:hover {
  background: rgba(185, 156, 102, 0.08);
}

.menu-item-left {}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}

/* ============================================
   RESERVATION BAND
   ============================================ */
.reservation-band {
  background-image: url('../images/bg-headline-reservation.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 120px 0;
  text-align: center;
}

.reservation-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.75);
}

.reservation-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}

.reservation-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.reservation-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.reservation-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo img {
  height: 50px;
  filter: brightness(0) invert(0.8);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-link:hover svg {
  fill: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.5);
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-hours {
  margin-top: 16px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-hours-row .day {
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-copy a {
  color: var(--primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .voyage-grid,
  .saveurs-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .voyage-images {
    height: 400px;
    max-width: 600px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 72px 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: var(--transition);
    z-index: 1100;
  }

  .nav-menu.open {
    right: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
  }

  .nav-link:hover {
    color: var(--primary);
  }

  .hamburger {
    display: flex;
    z-index: 1200;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hamburger.open span {
    background: var(--white) !important;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
  }

  .nav-overlay.open {
    display: block;
  }

  .info-bar-inner {
    grid-template-columns: 1fr;
  }

  .info-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

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

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

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

  .wine-cards {
    grid-template-columns: 1fr;
  }

  .saveurs-gallery {
    height: 320px;
  }

  .voyage-images {
    height: 320px;
  }

  .voyage-badge {
    width: 80px;
    height: 80px;
  }

  .voyage-badge strong {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

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

  .voyage-badge {
    display: none;
  }

  .reservation-band {
    background-attachment: scroll;
  }
}
