/* ============================================================
   TEMPTATION — CSS Principal — Design Luxe Premium
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
  --black:      #0B0B0B;
  --black-deep: #060606;
  --anthracite: #1A1A1A;
  --mid-dark:   #222222;
  --dark-card:  #161616;
  --silver:     #C0C0C0;
  --silver-light:#E8E8E8;
  --gold:       #C9A84C;
  --gold-light: #E5C97A;
  --white:      #FFFFFF;
  --white-dim:  rgba(255,255,255,0.85);
  --white-ghost:rgba(255,255,255,0.06);
  --glass-bg:   rgba(255,255,255,0.04);
  --glass-border:rgba(192,192,192,0.12);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display:'Cinzel', Georgia, serif;
  --font-sans:  'Poppins', sans-serif;
  --radius:     4px;
  --radius-lg:  12px;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glow-gold:  0 0 30px rgba(201,168,76,0.3), 0 0 60px rgba(201,168,76,0.15);
  --glow-silver:0 0 20px rgba(192,192,192,0.2);
  --shadow-card:0 20px 60px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.3);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- CUSTOM CURSOR ---- */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-outline {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--transition), height 0.3s var(--transition), opacity 0.3s;
}
.cursor-outline.hovering { width: 60px; height: 60px; opacity: 0.6; }
@media (hover: none) { .cursor-dot, .cursor-outline { display: none; } }

/* ---- PAGE LOADER ---- */
#page-loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse { 0%,100%{opacity:0.4;transform:scale(0.95)} 50%{opacity:1;transform:scale(1)} }
.loader-bar { width: 200px; height: 1px; background: rgba(192,192,192,0.2); overflow: hidden; margin: 0 auto; }
.loader-bar-fill { height: 100%; background: linear-gradient(90deg,var(--gold),var(--silver),var(--gold)); width: 0; animation: loaderFill 1.8s ease forwards; }
@keyframes loaderFill { to { width: 100%; } }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: all 0.4s var(--transition);
}
.navbar.scrolled {
  background: rgba(11,11,11,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.85rem 2rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: color 0.3s;
}
.logo-text:hover { color: var(--gold); }
.logo-line { width: 1px; height: 24px; background: rgba(192,192,192,0.3); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s, background 0.3s;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: box-shadow 0.3s, transform 0.2s !important;
}
.nav-cta:hover { box-shadow: var(--glow-gold); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.nav-hamburger span { display: block; height: 1px; background: var(--white); transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 998; }

/* ---- CONTENEUR ---- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }

/* ---- SECTIONS ---- */
.section-dark { background: var(--black); }
.section-mid { background: var(--anthracite); }
.section-light { background: var(--mid-dark); }
.section-accent { background: linear-gradient(135deg, #0f0f0f 0%, #1a1208 50%, #0f0f0f 100%); }

section { padding: 7rem 0; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 5rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle { color: rgba(255,255,255,0.55); font-size: 1rem; font-weight: 300; letter-spacing: 0.05em; }
.section-ornament { display: flex; align-items: center; gap: 0.75rem; justify-content: center; margin: 1.25rem auto; }
.section-ornament.left { justify-content: flex-start; }
.section-ornament span:not(.diamond) { flex: 1; max-width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-ornament.left span:not(.diamond):last-child { background: linear-gradient(270deg, transparent, var(--gold)); }
.section-ornament .diamond { color: var(--gold); font-size: 0.6rem; }

/* ---- BOUTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover { box-shadow: var(--glow-gold); transform: translateY(-2px); }
.btn-glow { box-shadow: 0 0 20px rgba(201,168,76,0.2); }
.btn-glow:hover { box-shadow: var(--glow-gold); }

.btn-outline {
  border: 1px solid rgba(192,192,192,0.35);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--glow-silver); }

.btn-outline-silver {
  border: 1px solid rgba(192,192,192,0.25);
  color: var(--silver-light);
  background: rgba(255,255,255,0.04);
}
.btn-outline-silver:hover { border-color: var(--silver); background: rgba(255,255,255,0.08); }

.btn-outline-white { border: 1px solid rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

.btn-large { padding: 1.1rem 2.5rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- HERO ---- */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,11,11,0.3) 0%,
    rgba(11,11,11,0.5) 40%,
    rgba(11,11,11,0.85) 90%,
    var(--black) 100%
  );
}
#particles-canvas { position: absolute; inset: 0; pointer-events: none; }

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 2rem;
  margin-top: -80px;
}
.hero-ornament { display: flex; align-items: center; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.ornament-line { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6)); }
.ornament-diamond { color: var(--gold); font-size: 0.55rem; }

.hero-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 80px rgba(201,168,76,0.3);
}
.hero-title-word { display: inline-block; }
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero-divider { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 2.5rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }

.scroll-indicator { position: relative; z-index: 2; margin-top: 1.5rem; text-align: center; }
.scroll-indicator span { display: block; font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
.scroll-mouse { width: 22px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 11px; margin: 0 auto; position: relative; overflow: hidden; }
.scroll-wheel { width: 2px; height: 8px; background: var(--gold); border-radius: 1px; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s ease-in-out infinite; }
@keyframes scrollWheel { 0%{top:5px;opacity:1} 100%{top:20px;opacity:0} }

/* Hero Stats */
.hero-stats {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; align-items: center; gap: 2.5rem;
  background: rgba(11,11,11,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius);
}
.hero-stat { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; display: inline; }
.stat-plus { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); }
.stat-label { display: block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--glass-border); }

/* ---- GLASS CARD ---- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ---- POURQUOI NOUS ---- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.why-card {
  padding: 2.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent); opacity: 0; transition: opacity 0.3s; }
.why-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.why-card:hover::before { opacity: 1; }
.why-icon { width: 56px; height: 56px; color: var(--gold); margin-bottom: 1.5rem; }
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ---- FORMULES PREVIEW ---- */
.formula-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3.5rem; }
.formula-preview-card { padding: 2.5rem; border-radius: var(--radius-lg); transition: transform 0.3s, border-color 0.3s; }
.formula-preview-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.2); }
.fp-card-header { text-align: center; margin-bottom: 2rem; }
.fp-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.fp-card-header h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.fp-card-header p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.fp-prices { margin-bottom: 2rem; }
.fp-price-row { display: flex; align-items: center; gap: 0.5rem; padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; }
.fp-price-row.featured { background: rgba(201,168,76,0.06); padding: 0.65rem 0.75rem; border-radius: 4px; border-bottom-color: transparent; }
.fp-price-name { flex: 1; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.fp-price-amount { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.fp-price-amount small { font-size: 0.7rem; color: rgba(255,255,255,0.4); font-weight: 400; }
.fp-badge { background: var(--gold); color: var(--black); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; padding: 0.15rem 0.4rem; border-radius: 2px; text-transform: uppercase; }

/* ---- GALERIE MOSAÏQUE HOME ---- */
.gallery-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto; gap: 0.5rem; margin-bottom: 3rem; }
.gallery-mosaic-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; }
.gallery-mosaic-item.item-1 { grid-column: span 2; grid-row: span 2; aspect-ratio: unset; }
.gallery-mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition); }
.gallery-mosaic-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gallery-overlay svg { width: 32px; height: 32px; color: var(--white); opacity: 0; transform: scale(0.8); transition: all 0.3s; }
.gallery-mosaic-item:hover .gallery-overlay { background: rgba(0,0,0,0.4); }
.gallery-mosaic-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }

/* ---- QUOTE SECTION ---- */
.quote-section { padding: 6rem 0; position: relative; overflow: hidden; }
.quote-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%), radial-gradient(circle at 80% 50%, rgba(192,192,192,0.04) 0%, transparent 60%); }
.quote-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.quote-mark { font-family: var(--font-serif); font-size: 8rem; color: var(--gold); opacity: 0.3; line-height: 0.5; margin-bottom: 1rem; }
blockquote { font-family: var(--font-serif); font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 2rem; }
cite { display: block; font-style: normal; }
cite strong { display: block; font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
cite span { font-size: 0.8rem; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; }

/* ---- BUFFETS FLAGS ---- */
.buffets-flags { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-bottom: 3rem; }
.flag-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  cursor: default;
}
.flag-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); background: rgba(201,168,76,0.05); }
.flag-emoji { font-size: 2.5rem; }
.flag-name { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ---- CTA SECTION ---- */
.cta-section { position: relative; padding: 8rem 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,11,11,0.88) 0%, rgba(11,11,11,0.75) 100%); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--white); margin-bottom: 1.25rem; line-height: 1.2; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-content > p { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- CTA MINI ---- */
.cta-mini { padding: 5rem 0; }
.cta-mini-content { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-mini-content h3 { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 1rem; }
.cta-mini-content p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; }

/* ---- PAGE HERO ---- */
.page-hero { position: relative; height: 60vh; min-height: 450px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 80px; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,11,0.5) 0%, rgba(11,11,11,0.8) 100%); }
.page-hero-content { position: relative; z-index: 1; text-align: center; padding: 0 2rem; }
.page-title { font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 900; letter-spacing: 0.15em; color: var(--white); margin-bottom: 1rem; }
.page-title em { font-style: italic; color: var(--gold); font-family: var(--font-serif); }
.page-subtitle { font-size: 1rem; color: rgba(255,255,255,0.6); font-style: italic; }
.page-hero-breadcrumb {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.75rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 0.5rem;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.4); }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.25); }

/* ---- FORMULES PAGE ---- */
.formulas-nav { padding: 0; position: sticky; top: 72px; z-index: 100; border-bottom: 1px solid var(--glass-border); }
.formula-tabs { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.formula-tabs::-webkit-scrollbar { display: none; }
.formula-tab { padding: 1.25rem 2rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); border-bottom: 2px solid transparent; transition: all 0.3s; white-space: nowrap; display: flex; align-items: center; gap: 0.5rem; }
.formula-tab:hover { color: var(--white); }
.formula-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-icon { font-size: 1.1rem; }

.formula-section { padding: 6rem 0; }
.formula-category-icon { font-size: 3rem; display: block; margin-bottom: 0.75rem; }
.formulas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.formula-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.formula-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.formula-card--featured { border-color: rgba(201,168,76,0.3); background: linear-gradient(135deg, rgba(201,168,76,0.06), var(--glass-bg)); }
.formula-card--featured:hover { border-color: rgba(201,168,76,0.5); box-shadow: var(--glow-gold); }
.formula-badge { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--gold); color: var(--black); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; padding: 0.25rem 0.6rem; border-radius: 2px; text-transform: uppercase; }
.formula-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.formula-price { margin-bottom: 0.75rem; }
.formula-price-amount { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.formula-price-unit { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.formula-description { font-size: 0.88rem; color: rgba(255,255,255,0.5); font-style: italic; }
.formula-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--glass-border), transparent); margin: 1.75rem 0; }
.formula-items { list-style: none; flex: 1; margin-bottom: 1.75rem; }
.formula-item { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.4rem 0; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.formula-item--option { color: rgba(201,168,76,0.8); }
.item-icon { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); margin-top: 0.15rem; }
.item-icon--option { color: var(--gold-light); }
.formula-notes { margin-bottom: 1.5rem; }
.formula-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); display: flex; align-items: flex-start; gap: 0.4rem; margin-bottom: 0.35rem; }
.formula-note svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 0.1rem; }
.formula-card-footer { margin-top: auto; }

/* ---- BUFFETS PAGE ---- */
.buffets-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.buffets-intro-flags { display: flex; flex-wrap: wrap; gap: 1rem; }
.flag-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  transition: all 0.3s;
  font-size: 0.55rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.flag-circle .flag-emoji { font-size: 1.75rem; }
.flag-circle:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); transform: scale(1.1); }

.buffet-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 4rem; box-shadow: var(--shadow-card); }
.buffet-card--reverse { direction: rtl; }
.buffet-card--reverse > * { direction: ltr; }
.buffet-image { position: relative; overflow: hidden; min-height: 400px; }
.buffet-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition); }
.buffet-card:hover .buffet-image img { transform: scale(1.05); }
.buffet-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,11,11,0.4), transparent); display: flex; align-items: flex-end; padding: 2rem; }
.buffet-big-emoji { font-size: 4rem; opacity: 0.7; }
.buffet-content { padding: 3rem; background: var(--anthracite); }
.buffet-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.buffet-country-flag { font-size: 3rem; }
.buffet-name { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--white); }
.buffet-origin { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.buffet-description { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.5rem; }
.buffet-items { list-style: none; margin-bottom: 2rem; }
.buffet-items li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.65); padding: 0.3rem 0; }
.buffet-items svg { width: 12px; height: 12px; flex-shrink: 0; color: var(--gold); margin-top: 0.2rem; }

/* ---- GALERIE PAGE ---- */
.gallery-section { padding: 4rem 0 6rem; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.gallery-masonry { columns: 4 250px; gap: 0.75rem; }
.gallery-item { break-inside: avoid; margin-bottom: 0.75rem; position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: flex-end;
  padding: 1.25rem;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.45); }
.gallery-item-info { transform: translateY(100%); transition: transform 0.3s; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.gallery-item:hover .gallery-item-info { transform: translateY(0); }
.gallery-item-info p { font-size: 0.82rem; color: var(--white); font-style: italic; }
.gallery-item-info svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9998; opacity: 0; visibility: hidden; transition: all 0.3s; }
.lightbox-bg.open { opacity: 1; visibility: visible; }
.lightbox-content { position: relative; z-index: 10000; max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.8); }
.lightbox-caption { margin-top: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); font-style: italic; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer; z-index: 10001; transition: all 0.2s;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ---- À PROPOS PAGE ---- */
.about-story { padding: 7rem 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-story-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.about-img-main img { width: 100%; height: 450px; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: -2rem; right: -2rem; width: 200px; border-radius: var(--radius-lg); overflow: hidden; border: 4px solid var(--black); box-shadow: var(--shadow-card); }
.about-img-secondary img { width: 100%; height: 150px; object-fit: cover; }
.about-experience-badge {
  position: absolute; top: 2rem; left: -2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--glow-gold);
}
.badge-number { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; }
.badge-text { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.inline-quote { border-left: 2px solid var(--gold); padding-left: 1.5rem; margin: 1.5rem 0; font-family: var(--font-serif); font-style: italic; color: rgba(255,255,255,0.7); }
.inline-quote cite { display: block; font-style: normal; font-size: 0.85rem; color: var(--gold); margin-top: 0.5rem; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.value-card { padding: 2.5rem 2rem; border: 1px solid var(--glass-border); border-radius: var(--radius-lg); background: var(--glass-bg); transition: all 0.3s; }
.value-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.value-number { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: rgba(201,168,76,0.15); line-height: 1; margin-bottom: 1rem; }
.value-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

.about-stats { padding: 5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-card { text-align: center; padding: 2.5rem; border: 1px solid var(--glass-border); border-radius: var(--radius-lg); background: var(--glass-bg); transition: all 0.3s; }
.stat-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.stat-card .stat-icon { font-size: 2rem; margin-bottom: 1rem; }
.stat-card .stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--gold); display: inline; }
.stat-card .stat-plus { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.stat-card .stat-label { display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.5rem; }

.about-commitment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.commitment-list { list-style: none; margin-top: 2rem; }
.commitment-list li { display: flex; gap: 1.25rem; margin-bottom: 1.75rem; }
.commitment-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); margin-top: 0.15rem; }
.commitment-list strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.35rem; }
.commitment-list p { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.commitment-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.commitment-images img { border-radius: var(--radius-lg); object-fit: cover; height: 220px; width: 100%; box-shadow: var(--shadow-card); }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 7rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-detail-card {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.contact-detail-card:hover { border-color: rgba(201,168,76,0.25); transform: translateX(4px); }
.cd-icon { width: 40px; height: 40px; background: rgba(201,168,76,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-detail-card strong { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.2rem; }
.contact-detail-card span, .contact-detail-card a { font-size: 0.95rem; color: var(--white); }
.contact-availability { margin-top: 2rem; padding: 1.5rem; background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius-lg); }
.contact-availability h4 { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.contact-availability p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 0.35rem; }

.contact-form { padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.required { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group select option { background: var(--anthracite); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.form-mention { font-size: 0.75rem; color: rgba(255,255,255,0.3); flex: 1; }
.form-mention a { color: var(--gold); }
.input-with-icon { position: relative; }
.input-with-icon svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: rgba(255,255,255,0.3); }
.input-with-icon input { padding-left: 2.75rem; }

/* Alerts */
.alert { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem; border-radius: var(--radius-lg); margin-bottom: 1.5rem; }
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 0.1rem; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #86efac; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #fca5a5; }
.alert strong { display: block; margin-bottom: 0.25rem; }
.alert p { font-size: 0.88rem; opacity: 0.8; }

/* ---- DEVIS PAGE ---- */
.quote-section-main { padding: 5rem 0; }
.quote-layout { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }

.step-progress { display: flex; align-items: center; gap: 0; margin: 2rem 0 3rem; }
.step { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.step.active, .step.completed { color: var(--gold); }
.step span { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; transition: all 0.3s; }
.step.active span { border-color: var(--gold); background: rgba(201,168,76,0.15); color: var(--gold); }
.step.completed span { background: var(--gold); border-color: var(--gold); color: var(--black); }
.step-line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); margin: 0 0.5rem; }

.quote-step-content { display: none; }
.quote-step-content.active { display: block; }
.quote-step-content h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.step-hint { font-size: 0.88rem; color: rgba(255,255,255,0.45); margin-bottom: 2rem; }

.event-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
.event-type-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.event-type-card { cursor: pointer; }
.etc-inner { padding: 1.5rem; border: 1px solid var(--glass-border); border-radius: var(--radius-lg); text-align: center; transition: all 0.3s; }
.event-type-card input:checked + .etc-inner { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.etc-inner:hover { border-color: rgba(201,168,76,0.3); }
.etc-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.etc-name { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

.formula-select-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.formula-select-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.formula-select-card { cursor: pointer; }
.fsc-inner { padding: 1.5rem; border: 1px solid var(--glass-border); border-radius: var(--radius-lg); transition: all 0.3s; position: relative; }
.fsc-inner.featured { border-color: rgba(201,168,76,0.25); }
.formula-select-card input:checked + .fsc-inner { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.fsc-badge { position: absolute; top: 0.75rem; right: 0.75rem; background: var(--gold); color: var(--black); font-size: 0.55rem; font-weight: 700; padding: 0.15rem 0.4rem; border-radius: 2px; }
.fsc-inner h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.fsc-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin-bottom: 0.75rem; }
.fsc-price small { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.fsc-inner ul { list-style: none; }
.fsc-inner ul li { font-size: 0.78rem; color: rgba(255,255,255,0.5); padding: 0.15rem 0; }
.fsc-inner ul li::before { content: '— '; color: var(--gold); opacity: 0.5; }

.options-grid { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.option-card input { position: absolute; opacity: 0; }
.option-card { cursor: pointer; }
.opt-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; border: 1px solid var(--glass-border); border-radius: var(--radius-lg); transition: all 0.3s; }
.option-card input:checked + .opt-inner { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.opt-inner:hover { border-color: rgba(201,168,76,0.2); }
.opt-info strong { display: block; font-size: 0.92rem; font-weight: 600; margin-bottom: 0.2rem; }
.opt-info p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.opt-price { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold); text-align: right; flex-shrink: 0; }
.opt-price small { display: block; font-size: 0.65rem; color: rgba(255,255,255,0.35); }

.step-nav { display: flex; gap: 1rem; justify-content: space-between; margin-top: 2rem; }

/* Quote Summary */
.quote-summary { position: sticky; top: 100px; padding: 2rem; }
.qs-header h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.qs-placeholder { text-align: center; padding: 2rem 0; }
.qs-placeholder svg { width: 64px; height: 64px; margin: 0 auto 1rem; }
.qs-placeholder p { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.qs-total { padding-top: 1rem; }
.qs-total-line { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.qs-total-final { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; font-weight: 700; font-size: 1rem; color: var(--white); }
.total-highlight { font-family: var(--font-display); font-size: 1.75rem; color: var(--gold); }
.qs-mention { font-size: 0.7rem; color: rgba(255,255,255,0.25); margin-top: 0.75rem; font-style: italic; }
.qs-contact { margin-top: 1.5rem; }

.quote-success { text-align: center; max-width: 500px; margin: 5rem auto; padding: 3rem; border: 1px solid rgba(201,168,76,0.25); border-radius: var(--radius-lg); background: rgba(201,168,76,0.05); }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); color: var(--black); font-size: 2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: var(--glow-gold); }
.quote-ref { font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.1em; color: var(--gold); margin: 1rem 0; }

/* ---- FOOTER ---- */
.footer { background: var(--black-deep); padding-top: 0; position: relative; }
.footer-wave { line-height: 0; }
.footer-wave svg { display: block; width: 100%; }
.footer-content { padding: 5rem 2rem 2rem; max-width: 1320px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.75rem; letter-spacing: 0.3em; color: var(--white); margin-bottom: 0.75rem; }
.footer-tagline { font-style: italic; color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.3s; }
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.footer-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.5rem; }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.65rem; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; }
.contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.contact-item a, .contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.contact-item a:hover { color: var(--white); }
.footer-cta-btn { display: inline-block; margin-top: 1.25rem; padding: 0.65rem 1.5rem; border: 1px solid rgba(201,168,76,0.35); color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; transition: all 0.3s; }
.footer-cta-btn:hover { background: rgba(201,168,76,0.1); box-shadow: var(--glow-gold); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; align-items: center; gap: 0.75rem; font-size: 0.78rem; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { color: rgba(255,255,255,0.15); }
.admin-link { color: rgba(255,255,255,0.15) !important; font-size: 0.7rem; }

/* ---- SCROLL TOP ---- */
.scroll-top {
  position: fixed; bottom: 2rem; right: 6rem; z-index: 100;
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); color: var(--black); box-shadow: var(--glow-gold); }
.scroll-top svg { width: 18px; height: 18px; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 100;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

/* ---- 404 ---- */
.page-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 5rem 2rem; }
.page-404 h1 { font-family: var(--font-display); font-size: 10rem; color: rgba(201,168,76,0.15); line-height: 1; margin-bottom: 1rem; }

/* ---- SECTION CTA ---- */
.section-cta { text-align: center; margin-top: 4rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .formulas-grid { grid-template-columns: 1fr 1fr; }
  .formula-preview-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-story-grid { gap: 4rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 3 200px; }
}

@media (max-width: 992px) {
  .nav-links { display: none; position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px; height: 100vh; background: rgba(11,11,11,0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: flex-start; padding: 6rem 2rem 3rem; gap: 0; border-left: 1px solid var(--glass-border); transition: right 0.4s var(--transition); z-index: 999; }
  .nav-links.open { right: 0; display: flex; }
  .nav-link { padding: 1rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1rem; }
  .nav-cta { margin-top: 1rem; width: 100%; text-align: center; }
  .nav-hamburger { display: flex; }
  .mobile-overlay.open { display: block; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-commitment-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-summary { position: static; }
  .buffet-card { grid-template-columns: 1fr; }
  .buffet-image { height: 320px; min-height: 0; }
  .buffets-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .formula-select-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; padding: 1rem 1.5rem; }
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 5rem); }
  .hero-stats { flex-wrap: wrap; justify-content: center; position: relative; bottom: auto; left: auto; transform: none; margin-top: 3rem; }
  .hero-stat-divider { display: none; }
  .formula-preview-grid { grid-template-columns: 1fr; }
  .formulas-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic-item.item-1 { grid-column: span 2; }
  .gallery-masonry { columns: 2 150px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .formula-select-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-title { letter-spacing: 0.1em; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .event-type-grid { grid-template-columns: 1fr; }
}
