/* ======================== FOOTER ======================== */
    .footer {
      background: var(--text);
      color: white;
      padding: 4rem 2rem 2rem;
      position: relative;
    }
    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--coral), var(--sunshine), var(--turquoise), var(--lime), var(--hot-pink), var(--coral));
    }
    .footer-grid {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer-brand img {
      height: 48px;
      margin-bottom: 1rem;
      filter: brightness(1.2);
    }
    .footer-brand p {
      font-size: 1rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.5);
      max-width: 280px;
    }
    .footer-socials {
      display: flex;
      gap: 0.6rem;
      margin-top: 1.2rem;
    }
    .footer-socials a {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.08);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .footer-socials a:hover {
      background: var(--coral);
      transform: translateY(-3px);
    }
    .footer-socials svg {
      width: 16px; height: 16px;
      fill: white;
    }
    .footer-socials img {
      width: 16px;
      height: 24px;
      display: block;
      margin-bottom: 0;
    }
    .footer h4 {
      font-family: 'Ribeye', cursive;
      font-size: 1rem;
      margin-bottom: 1.2rem;
      font-weight: 600;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .footer-links a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
      cursor: pointer;
    }
    .footer-links a:hover { color: var(--sunshine); }
    .footer-contact-list {
      list-style: none;
    }
    .footer-contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      margin-bottom: 0.8rem;
      color: rgba(255,255,255,0.5);
      font-size: 1rem;
      line-height: 1.5;
    }
    .footer-contact-list svg {
      width: 16px; height: 16px;
      stroke: var(--sunshine);
      fill: none;
      stroke-width: 2;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .footer-bottom {
      max-width: 1300px;
      margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      text-align: center;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.3);
    }

    /* ======================== ANIMATIONS ======================== */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(25px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* ======================== RESPONSIVE ======================== */
    @media (max-width: 1024px) {
      .bento-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 {
        grid-column: auto;
      }
      .services-row { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {     
      .footer-grid { grid-template-columns: 1fr; }
      .food-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    }
    
    @media (max-width: 480px) {
     
    }