/* ===== LOADING SCREEN ===== */
  #loader {
    position: fixed; inset: 0; background: var(--black); z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  #loader.hidden { opacity: 0; visibility: hidden; }
  .loader-img {
    width: 200px;
    max-width: 70vw;
    animation: pulse 1.8s ease infinite;
    margin-bottom: 1rem;
    object-fit: contain;
  }
  .loader-sub {
    font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase;
    color: rgba(255,255,255,0.3); margin-top: 0.6rem; font-family: 'Poppins', sans-serif;
  }
  .loader-line {
    width: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-top: 2rem; opacity: 0;
    animation: expand 2s ease forwards 0.5s;
  }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
  @keyframes expand { to{width:280px; opacity:1} }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.2rem 4vw;
    display: flex; align-items: center; justify-content: space-between;
    transition: var(--transition);
    background: transparent;
  }
  nav.scrolled {
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,169,110,0.15);
    padding: 0.8rem 4vw;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    line-height: 1.1;
  }
  .nav-logo span { display: block; font-size: 0.6rem; color: var(--white); letter-spacing: 0.3em; font-family: 'Poppins', sans-serif; font-weight: 300; text-transform: uppercase; }
  .nav-links { display: flex; gap: 2.5rem; align-items: center; list-style: none; }
  .nav-links a { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.8); transition: var(--transition); }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: transparent; border: 1px solid var(--gold);
    color: var(--gold); padding: 0.6rem 1.6rem;
    font-family: 'Poppins', sans-serif; font-size: 0.75rem;
    letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
    transition: var(--transition);
  }
  .nav-cta:hover { background: var(--gold); color: var(--black); }
  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px;
  }
  .hamburger span { width: 25px; height: 1px; background: var(--gold); transition: var(--transition); display: block; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
  .mobile-menu {
    display: none; position: fixed; inset: 0; background: var(--black);
    z-index: 999; flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); transition: color 0.3s; }
  .mobile-menu a:hover { color: var(--gold); }

  /* ===== HERO ===== */
  #hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(160deg, rgba(15,15,15,0.3) 0%, rgba(15,15,15,0.7) 60%, rgba(15,15,15,0.95) 100%),
      url('../images/slider/nous-avons-decouvert.jpg') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 12s ease infinite alternate;
    transition: opacity 1.2s ease;
  }
  .hero-bg-primary { z-index: 0; }
  .hero-bg-secondary { z-index: 1; opacity: 0; pointer-events: none; }
  .hero-video {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
    transform: scale(1.02);
  }
  .hero-video video {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: saturate(0.92) contrast(1.05);
  }
  .hero-video::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(160deg, rgba(15,15,15,0.3) 0%, rgba(15,15,15,0.7) 60%, rgba(15,15,15,0.95) 100%);
  }
  @keyframes heroZoom { from{transform:scale(1.05)} to{transform:scale(1.12)} }
  .hero-particles {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.04;
  }
  .hero-content {
    position: relative; text-align: center; z-index: 2; padding: 0 2rem;
    animation: fadeInUp 1.2s ease 0.5s both;
  }
  .hero-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem; display: block;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.25rem, 6vw, 7.6rem);
    font-weight: 700; line-height: 1.05; margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  }
  .hero-title em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-size: clamp(0.85rem, 2vw, 1rem); font-weight: 300;
    color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 3rem;
    letter-spacing: 0.05em; line-height: 1.8;
  }
  .hero-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--black);
    padding: 1rem 2.8rem; font-family: 'Poppins', sans-serif;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; border: none; transition: var(--transition);
    position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: var(--gold-light); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }
  .btn-primary:hover { color: var(--black); }
  .btn-primary:hover::after { transform: scaleX(1); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.4); color: var(--white);
    padding: 1rem 2.8rem; font-family: 'Poppins', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; background: transparent; transition: var(--transition);
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll {
    position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.4); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
    animation: bounce 2s ease infinite;
  }
  .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent); }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

  /* ===== ABOUT ===== */
  #about { background: var(--black2); }
  .about-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  .about-visual { position: relative; }
  .about-img-main {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    border: 1px solid rgba(201,169,110,0.2);
  }
  .about-img-accent { display: none; }
  .about-badge {
    position: absolute; bottom: -3rem; right: -3rem;
    background: radial-gradient(circle at 35% 35%, #f5e6c0, #c9a96e 40%, #a07840 75%, #7a5c28 100%);
    color: #1a0e00;
    width: 170px; height: 170px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    box-shadow:
      0 0 0 2px rgba(255,240,180,0.6),
      0 0 0 6px rgba(201,169,110,0.25),
      0 8px 20px rgba(0,0,0,0.5),
      0 20px 60px rgba(201,169,110,0.5),
      inset 0 2px 6px rgba(255,250,200,0.4),
      inset 0 -3px 8px rgba(100,60,10,0.3);
    border: none;
    outline: none;
    position: absolute;
  }
  .about-badge::before {
    content: '';
    position: absolute; inset: 6px;
    border-radius: 50%;
    border: 1px solid rgba(255,240,180,0.35);
    pointer-events: none;
  }
  .about-badge::after {
    content: '';
    position: absolute; inset: 12px;
    border-radius: 50%;
    border: 1px dashed rgba(255,240,180,0.18);
    pointer-events: none;
  }
  .about-badge strong {
    font-size: 3.2rem; font-weight: 900; line-height: 1;
    color: #1a0e00;
    text-shadow: 0 1px 2px rgba(255,240,160,0.6), 0 -1px 1px rgba(80,40,0,0.4);
    letter-spacing: -0.02em;
  }
  .about-badge span {
    font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
    margin-top: 0.35rem; font-family: 'Poppins', sans-serif; font-weight: 600;
    color: #3d1f00;
    text-shadow: 0 1px 1px rgba(255,220,120,0.4);
  }
  .about-text p { color: rgba(255,255,255,0.65); line-height: 1.9; margin-bottom: 1.2rem; font-size: 0.95rem; }
  .about-stats {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin: 3rem 0;
    padding: 2.5rem 0; border-top: 1px solid rgba(201,169,110,0.15); border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1;
  }
  .stat-lbl { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.4rem; }
  .about-signature {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 2rem; color: var(--gold); margin-top: 1.5rem;
  }
  .about-signature span { display: block; font-family: 'Poppins', sans-serif; font-style: normal; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.3rem; }

  /* ===== MENU ===== */
  #menu { background: var(--black); }
  .menu-inner { max-width: 1300px; margin: 0 auto; }
  .menu-header { text-align: center; margin-bottom: 4rem; }
  .menu-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2px;
  }
  .menu-card {
    background: var(--black2); padding: 2.5rem;
    border: 1px solid rgba(201,169,110,0.08);
    transition: var(--transition); position: relative; overflow: hidden;
  }
  .menu-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0); transition: transform 0.4s ease;
  }
  .menu-card:hover { border-color: rgba(201,169,110,0.25); background: var(--black3); transform: translateY(-4px); }
  .menu-card:hover::before { transform: scaleX(1); }
  .menu-card-cat {
    font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .menu-card-name {
    font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 0.7rem;
  }
  .menu-card-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
  .menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
  .menu-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); }
  .menu-tag { font-size: 0.65rem; letter-spacing: 0.1em; padding: 0.3rem 0.8rem; border: 1px solid rgba(201,169,110,0.3); color: rgba(255,255,255,0.4); }
  .menu-downloads { display: flex; gap: 1rem; justify-content: center; margin-top: 4rem; flex-wrap: wrap; }
  .download-btn {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 1rem 2rem; border: 1px solid rgba(201,169,110,0.3); color: var(--gold);
    font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; transition: var(--transition);
    background: transparent; cursor: pointer; font-family: 'Poppins', sans-serif;
  }
  .download-btn:hover { background: rgba(201,169,110,0.1); border-color: var(--gold); }
  .download-btn svg { flex-shrink: 0; }
  .menu-panel { display: none; }
  .menu-panel.active { display: block; }

  /* ===== GALLERY ===== */
  #gallery { background: var(--black2); }
  .gallery-header { text-align: center; margin-bottom: 4rem; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 2px; max-width: 1300px; margin: 0 auto;
  }
  .gallery-item { overflow: hidden; position: relative; cursor: zoom-in; }
  .gallery-item:nth-child(1) { grid-column: 1/6;  grid-row: 1/3; }
  .gallery-item:nth-child(2) { grid-column: 6/9;  grid-row: 1/2; }
  .gallery-item:nth-child(3) { grid-column: 9/13; grid-row: 1/2; }
  .gallery-item:nth-child(4) { grid-column: 6/9;  grid-row: 2/3; }
  .gallery-item:nth-child(5) { grid-column: 9/13; grid-row: 2/3; }
  .gallery-item:nth-child(6) { grid-column: 1/5;  grid-row: 3/4; }
  .gallery-item:nth-child(7) { grid-column: 5/9;  grid-row: 3/4; }
  .gallery-item:nth-child(8) { grid-column: 9/13; grid-row: 3/4; }
  .gallery-item:nth-child(9) { grid-column: 1/13; grid-row: 4/5; }
  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
    filter: brightness(0.88) saturate(0.85);
  }
  .gallery-item:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.05); }
  .gallery-item-overlay {
    position: absolute; inset: 0; background: rgba(201,169,110,0.12);
    opacity: 0; transition: opacity 0.5s ease;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(201,169,110,0);
    transition: opacity 0.5s ease, border-color 0.5s ease;
  }
  .gallery-item:hover .gallery-item-overlay { opacity: 1; border-color: rgba(201,169,110,0.3); }
  .gallery-item-overlay svg { color: var(--gold); opacity: 0.9; }
  /* Lightbox */
  #lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 2000;
    display: none; align-items: center; justify-content: center;
  }
  #lightbox.open { display: flex; }
  #lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain; border: 1px solid rgba(201,169,110,0.15); box-shadow: 0 40px 100px rgba(0,0,0,0.8); }
  .lb-close {
    position: absolute; top: 2rem; right: 2rem; font-size: 1.2rem; cursor: pointer;
    color: rgba(255,255,255,0.6); background: none; border: 1px solid rgba(201,169,110,0.2);
    width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
  }
  .lb-close:hover { color: var(--gold); border-color: var(--gold); transform: rotate(90deg); }

  /* ===== VIDEO ===== */
  #video { background: var(--black); padding: 8rem 4vw; }
  .video-inner { max-width: 1100px; margin: 0 auto; }
  .video-header { text-align: center; margin-bottom: 4rem; }
  .video-wrapper {
    position: relative; aspect-ratio: 16/9;
    background: var(--black2);
    overflow: hidden;
    border: 1px solid rgba(201,169,110,0.25);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,169,110,0.08), inset 0 0 40px rgba(0,0,0,0.3);
  }
  .video-wrapper iframe { width: 100%; height: 100%; border: none; }
  .video-corner {
    position: absolute; width: 40px; height: 40px;
    border-color: var(--gold); border-style: solid; border-width: 0;
  }
  .video-corner.tl { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
  .video-corner.tr { top: -1px; right: -1px; border-top-width: 2px; border-right-width: 2px; }
  .video-corner.bl { bottom: -1px; left: -1px; border-bottom-width: 2px; border-left-width: 2px; }
  .video-corner.br { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }

  /* ===== VIDEO TESTIMONIALS OVERLAY ===== */
  .vid-reviews {
    position: absolute; bottom: 3.5rem; left: 2rem; right: 2rem;
    z-index: 5; pointer-events: none;
  }
  .vid-review {
    display: none; animation: vidFadeIn 0.7s ease;
  }
  .vid-review.active { display: block; }
  @keyframes vidFadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
  .vid-review-text {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: clamp(0.95rem, 2vw, 1.15rem); line-height: 1.7;
    color: rgba(255,255,255,0.95); margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
    max-width: 680px;
  }
  .vid-review-author {
    display: flex; align-items: center; gap: 0.8rem;
  }
  .vid-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
    flex-shrink: 0; border: 1px solid rgba(201,169,110,0.4);
    box-shadow: 0 2px 12px rgba(201,169,110,0.25);
  }
  .vid-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
  .vid-loc { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 0.1rem; letter-spacing: 0.05em; }
  .vid-dots {
    position: absolute; bottom: 1.2rem; left: 2rem;
    display: flex; gap: 0.5rem; z-index: 6;
  }
  .vid-dot {
    width: 20px; height: 2px; background: rgba(255,255,255,0.3);
    cursor: pointer; transition: background 0.3s, width 0.3s;
  }
  .vid-dot.active { background: var(--gold); width: 36px; }

  /* ===== LOCATIONS + RESERVATION COMBINED ===== */
  #locations { background: var(--black2); }
  .locations-inner { max-width: 1300px; margin: 0 auto; }
  .locations-header { text-align: center; margin-bottom: 5rem; }
  .locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
  .location-card { border: 1px solid rgba(201,169,110,0.15); overflow: hidden; }
  .location-map { width: 100%; height: 280px; }
  .location-map iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(80%) contrast(1.1) brightness(0.7); transition: filter 0.4s ease; }
  .location-card:hover .location-map iframe { filter: grayscale(20%) contrast(1.05) brightness(0.9); }
  .location-info { padding: 2.5rem; background: var(--black3); }
  .location-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.4rem; }
  .location-city { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block; }
  .location-detail { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.9rem; color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.5; }
  .location-detail svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
  .location-hours-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.2);
    padding: 0.5rem 1rem; margin-top: 1rem; font-size: 0.75rem; color: var(--gold);
  }
  .hours-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 5px rgba(201,169,110,0.5); animation: blink 3s ease infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

  /* ===== LOCATIONS + RESERVATION COMBINED ===== */
  .loc-res-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .loc-res-left { display: flex; flex-direction: column; gap: 2rem; }
  .loc-res-right {
    background: var(--black3);
    border: 1px solid rgba(201,169,110,0.15);
    padding: 2.5rem;
    position: sticky;
    top: 100px;
  }
  @media (max-width: 1000px) {
    .loc-res-grid { grid-template-columns: 1fr; }
    .loc-res-right { position: static; }
  }

  /* ===== RESERVATION FORM ===== */
  .res-form { margin-top: 3rem; display: grid; gap: 1.2rem; text-align: left; }
  .res-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
  .form-input, .form-select {
    background: var(--black); border: 1px solid rgba(201,169,110,0.2); color: var(--white);
    padding: 0.9rem 1.2rem; font-family: 'Poppins', sans-serif; font-size: 0.85rem;
    outline: none; transition: border-color 0.3s; width: 100%;
    -webkit-appearance: none;
  }
  .form-input:focus, .form-select:focus { border-color: var(--gold); }
  .form-input::placeholder { color: rgba(255,255,255,0.25); }
  .form-select option { background: var(--black); }
  .date-input-wrap { position: relative; }
  .time-select-wrap { position: relative; }
  .time-select-wrap .form-select { padding-right: 2.8rem; }
  .time-icon { position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: rgba(201,169,110,0.9); pointer-events: none; }

  /* ===== CUSTOM DATEPICKER ===== */
  .custom-datepicker-wrap { position: relative; }
  .datepicker-display {
    background: var(--black); border: 1px solid rgba(201,169,110,0.2); color: var(--white);
    padding: 0.9rem 1.2rem; font-family: 'Poppins', sans-serif; font-size: 0.85rem;
    outline: none; transition: border-color 0.3s; width: 100%;
    cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    user-select: none;
  }
  .datepicker-display:hover, .datepicker-display.open { border-color: var(--gold); }
  .datepicker-display .dp-placeholder { color: rgba(255,255,255,0.25); }
  .datepicker-display .dp-value { color: var(--white); }
  .datepicker-display svg { flex-shrink: 0; color: rgba(201,169,110,0.9); }
  .datepicker-dropdown {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 2000;
    background: #1a1a1a; border: 1px solid rgba(201,169,110,0.35);
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
    display: none;
    min-width: 280px;
  }
  .datepicker-dropdown.open { display: block; }
  .dp-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.9rem 1rem; border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .dp-nav {
    background: none; border: none; color: var(--gold); cursor: pointer;
    font-size: 1.1rem; padding: 0.2rem 0.6rem; transition: color 0.2s;
    font-family: 'Poppins', sans-serif;
  }
  .dp-nav:hover { color: var(--gold-light); }
  .dp-month-year {
    font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white);
    letter-spacing: 0.03em;
  }
  .dp-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr);
    padding: 0.5rem 0.5rem 0;
  }
  .dp-weekday {
    text-align: center; font-size: 0.6rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); padding: 0.4rem 0;
  }
  .dp-days {
    display: grid; grid-template-columns: repeat(7, 1fr);
    padding: 0 0.5rem 0.7rem;
    gap: 2px;
  }
  .dp-day {
    text-align: center; padding: 0.5rem 0.2rem; font-size: 0.82rem;
    cursor: pointer; color: rgba(255,255,255,0.75); transition: background 0.15s, color 0.15s;
    border-radius: 2px;
  }
  .dp-day:hover { background: rgba(201,169,110,0.15); color: var(--gold); }
  .dp-day.selected { background: var(--gold); color: var(--black); font-weight: 600; }
  .dp-day.today { border: 1px solid rgba(201,169,110,0.4); color: var(--gold); }
  .dp-day.today.selected { border-color: transparent; }
  .dp-day.other-month { color: rgba(255,255,255,0.2); }
  .dp-day.other-month:hover { color: rgba(255,255,255,0.5); }
  .dp-day.disabled { color: rgba(255,255,255,0.15); cursor: not-allowed; pointer-events: none; }
  .dp-day.empty { cursor: default; }
  .dp-day.empty:hover { background: none; }
  /* Hidden real input for form validation */
  .dp-hidden-input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
  .form-submit { margin-top: 1rem; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--black); border-top: 1px solid rgba(201,169,110,0.1);
    padding: 5rem 4vw 2.5rem;
  }
  .footer-inner { max-width: 1300px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
  .footer-brand { }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); }
  .footer-logo span { display: block; font-family: 'Poppins', sans-serif; font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 0.2rem; }
  .footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.8; margin-top: 1.2rem; max-width: 260px; }
  .footer-socials { display: flex; gap: 1rem; margin-top: 2rem; }
  .social-link {
    width: 38px; height: 38px; border: 1px solid rgba(201,169,110,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); transition: var(--transition); font-size: 0.85rem;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col-title { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-contact-item { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.8rem; font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
  .footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
  .footer-bottom {
    border-top: 1px solid rgba(201,169,110,0.08); padding-top: 2rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
  .footer-payment {
    display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; justify-content: center;
  }
  .pay-logo {
    height: 28px; width: auto; border-radius: 6px;
    opacity: 0.55; transition: opacity 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
  }
  .pay-logo:hover { opacity: 1; transform: translateY(-2px); }
  .footer-legal { display: flex; gap: 2rem; }
  .footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: color 0.3s; }
  .footer-legal a:hover { color: var(--gold); }

  /* ===== BACK TO TOP ===== */
  #back-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
    width: 46px; height: 46px; background: var(--gold); color: var(--black);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s; border: none;
    box-shadow: 0 4px 20px rgba(201,169,110,0.4);
  }
  #back-top.visible { opacity: 1; transform: translateY(0); }
  #back-top:hover { background: var(--gold-light); }

  /* ===== FLOATING CTA ===== */
  .floating-cta {
    position: fixed; bottom: 2rem; left: 2rem; z-index: 500;
    display: flex; align-items: center; gap: 0.7rem;
    background: var(--black2); border: 1px solid rgba(201,169,110,0.3);
    padding: 0.7rem 1.2rem; opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s;
    font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
  }
  .floating-cta.visible { opacity: 1; transform: translateY(0); }
  .floating-cta::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 6px rgba(201,169,110,0.6); animation: blink 3s ease infinite; }

/* ===== EXTRACTED INLINE UTILITIES ===== */
.text-gold-italic { color: var(--gold); font-style: italic; }
.section-copy { color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto; font-size: 0.9rem; line-height: 1.8; }
.section-copy.narrow { max-width: 480px; }
.section-copy.wide { max-width: 560px; }
.text-center { text-align: center; }
.video-wrapper.feature-video { margin-top: 3rem; position: relative; }
.feature-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-gradient-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%); pointer-events: none; }
.video-label { position: absolute; top: 1.5rem; left: 1.8rem; display: flex; align-items: center; gap: 0.6rem; z-index: 5; }
.video-label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 5px rgba(201,169,110,0.5); animation: blink 3s ease infinite; }
.video-label-text { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.video-stars { position: absolute; top: 1.5rem; right: 1.8rem; z-index: 5; color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; }
.locations-section { background: var(--black2); padding: 8rem 4vw; }
.locations-container { max-width: 1300px; margin: 0 auto; }
.section-header-centered { text-align: center; margin-bottom: 4rem; }
.location-map.compact { height: 220px; }
.reservation-intro { margin-bottom: 2rem; }
.reservation-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; margin-bottom: 0.8rem; }
.reservation-copy { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.8; }
.res-form { margin-top: 0; }
.form-submit { text-align: center; margin-top: 1.5rem; }
.form-submit .btn-primary { border: none; width: 100%; }
.footer-hours-wrap { margin-top: 2rem; }
.footer-hours { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-cta { margin-top: 1.5rem; }
.footer-cta .btn-primary { font-size: 0.72rem; padding: 0.8rem 1.6rem; display: inline-block; }
.pwa-install-btn { padding: 0.6rem 1.2rem; font-size: 0.75rem; }

/* ===== PREMIUM VISUAL SYSTEM OVERRIDES ===== */
#loader {
  background:
    linear-gradient(180deg, rgba(6,7,8,0.98), rgba(11,13,16,0.98)),
    radial-gradient(circle at center, rgba(216,182,111,0.12), transparent 42%);
}

.loader-img {
  filter: drop-shadow(0 24px 56px rgba(0,0,0,0.65));
}

nav {
  top: 1rem;
  left: 50%;
  right: auto;
  width: min(1180px, calc(100% - 2rem));
  transform: translateX(-50%);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(7, 9, 11, 0.42);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 16px 50px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}

nav.scrolled {
  padding: 0.72rem 1rem;
  background: rgba(7, 9, 11, 0.78);
  border-color: rgba(216,182,111,0.18);
  box-shadow: 0 22px 70px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.08);
}

.nav-logo {
  font-family: var(--serif);
  padding-left: 0.2rem;
}

.nav-logo span {
  font-family: var(--sans);
  letter-spacing: 0.2em;
  color: rgba(248,250,252,0.56);
}

.nav-links {
  gap: 0.35rem;
  padding: 0.25rem;
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.95rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(248,250,252,0.72);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.075);
}

.nav-cta,
.btn-primary,
.btn-outline,
.download-btn {
  border-radius: 999px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 0;
  color: #15100a;
  box-shadow: 0 10px 30px rgba(216,182,111,0.24);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #fff0bd, var(--gold));
  box-shadow: 0 14px 42px rgba(216,182,111,0.34);
}

.hamburger {
  border: 1px solid rgba(216,182,111,0.2);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  background: rgba(6,7,8,0.9);
  backdrop-filter: blur(30px) saturate(1.25);
}

.mobile-menu a {
  font-family: var(--serif);
  letter-spacing: 0;
}

#hero {
  min-height: 720px;
}

#hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28vh;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--black));
}

.hero-bg {
  filter: saturate(0.92) contrast(1.05);
}

.hero-content {
  max-width: 980px;
  padding-top: 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 1rem;
  border: 1px solid rgba(216,182,111,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(18px);
  color: var(--gold-light);
  font-size: 0.68rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.25rem, 6vw, 7.6rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-title em {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--accent-copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 650px;
  color: rgba(248,250,252,0.76);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  letter-spacing: 0;
}

.btn-primary,
.btn-outline,
.download-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--accent-copper));
  color: #15100a;
  box-shadow: 0 16px 42px rgba(216,182,111,0.24), inset 0 1px 0 rgba(255,255,255,0.42);
}

.btn-primary::after {
  background: linear-gradient(135deg, #fff3c9, var(--gold-light));
  opacity: 0.85;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(216,182,111,0.34), inset 0 1px 0 rgba(255,255,255,0.55);
}

.btn-outline {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(14px);
  color: rgba(248,250,252,0.9);
}

.btn-outline:hover,
.download-btn:hover {
  transform: translateY(-2px);
  background: rgba(216,182,111,0.09);
  color: var(--gold-light);
  box-shadow: 0 18px 46px rgba(0,0,0,0.28);
}

#about,
#gallery,
.locations-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 34%),
    var(--black2);
}

.about-inner,
.menu-inner,
.locations-container,
.footer-inner {
  max-width: 1220px;
}

.about-img-main,
.menu-card,
.location-card,
.loc-res-right,
.video-wrapper,
.datepicker-dropdown,
.pwa-banner,
.footer-top > div:not(.footer-brand) {
  border-radius: var(--radius-lg);
}

.about-img-main,
.menu-card,
.location-card,
.loc-res-right,
.video-wrapper,
.datepicker-dropdown {
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.095);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.08);
}

.about-img-main {
  overflow: hidden;
}

.about-badge {
  width: 156px;
  height: 156px;
  right: -2rem;
  bottom: -2rem;
  box-shadow: 0 28px 90px rgba(216,182,111,0.32), inset 0 1px 8px rgba(255,255,255,0.35);
}

.about-text p,
.section-copy,
.reservation-copy,
.footer-tagline {
  color: var(--muted);
}

.about-stats {
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);
}

.about-stats > div {
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
}

.menu-grid {
  gap: 1rem;
}

.menu-card {
  padding: clamp(1.6rem, 3vw, 2.35rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.026));
}

.menu-card:hover,
.location-card:hover,
.loc-res-right:hover {
  border-color: rgba(216,182,111,0.26);
  transform: translateY(-5px);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: var(--shadow-premium), inset 0 1px 0 rgba(255,255,255,0.1);
}

.menu-card-name,
.location-name,
.footer-logo,
.reservation-title {
  letter-spacing: -0.015em;
}

.menu-tag,
.location-hours-badge {
  border-radius: 999px;
  background: rgba(216,182,111,0.1);
  border-color: rgba(216,182,111,0.22);
  color: var(--gold-light);
}

.gallery-grid {
  gap: 0.8rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.gallery-item-overlay {
  background: linear-gradient(180deg, rgba(216,182,111,0.03), rgba(6,7,8,0.48));
  backdrop-filter: blur(1.5px);
}

#lightbox {
  background: rgba(4,5,6,0.88);
  backdrop-filter: blur(26px);
}

#lightbox img,
.lb-close {
  border-radius: var(--radius-md);
}

.lb-close {
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(16px);
}

.video-wrapper {
  border-color: rgba(216,182,111,0.22);
}

.video-gradient-overlay {
  background:
    linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.34) 52%, rgba(0,0,0,0.04)),
    linear-gradient(135deg, rgba(216,182,111,0.16), transparent 26%, rgba(111,182,155,0.1));
}

.video-label,
.video-stars,
.vid-reviews {
  border-radius: var(--radius-md);
}

.video-label,
.video-stars {
  padding: 0.62rem 0.75rem;
  background: rgba(6,7,8,0.52);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
}

.vid-reviews {
  right: auto;
  width: min(720px, calc(100% - 4rem));
  padding: 1.2rem;
  background: rgba(6,7,8,0.48);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
}

.vid-dot {
  border-radius: 999px;
}

.location-card {
  overflow: hidden;
}

.location-info {
  background: transparent;
}

.loc-res-right {
  backdrop-filter: blur(22px);
}

.form-input,
.form-select,
.datepicker-display {
  min-height: 50px;
  border-radius: 14px;
  background: rgba(6,7,8,0.58);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.form-input:hover,
.form-select:hover,
.datepicker-display:hover {
  border-color: rgba(216,182,111,0.22);
}

.form-input:focus,
.form-select:focus,
.datepicker-display.open {
  border-color: rgba(216,182,111,0.58);
  box-shadow: 0 0 0 4px rgba(216,182,111,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}

.datepicker-dropdown {
  padding: 0.45rem;
  background: rgba(12,15,18,0.96);
  backdrop-filter: blur(22px);
}

.dp-day {
  border-radius: 10px;
}

footer {
  background:
    linear-gradient(180deg, transparent, rgba(216,182,111,0.035)),
    var(--black);
}

.footer-top {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  background: rgba(255,255,255,0.025);
}

.footer-top > div:not(.footer-brand),
.footer-brand {
  padding: 1.25rem;
}

.social-link,
#back-top,
.floating-cta,
.pwa-banner {
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.social-link {
  background: rgba(255,255,255,0.045);
}

#back-top,
.floating-cta {
  box-shadow: 0 18px 46px rgba(0,0,0,0.34);
}

.floating-cta {
  background: rgba(12,15,18,0.72);
  border-color: rgba(216,182,111,0.2);
}

.pwa-banner {
  left: 50%;
  right: auto;
  bottom: 1rem;
  width: min(760px, calc(100% - 2rem));
  transform: translate(-50%, calc(100% + 2rem));
  background: rgba(12,15,18,0.88);
  border: 1px solid rgba(255,255,255,0.1);
}

.pwa-banner.show {
  transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
