  /* ── Base & Utilities ── */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  ::selection {
    background: rgba(212, 175, 55, 0.3);
    color: #faf8f5;
  }

  /* ── Scrollbar ── */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #011a14;
  }
  ::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
  }

  /* ── Navigation ── */
  #nav {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }
  #nav.scrolled {
    background: rgba(1, 26, 20, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(212, 175, 55, 0.1);
  }

  /* ── Floating Cards ── */
  .floating-card {
    animation: float 6s ease-in-out infinite;
  }
  .floating-card:nth-child(1) { animation-delay: 0s; }
  .floating-card:nth-child(2) { animation-delay: -1.5s; }
  .floating-card:nth-child(3) { animation-delay: -3s; }
  .floating-card:nth-child(4) { animation-delay: -4.5s; }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }

  /* ── Reveal Animations ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Menu Tabs ── */
  .menu-tab {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(250, 248, 245, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .menu-tab:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: rgba(250, 248, 245, 0.8);
  }
  .menu-tab.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
    color: #d4af37;
  }

  /* ── Menu Card ── */
  .menu-card {
    background: rgba(6, 78, 59, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  }
  .menu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }
  .menu-card-img {
    height: 200px;
    overflow: hidden;
  }
  .menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .menu-card:hover .menu-card-img img {
    transform: scale(1.08);
  }
  .menu-card-body {
    padding: 1.25rem;
  }
  .menu-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #faf8f5;
    margin-bottom: 0.4rem;
  }
  .menu-card-body p {
    font-size: 0.85rem;
    color: rgba(232, 224, 208, 0.5);
    line-height: 1.6;
  }

  /* ── Mobile Menu ── */
  .mobile-link {
    transition: color 0.3s ease;
  }
  .mobile-link:hover {
    color: #d4af37;
  }

  /* ── Map placeholder ── */
  .map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
  }
  .map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    filter: saturate(0.3) brightness(0.7) contrast(1.2);
    transition: filter 0.4s ease;
  }
  .map-container:hover iframe {
    filter: saturate(0.5) brightness(0.8) contrast(1.1);
  }

  /* ── Responsive ── */
  @media (max-width: 767px) {
    .floating-card {
      display: none;
    }
    #top .grid {
      text-align: center;
    }
    #top h1 {
      font-size: 2.75rem;
    }
    #top p {
      margin-left: auto;
      margin-right: auto;
    }
  }
