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

  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    overflow-x: hidden;
  }

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

  a {
    text-decoration: none;
    color: inherit;
  }

  button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
  }

  /* ===== Custom Scrollbar ===== */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #f1f5f9;
  }

  ::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #64748b;
  }

  /* ===== Selection ===== */
  ::selection {
    background: #0d9488;
    color: white;
  }

  /* ===== Navigation ===== */
  #navbar {
    background: transparent;
  }

  #navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-blur-lg;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }

  #navbar.scrolled .nav-logo-text {
    color: #0f172a;
  }

  #navbar.scrolled .nav-logo-sub {
    color: #64748b;
  }

  /* ===== Mobile Menu ===== */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .menu-line:nth-child(3) {
    width: 1.5rem;
  }

  #menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(0.25rem, 0.25rem);
  }

  #menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle.active .menu-line:nth-child(3) {
    width: 1.5rem;
    transform: rotate(-45deg) translate(0.25rem, -0.25rem);
  }

  /* ===== Hero ===== */
  #hero {
    position: relative;
  }

  /* ===== Menu Section ===== */
  .menu-category {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .menu-category.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== Gallery ===== */
  .gallery-item {
    overflow: hidden;
    border-radius: 1rem;
  }

  .gallery-item img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

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

  /* ===== Section Reveals ===== */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ===== Floating Cards Animation ===== */
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  .float-slow {
    animation: float 6s ease-in-out infinite;
  }

  .float-medium {
    animation: float 4.5s ease-in-out infinite;
  }

  .float-fast {
    animation: float 3.5s ease-in-out infinite;
  }

  /* ===== Pulse dot ===== */
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
  }

  .animate-pulse-dot {
    animation: pulse-dot 2s ease-in-out infinite;
  }

  /* ===== Form Inputs ===== */
  input:focus, textarea:focus {
    outline: none;
  }

  /* ===== Responsive ===== */
  @media (max-width: 767px) {
    .font-serif {
      line-height: 1.15;
    }
  }
