/* ==========================================================================
   CINEMATIC VARIABLES & RESET
   ========================================================================== */
   :root {
    --c-bg: #050505;
    --c-bg-light: #F9F6F0;
    --c-text: #FFFFFF;
    --c-text-dark: #333333;
    --c-accent: #FF7F50; /* Coral / Salmon Pink */
    --c-accent-hover: #FF9973;
    --c-btn-bg: #FF7F50; 
    --c-btn-text: #FFFFFF;
    
    --ff-serif: 'Playfair Display', serif;
    --ff-script: 'Great Vibes', cursive;
    --ff-sans: 'Inter', sans-serif;
    
    --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-dramatic: cubic-bezier(0.87, 0, 0.13, 1);
    
    --t-fast: 0.6s;
    --t-med: 1.2s;
    --t-slow: 2s;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: var(--ff-sans); color: var(--c-text); background-color: var(--c-bg);
    line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
  }
  
  img, video { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  
  /* ==========================================================================
     TEXTURE & PRELOADER
     ========================================================================== */
  .ambient-texture {
    position: fixed; inset: 0; z-index: 9999; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03; mix-blend-mode: screen;
  }
  
  .preloader {
    position: fixed; inset: 0; background: var(--c-bg); z-index: 10000;
    display: flex; justify-content: center; align-items: center;
    transition: opacity var(--t-med) var(--ease-dramatic);
  }
  .preloader__logo {
    font-family: var(--ff-serif); font-size: 2.5rem; letter-spacing: 0.1em;
    animation: pulse 2s infinite ease-in-out;
  }
  .preloader__logo span { color: var(--c-accent); font-weight: 300; }
  @keyframes pulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }
  body.loaded .preloader { opacity: 0; pointer-events: none; }
  
  /* ==========================================================================
     ANIMATIONS
     ========================================================================== */
  .reveal-text {
    display: inline-block; opacity: 0; transform: translateY(40px);
    transition: transform var(--t-slow) var(--ease-cinematic), opacity var(--t-slow) var(--ease-cinematic);
  }
  .reveal-text.is-visible { opacity: 1; transform: translateY(0); }
  
  .reveal-fade { opacity: 0; transition: opacity var(--t-slow) var(--ease-cinematic); }
  .reveal-fade.is-visible { opacity: 1; }
  
  .reveal-up {
    opacity: 0; transform: translateY(60px);
    transition: opacity var(--t-med) var(--ease-cinematic), transform var(--t-med) var(--ease-cinematic);
  }
  .reveal-up.is-visible { opacity: 1; transform: translateY(0); }
  
  .reveal-clip { clip-path: inset(100% 0 0 0); transition: clip-path 1.5s var(--ease-dramatic); }
  .reveal-clip.is-visible { clip-path: inset(0 0 0 0); }
  
  .delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; }
  .delay-5 { transition-delay: 0.5s; }
  
  /* ==========================================================================
     BUTTONS
     ========================================================================== */
  .btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; border-radius: 4px;
    transition: all 0.3s var(--ease-smooth);
  }
  .btn--primary { background: var(--c-btn-bg); color: var(--c-btn-text); }
  .btn--primary:hover { background: var(--c-accent-hover); transform: translateY(-2px); }
  .btn--outline { border: 1px solid rgba(255,255,255,0.3); color: var(--c-text); }
  .btn--outline:hover { border-color: var(--c-accent); color: var(--c-accent); }
  
  /* ==========================================================================
     TOP BAR
     ========================================================================== */
  .topbar {
    background: #0A0A0A; border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.65rem; color: #888; padding: 8px 0;
  }
  .topbar__inner {
    max-width: 1400px; margin: 0 auto; padding: 0 40px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .topbar__contact { display: flex; gap: 24px; }
  .topbar__contact span { display: flex; align-items: center; gap: 8px; }
  .topbar__social { display: flex; gap: 16px; }
  .topbar__social svg:hover { color: var(--c-accent); cursor: pointer; }
  
  /* ==========================================================================
     HEADER
     ========================================================================== */
  .header {
    position: absolute; top: 35px; left: 0; right: 0; z-index: 100;
    padding: 20px 0;
  }
  .header__inner {
    max-width: 1400px; margin: 0 auto; padding: 0 40px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .logo { display: flex; flex-direction: column; font-family: var(--ff-serif); font-size: 1.5rem; letter-spacing: 0.1em; }
  .logo span { color: var(--c-accent); font-weight: 400; }
  .logo__sub { font-family: var(--ff-sans); font-size: 0.5rem; letter-spacing: 0.3em; color: #888; margin-top: 4px; }
  
  .header__nav { display: flex; gap: 32px; }
  .nav-link { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; color: #BBB; transition: color 0.3s; }
  .nav-link:hover, .nav-link.active { color: var(--c-accent); }
  
  /* ==========================================================================
     SCENE 1: HERO (Full-Screen Video)
     ========================================================================== */
  .hero {
    position: relative; min-height: 100vh; padding-top: 120px;
    display: flex; flex-direction: column; overflow: hidden;
  }
  
  /* Background Video Setup */
  .hero__bg-video {
    position: absolute; inset: 0; z-index: 0;
  }
  .hero__bg-video video {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05); /* Ready for dolly in */
  }
  .hero__bg-overlay {
    position: absolute; inset: 0;
    /* Dark gradient with a subtle coral/salmon tint in the center */
    background: radial-gradient(circle at center, rgba(255,127,80,0.05) 0%, rgba(5,5,5,0.8) 100%),
                linear-gradient(to right, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 50%, rgba(5,5,5,0.95) 100%);
  }

  .hero__inner {
    flex: 1; display: flex; max-width: 1400px; margin: 0 auto; width: 100%;
    align-items: center; position: relative; z-index: 1;
    padding-bottom: 100px; /* Prevent collision with the features bar */
  }
  
  .hero__text-col {
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 40px; max-width: 800px;
  }
  .hero__eyebrow {
    font-size: 0.75rem; color: var(--c-accent); letter-spacing: 0.2em; margin-bottom: 24px; font-weight: 500;
  }
  .hero__title {
    display: flex; flex-direction: column; margin-bottom: 24px; line-height: 1;
  }
  .hero__title span:first-child {
    font-family: var(--ff-serif); font-size: 4.5rem; font-weight: 400;
  }
  .hero__script {
    font-family: var(--ff-script); font-size: 6rem; color: var(--c-accent);
    margin-top: -15px; font-weight: 400; text-shadow: 0 0 40px rgba(255, 127, 80, 0.3);
  }
  .hero__desc {
    font-size: 1rem; color: #AAA; margin-bottom: 40px; line-height: 1.8;
  }
  .hero__actions { display: flex; gap: 16px; }
  
  /* Video Column Removed, so removing related CSS */
  
  /* Features Bar */
  .hero__features {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1400px; z-index: 10;
    display: flex; justify-content: space-between;
    background: rgba(20,20,20,0.8); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 8px 8px 0 0;
    padding: 24px 40px;
  }
  .hero__features.is-visible { transform: translateX(-50%) translateY(0); }
  .feature-item { display: flex; align-items: center; gap: 16px; }
  .feature-item .icon { font-size: 1.5rem; opacity: 0.8; }
  .feature-item .text { display: flex; flex-direction: column; }
  .feature-item strong { font-size: 0.7rem; letter-spacing: 0.1em; color: #FFF; }
  .feature-item span { font-size: 0.65rem; color: #888; }
  
  /* ==========================================================================
     SCENE 2: SERVICES
     ========================================================================== */
  .services {
    background: var(--c-bg); color: var(--c-text); padding: 120px 40px; text-align: center;
  }
  .section-header { margin-bottom: 60px; display: flex; align-items: center; justify-content: center; gap: 24px; }
  .section-header h2 { font-family: var(--ff-serif); font-size: 2rem; font-weight: 300; letter-spacing: 0.2em; }
  .section-header .line { width: 60px; height: 1px; background: rgba(255,255,255,0.2); }
  
  .section-link { margin-bottom: 60px; }
  .section-link a {
    font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-accent);
    border-bottom: 1px solid var(--c-accent); padding-bottom: 4px; transition: opacity 0.3s;
  }
  .section-link a:hover { opacity: 0.7; }
  
  .services__grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  .service-card {
    text-align: left; transition: transform var(--t-fast) var(--ease-cinematic);
  }
  .service-card:hover { transform: translateY(-10px); }
  .service-card__image {
    width: 100%; aspect-ratio: 4/5; overflow: hidden; margin-bottom: 24px; position: relative;
    border-radius: 4px;
  }
  .service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-cinematic); }
  .service-card:hover .service-card__image img { transform: scale(1.05); }
  
  .service-icon {
    position: absolute; bottom: 20px; right: 20px; width: 48px; height: 48px; 
    background: rgba(10,10,10,0.8); backdrop-filter: blur(5px);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--c-accent);
  }
  
  .service-card h3 { font-family: var(--ff-serif); font-size: 1.5rem; margin-bottom: 12px; color: #FFF; }
  .service-card p { font-size: 0.9rem; color: #AAA; line-height: 1.6; margin-bottom: 24px; }
  .service-card a {
    display: inline-block; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--c-accent); border-bottom: 1px solid var(--c-accent); padding-bottom: 4px;
    transition: opacity 0.3s;
  }
  .service-card a:hover { opacity: 0.7; }
  
  /* ==========================================================================
     SCENE 3: PROMO
     ========================================================================== */
  .promo {
    background: var(--c-bg); padding: 80px 40px; display: flex; justify-content: center;
  }
  .promo__inner {
    max-width: 1400px; width: 100%; background: #111; border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px; display: flex; overflow: hidden;
  }
  .promo__content {
    flex: 1; padding: 60px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  }
  .promo__badge {
    font-size: 0.6rem; letter-spacing: 0.2em; padding: 6px 12px;
    background: rgba(255,255,255,0.1); border-radius: 20px; margin-bottom: 24px;
  }
  .promo__content h2 {
    font-family: var(--ff-serif); font-size: 3rem; font-weight: 400; margin-bottom: 32px; line-height: 1.1;
  }
  .promo__features {
    flex: 1.5; background: #0A0A0A; padding: 60px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .p-feat { display: flex; gap: 16px; align-items: center; }
  .p-feat .icon { font-size: 2rem; opacity: 0.5; }
  .p-feat div { display: flex; flex-direction: column; }
  .p-feat strong { font-size: 0.8rem; color: var(--c-accent); margin-bottom: 4px; }
  .p-feat span { font-size: 0.7rem; color: #888; max-width: 120px; }
  
  /* ==========================================================================
     FOOTER
     ========================================================================== */
  .footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.05); padding: 60px 40px; }
  .footer__inner { max-width: 1400px; margin: 0 auto; text-align: center; }
  .footer__brand h2 { font-family: var(--ff-serif); font-size: 2rem; }
  .footer__brand span { color: var(--c-accent); font-weight: 400; }
  .footer__brand p { font-size: 0.6rem; letter-spacing: 0.3em; color: #888; margin-top: 4px; margin-bottom: 24px; }
  .copyright { font-size: 0.7rem; color: #555; }
  
  /* ==========================================================================
     SCENE 4: L'ÉQUIPE (TEAM)
     ========================================================================== */
  .team {
    background: var(--c-bg); padding: 120px 40px; position: relative;
  }
  .team__inner { max-width: 1400px; margin: 0 auto; text-align: center; }
  .team__desc { font-size: 1rem; color: #888; margin-bottom: 60px; }
  .team__grid {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 32px;
  }
  .team-member {
    background: #0A0A0A; border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px; padding: 32px 24px; min-width: 180px;
    transition: transform var(--t-fast) var(--ease-cinematic);
  }
  .team-member:hover { transform: translateY(-10px); border-color: rgba(255,127,80,0.3); }
  .team-member__avatar {
    width: 60px; height: 60px; border-radius: 50%; background: var(--c-bg-light);
    color: var(--c-bg); display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 600;
    margin: 0 auto 24px auto; box-shadow: 0 4px 20px rgba(255,127,80,0.2);
  }
  .team-member h4 { font-family: var(--ff-serif); font-size: 1.2rem; margin-bottom: 4px; }
  .team-member span { font-size: 0.7rem; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.1em; }

  /* ==========================================================================
     SCENE 5: LA CARTE (FULL MENU)
     ========================================================================== */
  .menu-complet {
    background: var(--c-bg); color: var(--c-text); padding: 120px 40px; position: relative;
  }
  .menu-complet::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,127,80,0.2), transparent);
  }
  
  .accordion-container {
    max-width: 900px; margin: 40px auto 60px auto;
  }
  .accordion-item {
    background: rgba(10,10,10,0.6); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px; margin-bottom: 24px; overflow: hidden; backdrop-filter: blur(10px);
    transition: border-color 0.4s var(--ease-cinematic), box-shadow 0.4s var(--ease-cinematic);
  }
  .accordion-item:hover, .accordion-item.active {
    border-color: rgba(255,127,80,0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  }
  
  .accordion-header {
    width: 100%; background: none; border: none; padding: 32px;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 400; letter-spacing: 0.1em;
    color: #FFF; cursor: pointer; transition: color 0.3s;
  }
  .accordion-header:hover { color: var(--c-accent); }
  .accordion-header .icon { 
    font-family: var(--ff-sans); font-size: 1.8rem; font-weight: 300; 
    transition: transform 0.5s var(--ease-cinematic), color 0.3s; 
    color: #555;
  }
  .accordion-item.active .accordion-header .icon { transform: rotate(135deg); color: var(--c-accent); }
  
  .accordion-content {
    max-height: 0; overflow: hidden; transition: max-height 0.8s var(--ease-cinematic);
  }
  .menu-list { padding: 0 32px 32px 32px; display: flex; flex-direction: column; gap: 20px; }
  .menu-row {
    display: flex; justify-content: space-between; align-items: flex-end;
    font-size: 0.95rem; position: relative; color: #CCC;
  }
  .menu-row::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 6px;
    border-bottom: 1px dashed rgba(255,255,255,0.15); z-index: 1;
  }
  .menu-row span { background: #0A0A0A; position: relative; z-index: 2; padding-right: 12px; }
  .menu-row span:last-child { 
    padding-right: 0; padding-left: 12px; font-weight: 600; color: var(--c-accent); 
    font-family: var(--ff-serif); font-size: 1.1rem; letter-spacing: 0.05em;
  }
  .menu-cta { text-align: center; margin-top: 40px; }

  /* ==========================================================================
     SCENE 6: AVIS (REVIEWS)
     ========================================================================== */
  .reviews {
    background: #0A0A0A; padding: 120px 40px; text-align: center;
  }
  .reviews__inner { max-width: 1200px; margin: 0 auto; }
  .reviews__global { margin-bottom: 60px; }
  .stars, .review-stars { color: var(--c-accent); font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 16px; }
  .reviews__global h3 { font-family: var(--ff-serif); font-size: 4rem; font-weight: 400; line-height: 1; }
  .reviews__global p { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; }
  
  .reviews__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  }
  .review-card {
    background: var(--c-bg); border: 1px solid rgba(255,255,255,0.05); padding: 40px 32px;
    border-radius: 8px; display: flex; flex-direction: column; align-items: center;
  }
  .review-card p {
    font-style: italic; font-size: 1.1rem; line-height: 1.6; color: #CCC; margin-bottom: 24px; flex: 1;
  }
  .review-card span { font-size: 0.75rem; color: #666; font-family: var(--ff-serif); }

  /* ==========================================================================
     SCENE 7: LOCATION MAP
     ========================================================================== */
  .location { width: 100%; height: 400px; background: #000; overflow: hidden; }
  .location__map iframe {
    /* Dark Cinematic Google Maps Filter */
    filter: grayscale(100%) invert(92%) contrast(1.2) hue-rotate(180deg);
    opacity: 0.8; transition: opacity 0.5s;
  }
  .location__map:hover iframe { opacity: 1; }
